library(dplyr)
## Warning: package 'dplyr' was built under R version 4.1.3
train <- read.csv("Train.csv")
test <- read.csv("Test.csv")
library(skimr)
## Warning: package 'skimr' was built under R version 4.1.3
skimr::skim(train)
Data summary
Name train
Number of rows 18506
Number of columns 21
_______________________
Column type frequency:
character 17
numeric 4
________________________
Group variables None

Variable type: character

skim_variable n_missing complete_rate min max empty n_unique whitespace
Tour_ID 0 1 15 15 0 18506 0
country 0 1 3 24 0 131 0
age_group 0 1 3 5 0 5 0
travel_with 0 1 0 28 1075 6 0
purpose 0 1 5 30 0 8 0
main_activity 0 1 8 24 0 10 0
info_source 0 1 6 31 0 8 0
tour_arrangement 0 1 11 12 0 2 0
package_transport_int 0 1 2 3 0 2 0
package_accomodation 0 1 2 3 0 2 0
package_food 0 1 2 3 0 2 0
package_transport_tz 0 1 2 3 0 2 0
package_sightseeing 0 1 2 3 0 2 0
package_guided_tour 0 1 2 3 0 2 0
package_insurance 0 1 2 3 0 2 0
first_trip_tz 0 1 2 3 0 2 0
cost_category 0 1 8 12 0 6 0

Variable type: numeric

skim_variable n_missing complete_rate mean sd p0 p25 p50 p75 p100 hist
total_female 2 1 0.94 1.22 0 0 1 1 49 ▇▁▁▁▁
total_male 6 1 1.00 1.17 0 1 1 1 58 ▇▁▁▁▁
night_mainland 0 1 9.14 14.13 0 3 6 11 365 ▇▁▁▁▁
night_zanzibar 0 1 2.49 5.28 0 0 0 4 240 ▇▁▁▁▁
train[train==""]<- NA
test[test==""]<- NA
library(visdat)
## Warning: package 'visdat' was built under R version 4.1.3
visdat::vis_dat(train)
## Warning: `gather_()` was deprecated in tidyr 1.2.0.
## Please use `gather()` instead.
## This warning is displayed once every 8 hours.
## Call `lifecycle::last_lifecycle_warnings()` to see where this warning was generated.

Train <- train%>%
  mutate(total = train$total_female+train$total_male)
Test <- test%>%
  mutate(total = test$total_female+test$total_male)
#x <- Train$travel_with
#for (i in x) {
#  if (is.na(x[i]) & Train$total == 1){
#    return("Alone")
#  }
#}
Test <- na.omit(Test)
Train<- na.omit(Train)
Train[!(Train$total ==0),]
##              Tour_ID                  country age_group
## 1    tour_id1hffseyw                    ITALY     45-64
## 2    tour_idnacd7zag           UNITED KINGDOM     25-44
## 3    tour_id62vz7e71 UNITED STATES OF AMERICA       65+
## 4    tour_idrc76tzix                   RWANDA     25-44
## 5    tour_idn723m0n9 UNITED STATES OF AMERICA     45-64
## 6    tour_id8aylf7ba                   FRANCE     25-44
## 7    tour_idvcadicba               SWIZERLAND     25-44
## 8    tour_idfmavssxv                  NIGERIA     25-44
## 9    tour_id8oqlvjwr           UNITED KINGDOM     18-24
## 10   tour_idy0blevrs                AUSTRALIA     45-64
## 11   tour_idjoxaae9n           UNITED KINGDOM     18-24
## 12   tour_id6cyqodr0                   FRANCE     45-64
## 13   tour_idrca24ss1                    SPAIN     45-64
## 14   tour_idt6ovjq4s                   FRANCE     25-44
## 15   tour_id6hi6ek6b                  DENMARK     45-64
## 16   tour_id44b51m56                  BELGIUM     45-64
## 17   tour_idsiu7jryp                   ZAMBIA     25-44
## 18   tour_idwvpz02dh              NETHERLANDS     25-44
## 19   tour_idl43q6fm0                   CANADA     45-64
## 20   tour_idzq2bnpfg           UNITED KINGDOM     25-44
## 21   tour_idt5xz7ayd                    INDIA     25-44
## 22   tour_id5l7inuif                   NORWAY     25-44
## 23   tour_id32l9u6oz UNITED STATES OF AMERICA       65+
## 24   tour_idtpwhctag           UNITED KINGDOM     45-64
## 26   tour_idcsmdtoyl                  MORROCO     25-44
## 27   tour_iddva3tl0q                    CHINA     25-44
## 28   tour_idcfo1cj0l                 ZIMBABWE     45-64
## 29   tour_idtybbzu4b                    ITALY     18-24
## 30   tour_id4qn2lwio                   CANADA     45-64
## 31   tour_idfghnzmw4 UNITED STATES OF AMERICA     25-44
## 32   tour_idcsw6hf8z                  GERMANY     18-24
## 33   tour_ido8rps8aj                  GERMANY     45-64
## 34   tour_idw1x9lhy7           UNITED KINGDOM     45-64
## 35   tour_id733qlpkf                    CHINA     25-44
## 36   tour_id5ymgmwpp             SOUTH AFRICA     45-64
## 37   tour_idfne9w9qc UNITED STATES OF AMERICA     25-44
## 38   tour_idbct8vzzi             SOUTH AFRICA     18-24
## 39   tour_id9ent34f9                   ZAMBIA     45-64
## 40   tour_idfv3yg9u5           UNITED KINGDOM     25-44
## 41   tour_ida2wycv92                   ZAMBIA     25-44
## 42   tour_id7jkn9lg7                AUSTRALIA     45-64
## 43   tour_idzpd48w1q           UNITED KINGDOM     18-24
## 44   tour_idqb0v4p5l UNITED STATES OF AMERICA     25-44
## 45   tour_id21wftbzm                  GERMANY     25-44
## 46   tour_idvu5x5xue                    JAPAN     18-24
## 47   tour_id9ddgpd84                 ZIMBABWE     25-44
## 48   tour_idv99r4uze                      UAE     25-44
## 49   tour_idghkgao6v                   RUSSIA     25-44
## 50   tour_idqu6wcsnb UNITED STATES OF AMERICA     45-64
## 51   tour_ide02olqyl UNITED STATES OF AMERICA       65+
## 52   tour_idlxsda4sc           UNITED KINGDOM     18-24
## 53   tour_id7fydz45s           UNITED KINGDOM     25-44
## 54   tour_id14f1pvfs               SWIZERLAND     45-64
## 55   tour_idy25vb5pz                  GERMANY     25-44
## 56   tour_idt2agxtdk           UNITED KINGDOM     25-44
## 57   tour_idgzzgzdi0 UNITED STATES OF AMERICA       65+
## 58   tour_idnlx1sc9e                    KENYA     18-24
## 59   tour_idjx6xtq4i UNITED STATES OF AMERICA     45-64
## 60   tour_idxbxk8ogr                 ZIMBABWE     45-64
## 61   tour_iduygeog7r                   GREECE     45-64
## 62   tour_idyhqiraum           UNITED KINGDOM     45-64
## 63   tour_idmba8iatr                   POLAND     45-64
## 64   tour_idlbrc1np9                    ITALY     25-44
## 65   tour_idmfm40912                   ZAMBIA     45-64
## 66   tour_idyhgfisit                  AUSTRIA     45-64
## 67   tour_idwakp7jt2             SOUTH AFRICA     25-44
## 68   tour_idnt8qkx6g                 MALAYSIA     25-44
## 69   tour_idil22wm4f                AUSTRALIA     45-64
## 70   tour_id9kh7f3o1                   FRANCE     25-44
## 71   tour_idsl4d9fcj                  BELGIUM     45-64
## 72   tour_id8ih2x3ss                 MALAYSIA     45-64
## 73   tour_id2mii9wqu           CZECH REPUBLIC     25-44
## 74   tour_iduodqgcpk                    ITALY     25-44
## 75   tour_idsq92sbk6 UNITED STATES OF AMERICA     45-64
## 76   tour_idzk0ezoi0                  GERMANY     25-44
## 77   tour_id2gju2kmq UNITED STATES OF AMERICA       65+
## 78   tour_id75463vej                AUSTRALIA     45-64
## 79   tour_id0b9a1bor           UNITED KINGDOM       65+
## 80   tour_idb2ssocsi           UNITED KINGDOM     18-24
## 81   tour_idh2nhvv20           UNITED KINGDOM     45-64
## 83   tour_idcz8ysh24           UNITED KINGDOM     25-44
## 84   tour_idkdu68wds                  NIGERIA     25-44
## 85   tour_id8mmdp4k5                   NORWAY     25-44
## 86   tour_idcd2qfj1q                    ITALY       65+
## 87   tour_idltr9jnca             SOUTH AFRICA     25-44
## 88   tour_idm10x2aws                  GERMANY     45-64
## 89   tour_idvhefx3w4                   CANADA     25-44
## 90   tour_idcmpjswq2                   ZAMBIA     25-44
## 91   tour_idujrou662                    KENYA     45-64
## 92   tour_idiqllafs3               SWIZERLAND     45-64
## 93   tour_id7cqf2ffp                    KOREA     25-44
## 94   tour_idfh8iwww9 UNITED STATES OF AMERICA     25-44
## 96   tour_idwqw7drjb                    INDIA     45-64
## 97   tour_idpx5fn406                      DRC     25-44
## 98   tour_idh8b4utn6 UNITED STATES OF AMERICA       65+
## 99   tour_ida49lgjru                  DENMARK     18-24
## 100  tour_idj29wl8n9             SOUTH AFRICA     45-64
## 101  tour_idnt3vttz2                    KENYA     25-44
## 102  tour_idck0u81vr                   CYPRUS     25-44
## 103  tour_id9y3mnv5m                    KENYA     45-64
## 104  tour_idt2ci79zh           UNITED KINGDOM     45-64
## 105  tour_idbw7q3yml                    ITALY     25-44
## 106  tour_id9iq9t5ag UNITED STATES OF AMERICA     25-44
## 107  tour_idmxpiks34                  AUSTRIA     45-64
## 108  tour_idbxjct58u                    ITALY     25-44
## 109  tour_idvhf0fd92 UNITED STATES OF AMERICA     45-64
## 110  tour_id6ilgl9pa                AUSTRALIA     25-44
## 111  tour_idxkb0izpd                   FRANCE     45-64
## 112  tour_id8cowbcge                    SPAIN     25-44
## 113  tour_idtm7nsjbx                 ZIMBABWE     25-44
## 114  tour_idq2foi7rp UNITED STATES OF AMERICA       65+
## 115  tour_idr0ws3l85 UNITED STATES OF AMERICA     25-44
## 117  tour_idt2nww7qv UNITED STATES OF AMERICA     18-24
## 118  tour_id8zq6qwtu                  GERMANY     45-64
## 119  tour_id9q500s86                    ITALY     45-64
## 120  tour_id51oh8jjx             SOUTH AFRICA     45-64
## 121  tour_idduynd3rf                   FRANCE     25-44
## 123  tour_ido0jhiaz1 UNITED STATES OF AMERICA     25-44
## 124  tour_idw5f5ooyx                 ZIMBABWE     25-44
## 125  tour_id9ovb7ip3                   KUWAIT     45-64
## 126  tour_idax3hcult                   ZAMBIA     25-44
## 127  tour_id68hojsj1                   RWANDA     18-24
## 128  tour_idarki97ci                   ZAMBIA     25-44
## 129  tour_idgqvb6ek8 UNITED STATES OF AMERICA       65+
## 130  tour_id95fjz9vr                  BELGIUM     45-64
## 131  tour_idwn6mun5y                   ZAMBIA     25-44
## 132  tour_idd7gew8gn                  GERMANY       65+
## 133  tour_idnafjlgci                   BRAZIL     25-44
## 134  tour_iduqdtptt5           UNITED KINGDOM     18-24
## 135  tour_idwpdlg2at                  GERMANY     45-64
## 136  tour_idz0p1dyvq                    CHILE     18-24
## 138  tour_idhbgg6wih                    ITALY     45-64
## 139  tour_id50h1ynw1                   GREECE     45-64
## 140  tour_idh2e49nu6             SOUTH AFRICA     25-44
## 141  tour_idptvqmn1y             SOUTH AFRICA     25-44
## 142  tour_idjlv4xdde                 BULGARIA     25-44
## 143  tour_idg2i6vdwd                    ITALY     25-44
## 144  tour_idq0yrmrra           UNITED KINGDOM     25-44
## 145  tour_idlyjh8x56           UNITED KINGDOM     18-24
## 146  tour_idzjv1k19m     UNITED ARAB EMIRATES     25-44
## 147  tour_idtfk47z65                   FRANCE     25-44
## 148  tour_idwd0prg66 UNITED STATES OF AMERICA     25-44
## 149  tour_idczq8ko1q                   ISRAEL     45-64
## 150  tour_idujo9ckt5                  GERMANY     45-64
## 151  tour_id1qunjshu                    KENYA     25-44
## 152  tour_id4qqdr9lb           UNITED KINGDOM     25-44
## 153  tour_idr6g82rat UNITED STATES OF AMERICA     45-64
## 154  tour_idraeai4bo             SOUTH AFRICA     45-64
## 155  tour_idhfjcqhrd           UNITED KINGDOM     25-44
## 156  tour_idwevfwpdh                    ITALY     25-44
## 157  tour_id4m6xe2xc                   CANADA       65+
## 158  tour_id9brbwjva UNITED STATES OF AMERICA     45-64
## 159  tour_idjaj4y8c8 UNITED STATES OF AMERICA     45-64
## 160  tour_idmdl2jugo                   FRANCE     45-64
## 161  tour_id003q62x6 UNITED STATES OF AMERICA     25-44
## 162  tour_idgdev59eu                   CANADA     45-64
## 163  tour_idzugpp0xk UNITED STATES OF AMERICA     45-64
## 164  tour_idvhqeh5ph             SOUTH AFRICA     18-24
## 165  tour_idivp66utb              NEW ZEALAND     45-64
## 166  tour_idrtanxdgi           UNITED KINGDOM     18-24
## 167  tour_id1x682bbk                   POLAND     25-44
## 168  tour_idf8nezjqn             SOUTH AFRICA     25-44
## 169  tour_idm6maj1ya                  GERMANY     45-64
## 170  tour_id3c4bhm24                 ZIMBABWE     18-24
## 171  tour_idtpp5f0ey             SOUTH AFRICA     18-24
## 173  tour_idn42ncs23 UNITED STATES OF AMERICA       65+
## 174  tour_ida3tg2201                   UGANDA     25-44
## 175  tour_id8xtyk46b           UNITED KINGDOM     45-64
## 176  tour_idmwtm649g                AUSTRALIA     45-64
## 177  tour_id5u7ju1jn                   ZAMBIA     25-44
## 178  tour_idnd5qkoh5                   FRANCE     25-44
## 179  tour_idsk3mofjn                    ITALY     25-44
## 180  tour_idbksxlcws                   RWANDA     25-44
## 181  tour_id61pwtd4p                    ITALY     25-44
## 182  tour_id2jnql3ut UNITED STATES OF AMERICA       <18
## 183  tour_iddi2zk567           UNITED KINGDOM     18-24
## 184  tour_idir9wnzkr UNITED STATES OF AMERICA     45-64
## 185  tour_idhe4kdglq                 MALAYSIA     45-64
## 186  tour_ida49vdzqo                 ZIMBABWE     25-44
## 187  tour_idjdovnclr                    CHINA     25-44
## 188  tour_id4xfbeau8                    ITALY       65+
## 189  tour_idv5qhxpsg UNITED STATES OF AMERICA     25-44
## 190  tour_idh316pm1l                   FRANCE     25-44
## 191  tour_idjph56ak6 UNITED STATES OF AMERICA     45-64
## 192  tour_ide5n77jew                    ITALY     45-64
## 193  tour_id1fhmeskq                  GERMANY     25-44
## 194  tour_idrr9xsioa                   FRANCE     25-44
## 195  tour_idppjdcf8b                    ITALY     45-64
## 196  tour_idi15rso1s                      UAE     25-44
## 197  tour_idkg0e3t4l UNITED STATES OF AMERICA     25-44
## 198  tour_id6j6kjccn                   ZAMBIA     25-44
## 199  tour_idutkl9hm3              NETHERLANDS     45-64
## 200  tour_idtjthfuy3                    ITALY     25-44
## 201  tour_id9s3hkus9                   POLAND     25-44
## 202  tour_id0c0tjygz UNITED STATES OF AMERICA       65+
## 203  tour_idaipnu2vw                  BELGIUM       65+
## 204  tour_id33tnh3fj                  AUSTRIA     25-44
## 205  tour_idx585ay6s UNITED STATES OF AMERICA     25-44
## 206  tour_id5kl18pwi                  IRELAND     45-64
## 207  tour_idrrhxlw8b             SOUTH AFRICA     45-64
## 208  tour_idvwkunvxj UNITED STATES OF AMERICA       65+
## 209  tour_id3jm3qn0n                  GERMANY     18-24
## 210  tour_idz82rmjpt           UNITED KINGDOM     18-24
## 211  tour_idem4fi9le UNITED STATES OF AMERICA     25-44
## 212  tour_idf4xtnfc4                  GERMANY     45-64
## 213  tour_id5ww0i9e5           UNITED KINGDOM     45-64
## 214  tour_idctlbvj0g                    KENYA     18-24
## 215  tour_idiaj424wk           UNITED KINGDOM     18-24
## 216  tour_id77o40ntx                   ISRAEL       65+
## 217  tour_idok8n72m0 UNITED STATES OF AMERICA       65+
## 218  tour_idr68m61w6               SWIZERLAND     25-44
## 219  tour_id5l459h3o                    ITALY     25-44
## 220  tour_idl9j803l3             SOUTH AFRICA     45-64
## 221  tour_idq4c4kfzb                   FRANCE     45-64
## 222  tour_id14mfv18s           UNITED KINGDOM     45-64
## 223  tour_idmhfljrvp                    SPAIN     25-44
## 224  tour_idfexka2rn                   SWEDEN     25-44
## 225  tour_idixyhq74a UNITED STATES OF AMERICA     45-64
## 226  tour_iduvueczbe                   UGANDA     45-64
## 228  tour_idhx3jy3f3                   ZAMBIA     25-44
## 229  tour_id8pph0cct                    QATAR     45-64
## 230  tour_idjhgyn03t                    CHINA     18-24
## 231  tour_idwqfnl2r0                  BELGIUM     45-64
## 232  tour_id08d6uqev                 ZIMBABWE     25-44
## 233  tour_id15xi9tzi UNITED STATES OF AMERICA     25-44
## 234  tour_id5z6bmxa7                    ITALY     45-64
## 235  tour_idjh2rsdzk                  GERMANY     18-24
## 237  tour_idsxztqiko UNITED STATES OF AMERICA     45-64
## 238  tour_id8fl3iaug                AUSTRALIA     45-64
## 239  tour_id583u3d5i           UNITED KINGDOM     25-44
## 241  tour_idhhsc9a7k                   ZAMBIA     25-44
## 242  tour_idtooll0hp                    ITALY     45-64
## 243  tour_idogzvt16d                    KOREA     45-64
## 244  tour_id41pl8tl1                 ZIMBABWE     25-44
## 245  tour_idy8khhwfl               SWIZERLAND       65+
## 246  tour_id46w6lp9n UNITED STATES OF AMERICA     45-64
## 247  tour_idqv5b3kr8                    SPAIN     25-44
## 248  tour_idyx04njng               SWIZERLAND     45-64
## 249  tour_idhr6hfevs                    ITALY     25-44
## 250  tour_idu5szuc5c                    ITALY     25-44
## 251  tour_idkouift4o             SOUTH AFRICA     45-64
## 252  tour_id0zvtf4s5                  BELGIUM     25-44
## 253  tour_id59c0pcs4                    SPAIN     45-64
## 254  tour_idt8gqq2eu UNITED STATES OF AMERICA       65+
## 255  tour_idapkri83h                   FRANCE     45-64
## 256  tour_idvpbc2u1q                  DENMARK     18-24
## 257  tour_idi2blq3lt                 ZIMBABWE     45-64
## 258  tour_iddylo86u5                  BELGIUM       65+
## 259  tour_id8ua582fo                   ISRAEL     18-24
## 260  tour_idn7bfo6u3 UNITED STATES OF AMERICA     25-44
## 261  tour_idsb35fuse                   CANADA     25-44
## 262  tour_iddyaqgbxf UNITED STATES OF AMERICA     45-64
## 264  tour_idz85c0kn8                AUSTRALIA     25-44
## 265  tour_idi0dolllz UNITED STATES OF AMERICA     45-64
## 266  tour_idvaxfqk3l                  GERMANY     45-64
## 267  tour_idqu7zxkfx           UNITED KINGDOM     25-44
## 268  tour_ido46cswof             SOUTH AFRICA     45-64
## 269  tour_ideq7dd6h8                  BELGIUM     25-44
## 270  tour_ideawdswsx UNITED STATES OF AMERICA     25-44
## 271  tour_idj5ohckob                    INDIA     25-44
## 272  tour_idjc3eruvf                  GERMANY     18-24
## 273  tour_idhpqtxp3i                   FRANCE     25-44
## 274  tour_id0hcrgpp2                   FRANCE     18-24
## 275  tour_idz4lve6q9                  IRELAND     45-64
## 276  tour_id25qmzubn UNITED STATES OF AMERICA       65+
## 277  tour_idtq9wjb5n               SWIZERLAND     25-44
## 278  tour_idge45z6zf                    CONGO     25-44
## 279  tour_idi4gv733s                  IRELAND     25-44
## 280  tour_idzcruergr                   RWANDA     25-44
## 282  tour_idt5zsrztu                    ITALY     25-44
## 283  tour_id5rze1k6z             SOUTH AFRICA     25-44
## 284  tour_idtpk4oz83                    ITALY     25-44
## 285  tour_idv8nomuzl           UNITED KINGDOM     45-64
## 286  tour_idn61dt9i8           UNITED KINGDOM     25-44
## 287  tour_idpl0u1i77 UNITED STATES OF AMERICA     45-64
## 288  tour_idll2n2ygi           UNITED KINGDOM     18-24
## 289  tour_idjh5vbmot                  BURUNDI     18-24
## 290  tour_idrcvmvbyb                   UGANDA     25-44
## 291  tour_idx02w1oqa                    JAPAN     45-64
## 292  tour_idxq5qb8pk                AUSTRALIA     18-24
## 293  tour_idjo64mby9             SOUTH AFRICA     25-44
## 294  tour_id0f6cwm7d                    KENYA     45-64
## 295  tour_id8dl3qglz               SWIZERLAND     25-44
## 296  tour_idv53j518o UNITED STATES OF AMERICA     25-44
## 297  tour_id989zg854                    CHINA     25-44
## 298  tour_idymdnwrph                    INDIA     45-64
## 299  tour_idxvio2hna                   FRANCE     45-64
## 300  tour_idqqy4do9s                  BURUNDI     25-44
## 302  tour_idvy8r9n4l                    INDIA     25-44
## 303  tour_id8va05q9p                    ITALY     25-44
## 305  tour_idok3pnld1                 ZIMBABWE     25-44
## 306  tour_idebcltxxg                 ZIMBABWE     45-64
## 307  tour_idgm2o2vf5                    KENYA     45-64
## 308  tour_idjggbgjtw                    KENYA     25-44
## 309  tour_id3em8e7k1              NETHERLANDS     18-24
## 310  tour_idubr72h3p                AUSTRALIA     25-44
## 311  tour_idfwreeqq4                  GERMANY     25-44
## 312  tour_idhhdjs1ix                    KENYA     25-44
## 313  tour_id5p6vnzyf             SOUTH AFRICA     25-44
## 314  tour_idzgofqgrv UNITED STATES OF AMERICA     45-64
## 315  tour_id2tgpbl1h UNITED STATES OF AMERICA     25-44
## 316  tour_idtbjz9hp2           UNITED KINGDOM     18-24
## 320  tour_idgms629co                   RWANDA     25-44
## 321  tour_idh0xxtmrh                   SWEDEN     25-44
## 322  tour_idd105ryrf                    INDIA     25-44
## 323  tour_idrldlhyjl                  FINLAND     25-44
## 324  tour_id7j4stpsy                    KENYA     45-64
## 325  tour_id2y7igw6s           UNITED KINGDOM     25-44
## 326  tour_idl4isl1b7              NETHERLANDS     25-44
## 327  tour_idgufrmmzf                    INDIA     25-44
## 328  tour_idsjekwu9f                   FRANCE     25-44
## 329  tour_id9dxb1eh4 UNITED STATES OF AMERICA     25-44
## 330  tour_idsjr4nur2                   ZAMBIA     25-44
## 331  tour_ida94d8bqt                   CANADA     45-64
## 332  tour_idokyswvk8 UNITED STATES OF AMERICA     25-44
## 333  tour_idfld3c9u4                    ITALY     25-44
## 334  tour_idskn7hbgy           UNITED KINGDOM     18-24
## 335  tour_idzphdc76f              NETHERLANDS     18-24
## 336  tour_idowy70g3h             SOUTH AFRICA     25-44
## 337  tour_idg04vkvto                    KENYA     45-64
## 338  tour_iduza91tdd UNITED STATES OF AMERICA       65+
## 339  tour_ido54h8nxq                   CANADA     45-64
## 340  tour_id9o3pqoj2                   FRANCE     25-44
## 341  tour_idxf1bbrrs UNITED STATES OF AMERICA     45-64
## 342  tour_idmo68pist                  DENMARK     18-24
## 343  tour_idmf4lenrl                   BRAZIL     25-44
## 344  tour_id2czqc7xw           UNITED KINGDOM     45-64
## 345  tour_idnkhp7v6b             SOUTH AFRICA     25-44
## 346  tour_idjonh38xf                    ITALY     25-44
## 347  tour_id6w5emka5                   CANADA     25-44
## 348  tour_id9q8w2ulo                   UGANDA     45-64
## 349  tour_idce721rgf                   RUSSIA     45-64
## 350  tour_idoinm104r                    ITALY     25-44
## 351  tour_idid58loe2                   CANADA     45-64
## 352  tour_idmq9ztuf3 UNITED STATES OF AMERICA     45-64
## 354  tour_idowlkp2ze                   ZAMBIA     25-44
## 355  tour_idyfaehly0           UNITED KINGDOM     25-44
## 356  tour_idydyr160k                    ITALY     25-44
## 357  tour_idsuk2divu                    ITALY     25-44
## 358  tour_idhvr2uyhx UNITED STATES OF AMERICA     25-44
## 359  tour_id98vh1lgs                   FRANCE     25-44
## 360  tour_id0epl9yx5           UNITED KINGDOM     45-64
## 361  tour_idhnfisnwa                    ITALY       65+
## 362  tour_idl78tko6u                   FRANCE     45-64
## 363  tour_id094rvr31                   CANADA     25-44
## 364  tour_idzw7jmm7i              NETHERLANDS     25-44
## 365  tour_idm9oxb6np                   ZAMBIA     45-64
## 366  tour_ideh9t9cq5                  BURUNDI     18-24
## 367  tour_ido2p6x52h                    INDIA     25-44
## 368  tour_id1uhfiepj                   CANADA     25-44
## 369  tour_idkxk84m2w                  GERMANY       65+
## 370  tour_id6a04op8e           UNITED KINGDOM     45-64
## 371  tour_idyh0yvcz4                    ITALY     25-44
## 372  tour_id3oixsfhh                    KENYA     45-64
## 373  tour_idye1vusdy                  GERMANY     45-64
## 374  tour_id2rx21qf1           UNITED KINGDOM     25-44
## 375  tour_idd2b1cjig                   POLAND     45-64
## 376  tour_id3ixn3dbm                AUSTRALIA     25-44
## 377  tour_idui3pno0w                   UGANDA     25-44
## 378  tour_idh5hjb59s                  AUSTRIA     25-44
## 379  tour_id6j8d76ze           UNITED KINGDOM     45-64
## 380  tour_idm6azt5aw                  GERMANY       65+
## 381  tour_id5ix2n2s0                    ITALY     18-24
## 382  tour_idw8wmuh5c                   UGANDA     25-44
## 383  tour_idyeq02ef1                    KENYA     25-44
## 384  tour_id0qlvqfxw                  BURUNDI     18-24
## 385  tour_id7lss72c3           UNITED KINGDOM     45-64
## 386  tour_id69f27afu UNITED STATES OF AMERICA     45-64
## 387  tour_idksjdn2xl                 ZIMBABWE     25-44
## 388  tour_idlw34yvn8                    ITALY     45-64
## 389  tour_idyhtnchf9                  NIGERIA     25-44
## 390  tour_idoq1g2nkn                   UGANDA     25-44
## 391  tour_idafosyusj                    KENYA     45-64
## 392  tour_ids2ma3kki                   RUSSIA     18-24
## 393  tour_idohz0675e                AUSTRALIA     25-44
## 394  tour_idyheadlgo           UNITED KINGDOM     25-44
## 396  tour_idgbtmgf3g                   CANADA       65+
## 397  tour_id56gqptgc                    INDIA     25-44
## 398  tour_idg2qgw21n                   SWEDEN     18-24
## 399  tour_idxqz3cnys              NETHERLANDS     25-44
## 400  tour_idokp5ukt2                    GHANA     45-64
## 401  tour_id2stovb8j                     OMAN     45-64
## 402  tour_idesllxv3n                  DENMARK     45-64
## 403  tour_idj9mhzh3j UNITED STATES OF AMERICA       65+
## 404  tour_id3y2kfv9c                   RUSSIA     45-64
## 405  tour_idrsfknm64 UNITED STATES OF AMERICA     45-64
## 406  tour_idhbzidxnk           UNITED KINGDOM     25-44
## 407  tour_idmlp4z5qq           UNITED KINGDOM     25-44
## 408  tour_idvyrjo69x                    KENYA     25-44
## 409  tour_idvc3pdsxf                 MALAYSIA     45-64
## 410  tour_idge9koeui                    KOREA     25-44
## 411  tour_idj3clg34q                  DENMARK     18-24
## 412  tour_idbuz1xt57                      UAE     45-64
## 413  tour_id1t22gxyx                    ITALY     45-64
## 414  tour_idcyhuoodr                    KENYA     25-44
## 415  tour_id8fyqaolp                    CONGO     25-44
## 416  tour_idtuesr0uu             SOUTH AFRICA     45-64
## 417  tour_id6k7klpmc             SOUTH AFRICA     25-44
## 418  tour_idw6jxxx8t           UNITED KINGDOM     25-44
## 419  tour_idplf7byqk                    KENYA     45-64
## 420  tour_idvkpkvtul                   NORWAY     18-24
## 422  tour_iduic1lfwt                    ITALY     25-44
## 423  tour_idwxeegsb4           UNITED KINGDOM     25-44
## 424  tour_idhwevsx5p               SWIZERLAND     18-24
## 426  tour_id2eiqiv04                    KENYA     25-44
## 427  tour_idksf3nxpb                      DRC     18-24
## 428  tour_idg6m3vu85                  DENMARK     18-24
## 429  tour_id6ydbnfo0               SWIZERLAND     45-64
## 430  tour_id7tscf18h           UNITED KINGDOM     45-64
## 431  tour_id5ba6pilq                    ITALY     25-44
## 432  tour_idsoqi2a68                  DENMARK     18-24
## 433  tour_idwnux0n81                    INDIA     18-24
## 435  tour_idrwg6pc4h                AUSTRALIA     18-24
## 436  tour_idx2ioq1vl           CZECH REPUBLIC     18-24
## 437  tour_idbnn1azav UNITED STATES OF AMERICA     18-24
## 439  tour_idvtxes5jp           UNITED KINGDOM     45-64
## 440  tour_id2vhkx2sw                  GERMANY     25-44
## 441  tour_idra9qamy9                      UAE     25-44
## 442  tour_idoy2gxle4                    KENYA     45-64
## 443  tour_id7k3f8fh9             SOUTH AFRICA     45-64
## 444  tour_idcgaq9dkl                  LEBANON     45-64
## 445  tour_idawh6rj2f              NEW ZEALAND     25-44
## 446  tour_idzai6ggov                   FRANCE     45-64
## 447  tour_ide550p0b8 UNITED STATES OF AMERICA     18-24
## 448  tour_idxlvpcfsr                  BURUNDI     25-44
## 449  tour_idclw362ck UNITED STATES OF AMERICA       65+
## 450  tour_idh93y3ok1                   FRANCE     25-44
## 451  tour_idyws4i8gs                    ITALY     25-44
## 452  tour_id63ehs30d           UNITED KINGDOM     25-44
## 453  tour_id4yaetkft                    ITALY     25-44
## 454  tour_idiocejqpg                 ZIMBABWE     25-44
## 456  tour_idh8p4mcvr                 ZIMBABWE     25-44
## 457  tour_idi6s87h18                  AUSTRIA     25-44
## 458  tour_idecxd05hf                   CANADA     25-44
## 459  tour_idtigx2yg3               SWIZERLAND     25-44
## 460  tour_id5ryqcj5m UNITED STATES OF AMERICA     18-24
## 461  tour_idxffi3iyv                    INDIA     45-64
## 462  tour_idwjo0360k                    ITALY     45-64
## 463  tour_idc3s0eu0b                    ITALY     25-44
## 464  tour_ido9xlk3sh UNITED STATES OF AMERICA     25-44
## 465  tour_idcqy06bko UNITED STATES OF AMERICA       65+
## 466  tour_idw23exa8j                   ZAMBIA     25-44
## 467  tour_idcfc1p9jy UNITED STATES OF AMERICA     45-64
## 468  tour_idxrevyavj                     OMAN     25-44
## 469  tour_idoq6ga430 UNITED STATES OF AMERICA     25-44
## 470  tour_idl4r71iux                    CHINA     25-44
## 471  tour_id7ulyy11q                    ITALY     25-44
## 472  tour_idzwhfg5f8 UNITED STATES OF AMERICA     25-44
## 473  tour_idrr700ku2                    SPAIN     25-44
## 474  tour_idsis80c7p           UNITED KINGDOM     45-64
## 475  tour_id0igbbotp                    ITALY     25-44
## 476  tour_id93eq9oic                AUSTRALIA     45-64
## 477  tour_id8mnc534q                    SPAIN     25-44
## 478  tour_idbyd3zg59 UNITED STATES OF AMERICA       65+
## 479  tour_idn31lusnl                 ZIMBABWE     45-64
## 480  tour_idckesxxjr                  BELGIUM     45-64
## 481  tour_id0w3gq8qc                      UAE     25-44
## 482  tour_idpb3pfs4m           UNITED KINGDOM     25-44
## 483  tour_idzviycc9y UNITED STATES OF AMERICA     25-44
## 484  tour_id0nb0r6dd                  AUSTRIA       65+
## 485  tour_idekjt5k04               LUXEMBOURG     45-64
## 486  tour_id9bv9m9m2           UNITED KINGDOM     25-44
## 487  tour_idcqvi5iwg UNITED STATES OF AMERICA     25-44
## 488  tour_id5e2kmhfm UNITED STATES OF AMERICA       65+
## 489  tour_idd3htze1w           UNITED KINGDOM     45-64
## 490  tour_idfciecjfr                    INDIA     45-64
## 491  tour_idoddn6qf1              IVORY COAST     25-44
## 492  tour_iduyizij7t                  BURUNDI     18-24
## 493  tour_idexokfzar                  GERMANY     18-24
## 494  tour_ide0dul5y2                  DENMARK     25-44
## 495  tour_ide7s3t32o           UNITED KINGDOM     45-64
## 497  tour_id52mh0ya8                   FRANCE     45-64
## 498  tour_idu2iu4vur UNITED STATES OF AMERICA     25-44
## 499  tour_id3mjsievg                  BELGIUM     25-44
## 500  tour_idfrl1sae5                   UGANDA     25-44
## 501  tour_idkr3fnc3u                  GERMANY     45-64
## 502  tour_idt34id3pq                  AUSTRIA       65+
## 503  tour_idj6i5pu8d                    ITALY     25-44
## 504  tour_idr34kmcuj                    INDIA     25-44
## 505  tour_idfv92zs8t                 ZIMBABWE     45-64
## 506  tour_idk2rc0xge                AUSTRALIA     18-24
## 507  tour_idmsp951fh                  BURUNDI     25-44
## 508  tour_idfvtxf3iw           UNITED KINGDOM     45-64
## 509  tour_idl0k39t8m UNITED STATES OF AMERICA     25-44
## 510  tour_idd8gkfhwo                    CONGO     25-44
## 511  tour_id6muksybl                    ITALY     45-64
## 512  tour_idvjv09fu7                  GERMANY       65+
## 513  tour_idtivn7bfo                   FRANCE     18-24
## 514  tour_id5szz1ith           UNITED KINGDOM     18-24
## 515  tour_idoiar0y5j                  GERMANY     45-64
## 516  tour_id39044a32                   FRANCE     25-44
## 517  tour_idqpgvrzw3                    ITALY     25-44
## 518  tour_idgpgf3yxx                    ITALY     18-24
## 519  tour_idkjzglii0                   POLAND     25-44
## 520  tour_id9yolv2ml                    KOREA     25-44
## 521  tour_idy3rjnuqw                   FRANCE     25-44
## 522  tour_idt337fzdj                   FRANCE     25-44
## 523  tour_id6o86v09p                   UGANDA     18-24
## 524  tour_idgl68bw52              NEW ZEALAND     25-44
## 526  tour_idytdcml21 UNITED STATES OF AMERICA       65+
## 527  tour_id3fpqjt2z                   ZAMBIA     45-64
## 528  tour_idlco30d8i UNITED STATES OF AMERICA     45-64
## 529  tour_idr7dk8pt6                  GERMANY       65+
## 530  tour_idc3xzw415 UNITED STATES OF AMERICA     25-44
## 531  tour_iddbeacoxx                   NORWAY     25-44
## 532  tour_idngymdb4k                    KENYA     45-64
## 533  tour_ida654epz4 UNITED STATES OF AMERICA     25-44
## 534  tour_id7ftn9jq9                   CANADA     45-64
## 535  tour_idluk6xvf4 UNITED STATES OF AMERICA     25-44
## 536  tour_idgmzndjdn                    INDIA     25-44
## 537  tour_idyqfulu3q               SWIZERLAND     25-44
## 538  tour_idgtlljktd                AUSTRALIA     25-44
## 539  tour_idw8dcyfta                   CANADA       65+
## 540  tour_idn2a7j4dv                    SPAIN     25-44
## 541  tour_id8o1rdq4w UNITED STATES OF AMERICA     45-64
## 542  tour_id1vesleat                    INDIA     25-44
## 543  tour_id4aj1808w              NETHERLANDS     25-44
## 544  tour_ido8tixzq6                   RWANDA     25-44
## 545  tour_idialoty6l           UNITED KINGDOM     25-44
## 546  tour_idaod59eyt                    JAPAN     25-44
## 547  tour_idt9lnon0w                  GERMANY     45-64
## 548  tour_idwx1vtqxn                    SPAIN     25-44
## 549  tour_id59qhakx2           UNITED KINGDOM     45-64
## 550  tour_idb00ts0qp             SOUTH AFRICA     45-64
## 551  tour_idpqqxmaqt                  BURUNDI     45-64
## 552  tour_id3vu5p91a                  GERMANY     25-44
## 553  tour_idftg5tmhf                  NAMIBIA     45-64
## 554  tour_id37xvolbd              NETHERLANDS     25-44
## 555  tour_idta6j0w3n             SOUTH AFRICA     45-64
## 556  tour_id1bgogeka                  ROMANIA     25-44
## 557  tour_iduuy20kff                 ZIMBABWE     25-44
## 558  tour_idwge1ywnm UNITED STATES OF AMERICA     25-44
## 559  tour_idvmsdks86                AUSTRALIA     25-44
## 560  tour_iddo0utq55 UNITED STATES OF AMERICA       65+
## 561  tour_idlefb45q7 UNITED STATES OF AMERICA     25-44
## 562  tour_idftvtjaj9                AUSTRALIA     45-64
## 563  tour_idx2voppnf               SWIZERLAND     45-64
## 564  tour_idgkxrh092                AUSTRALIA     25-44
## 565  tour_idfhvkd97a                   SWEDEN     25-44
## 566  tour_iddngk84hd UNITED STATES OF AMERICA     25-44
## 567  tour_idf8ad8ue5 UNITED STATES OF AMERICA     45-64
## 568  tour_idt89lkf93                      UAE     25-44
## 570  tour_id6c8dpmyt               SWIZERLAND     25-44
## 571  tour_idi9vuriry                    KENYA     25-44
## 572  tour_idfrmv9ith                    CHINA     45-64
## 573  tour_idt8jl5mv1                    ITALY     45-64
## 574  tour_idrum2wjpl UNITED STATES OF AMERICA       65+
## 575  tour_id61bz427m UNITED STATES OF AMERICA     45-64
## 576  tour_idnzt7plml                    ITALY     45-64
## 577  tour_id3atyjfrk           UNITED KINGDOM     25-44
## 578  tour_id1rsj5i2o                  GERMANY     45-64
## 579  tour_id641vvf3r                   ISRAEL     25-44
## 581  tour_idkikgx4ot UNITED STATES OF AMERICA       65+
## 582  tour_idyb66dga4                 THAILAND     45-64
## 583  tour_id8hdeknm1              NEW ZEALAND     45-64
## 584  tour_idlj6gfi4v UNITED STATES OF AMERICA     25-44
## 585  tour_id1tuenvsi           UNITED KINGDOM     25-44
## 586  tour_idwi0sv9gc                    ITALY     25-44
## 587  tour_idpyyyunv7           UNITED KINGDOM       65+
## 588  tour_id8dmr2c7v                    KENYA     25-44
## 589  tour_idpaa7oam5                    KENYA     45-64
## 590  tour_id7hmeszpf UNITED STATES OF AMERICA     25-44
## 591  tour_idkdq2bbwz                    SPAIN     45-64
## 592  tour_idphxmh44t           UNITED KINGDOM     45-64
## 593  tour_idyd8re73m UNITED STATES OF AMERICA     25-44
## 594  tour_id15p5ryu5                    ITALY     45-64
## 595  tour_id07vruff6                    CONGO     25-44
## 596  tour_id1ffl95hs UNITED STATES OF AMERICA     45-64
## 597  tour_id3keiv1ej                   CANADA     25-44
## 598  tour_idl9025zxq                   POLAND       65+
## 599  tour_idyochuezx                  MORROCO     45-64
## 600  tour_idt9vm3zfq     UNITED ARAB EMIRATES     25-44
## 601  tour_idqloqpkpy                   CANADA       65+
## 602  tour_idvhthhgfs                    ITALY     25-44
## 603  tour_idtv6l9scg             SOUTH AFRICA     25-44
## 604  tour_ida7hej4m3                   KUWAIT     25-44
## 605  tour_id7j6tru3z                  GERMANY     45-64
## 606  tour_idgupvjzn7               SWIZERLAND       65+
## 607  tour_idcv9pb859                    ITALY     25-44
## 608  tour_id80qnr9ku                   SWEDEN     45-64
## 609  tour_id3y1fsgvk UNITED STATES OF AMERICA       65+
## 611  tour_idq441lr1n UNITED STATES OF AMERICA     25-44
## 612  tour_idci259vo8                 ZIMBABWE     25-44
## 613  tour_ido8xic6f9             SOUTH AFRICA     25-44
## 614  tour_iduigcz7jo                    SPAIN     25-44
## 615  tour_id2tfhs9hk                   UGANDA     18-24
## 616  tour_idl83wc5m0                    ITALY     25-44
## 617  tour_idfnik7w0a                   ZAMBIA     25-44
## 618  tour_id0q3ao5zk                    ITALY     25-44
## 619  tour_id59n82hnr                    SUDAN     25-44
## 620  tour_id244zzy72 UNITED STATES OF AMERICA     25-44
## 621  tour_idxb2dd1sv                    ITALY     25-44
## 622  tour_idgn13uple               SWIZERLAND     45-64
## 624  tour_idcadqembu                   SWEDEN     45-64
## 625  tour_idalxzrpvr              NEW ZEALAND     25-44
## 626  tour_idwo642qhi UNITED STATES OF AMERICA       65+
## 627  tour_id217nbmwc                 ZIMBABWE     25-44
## 628  tour_idwudsl36i                   SWEDEN     25-44
## 629  tour_idlvf1t29a                   FRANCE     45-64
## 631  tour_idoa83hgm9                 ZIMBABWE     25-44
## 632  tour_idy7fri4dr           UNITED KINGDOM     45-64
## 633  tour_ideqa7hwe5                 ZIMBABWE     25-44
## 634  tour_idl0dcgsyg UNITED STATES OF AMERICA     18-24
## 635  tour_idmvekwa00                 MALAYSIA     25-44
## 636  tour_id6wgadzb4                SINGAPORE     25-44
## 638  tour_idzvt8g3jo             SOUTH AFRICA     25-44
## 639  tour_ida3us5yk2                    SPAIN     25-44
## 640  tour_id35080etb                    ITALY     25-44
## 641  tour_idvxk1m9xp                   ZAMBIA     25-44
## 642  tour_id06ureq6a             SOUTH AFRICA     45-64
## 643  tour_idg2780fs6 UNITED STATES OF AMERICA     25-44
## 644  tour_idhj7ca04y                   FRANCE     25-44
## 645  tour_id46d8n4og UNITED STATES OF AMERICA     45-64
## 646  tour_idfy8x6yk2           UNITED KINGDOM     18-24
## 647  tour_idtfwifzvl UNITED STATES OF AMERICA     25-44
## 648  tour_idyihx7ady                    SPAIN     25-44
## 649  tour_idzbahmv71                  GERMANY     25-44
## 650  tour_idn6sbpzrd UNITED STATES OF AMERICA     25-44
## 651  tour_idbc84pqxt                AUSTRALIA       65+
## 652  tour_id0apqr34p                    SPAIN     25-44
## 653  tour_id2zpvd3wg                   CANADA     45-64
## 654  tour_idbrx9wec0 UNITED STATES OF AMERICA     45-64
## 655  tour_id0aa0znag                    SPAIN     18-24
## 656  tour_idn5wb1hfw                    SPAIN     45-64
## 657  tour_idgl8bmnn0                    ITALY     25-44
## 658  tour_idjtai05ck                   GREECE     45-64
## 659  tour_idlxlvh9oy UNITED STATES OF AMERICA     25-44
## 660  tour_idsrg9psb1                  GERMANY     25-44
## 661  tour_idpwk2txl1             SOUTH AFRICA     25-44
## 662  tour_idfsj9g4i8           UNITED KINGDOM     18-24
## 663  tour_idn9dfvux8 UNITED STATES OF AMERICA       65+
## 664  tour_idpcro98wl                    KENYA     25-44
## 665  tour_idtq8kffux                    KENYA     45-64
## 666  tour_idus815zgr                 ZIMBABWE     25-44
## 667  tour_idxsjy41ff                 PORTUGAL     25-44
## 669  tour_idq2u3sf0q                    KENYA     25-44
## 670  tour_idhqy73jmq                    ITALY     25-44
## 671  tour_idqxds9uzv                  GERMANY     25-44
## 672  tour_idm5xjwq6n                AUSTRALIA     45-64
## 673  tour_ida2qru7pb UNITED STATES OF AMERICA     45-64
## 674  tour_idhyh15wvy                AUSTRALIA     45-64
## 675  tour_idnkpx00rz                  BURUNDI     18-24
## 676  tour_idqy5hvxim                 PORTUGAL     45-64
## 677  tour_idc3w7fq81 UNITED STATES OF AMERICA     45-64
## 678  tour_idb4ltcyz6                   UGANDA       65+
## 679  tour_idyz220m3t                   SWEDEN     45-64
## 680  tour_id1yaw2g1v                   MALAWI     25-44
## 681  tour_idzw6cct2a           UNITED KINGDOM     25-44
## 682  tour_idhmyr0g53                   ZAMBIA     25-44
## 683  tour_idb9dp41b9                 ZIMBABWE     25-44
## 684  tour_idhixncy99                   SWEDEN     45-64
## 685  tour_idmw2vknql UNITED STATES OF AMERICA     25-44
## 686  tour_id94p8eh8m                   ZAMBIA     25-44
## 688  tour_iddeabyy74           UNITED KINGDOM     18-24
## 690  tour_idu6qzuonl                   CANADA     45-64
## 691  tour_idqsepgbvs           UNITED KINGDOM     45-64
## 692  tour_idxvzmbz9d                AUSTRALIA     45-64
## 693  tour_id01juvopz UNITED STATES OF AMERICA     25-44
## 694  tour_id7uef9epc                  BELGIUM     25-44
## 695  tour_idtn0agw7w                  GERMANY     45-64
## 696  tour_id109ykmqq                    ITALY     25-44
## 697  tour_idxhtczx3u                    ITALY     45-64
## 698  tour_id4hkef442 UNITED STATES OF AMERICA     45-64
## 699  tour_idyp5mqh30                AUSTRALIA     45-64
## 700  tour_idnab5xsu2                  GERMANY     45-64
## 701  tour_idv51e0uft                   ZAMBIA     25-44
## 702  tour_idletwgwq5                    INDIA     25-44
## 703  tour_id2wqu81l2 UNITED STATES OF AMERICA     18-24
## 704  tour_iduzdkq9ah               SWIZERLAND     45-64
## 705  tour_idp2zrd12j               SWIZERLAND     25-44
## 706  tour_idzc8qyys5                     OMAN     45-64
## 707  tour_idxg9as5a9                    ITALY     25-44
## 708  tour_idmvixt9yw UNITED STATES OF AMERICA     45-64
## 709  tour_idqvwhq8x5           UNITED KINGDOM     25-44
## 710  tour_id0rzag2yi           UNITED KINGDOM     18-24
## 711  tour_idrx60s243           UNITED KINGDOM     18-24
## 712  tour_idp21j1sui UNITED STATES OF AMERICA       65+
## 713  tour_idoeefj2x2                    KENYA     45-64
## 714  tour_idjv92iq4i                    ITALY     25-44
## 715  tour_idq4qb4vdk                   NORWAY     45-64
## 716  tour_idxouwyyv5           UNITED KINGDOM     45-64
## 717  tour_idd79nnkym                   FRANCE     25-44
## 718  tour_ido2nv8oye                    KENYA     25-44
## 719  tour_idxvfbqlsr                    KENYA     25-44
## 720  tour_id3sb51clp UNITED STATES OF AMERICA     45-64
## 721  tour_idoodf8kn4 UNITED STATES OF AMERICA     45-64
## 722  tour_idyzkdjccu           UNITED KINGDOM     25-44
## 723  tour_idywhqwfsa                   FRANCE       65+
## 724  tour_idje5dnzzx                     OMAN     18-24
## 725  tour_ido1xmbken                    ITALY     25-44
## 726  tour_ids4e66vsc           UNITED KINGDOM     25-44
## 727  tour_idpm8frh6o UNITED STATES OF AMERICA     25-44
## 728  tour_idfzeeg8rh UNITED STATES OF AMERICA     45-64
## 729  tour_idoomhjzlf                   SWEDEN     45-64
## 731  tour_id3k7rnus9                  GERMANY     18-24
## 732  tour_id34k23dyn                    CHINA     25-44
## 733  tour_id9k2mhigd                  DENMARK     25-44
## 734  tour_idrp5pzglu UNITED STATES OF AMERICA     18-24
## 735  tour_idvbkl9uxa                   CANADA     18-24
## 737  tour_id0a6jik1l                   RWANDA       <18
## 738  tour_id6uydh4ks                   FRANCE     25-44
## 739  tour_idwv7b827a                    ITALY     18-24
## 741  tour_idy3a0vgea                    CONGO     25-44
## 742  tour_id8x62c3pv           CZECH REPUBLIC       65+
## 743  tour_idpoz2sift              NETHERLANDS     45-64
## 744  tour_idcof07fxn             SOUTH AFRICA     25-44
## 745  tour_idim2fn1rz                    CHINA     18-24
## 746  tour_id12c6ckis                   CANADA       65+
## 747  tour_id7401hhvr               SWIZERLAND     45-64
## 748  tour_idvagksjxk           UNITED KINGDOM       65+
## 749  tour_idpwx86w10                  AUSTRIA     45-64
## 750  tour_id3ynv0wx5                 ZIMBABWE     25-44
## 751  tour_idzxcujisp UNITED STATES OF AMERICA     45-64
## 752  tour_idi5r7gvl5                    KENYA     25-44
## 753  tour_id3fvo3phv                    ITALY     25-44
## 754  tour_ida3szgatd           UNITED KINGDOM     25-44
## 755  tour_idyznxr6c6 UNITED STATES OF AMERICA     25-44
## 756  tour_idamx5rzxi                   UGANDA     45-64
## 757  tour_id8ww9nc37           UNITED KINGDOM     45-64
## 758  tour_id3l0ve04z UNITED STATES OF AMERICA     45-64
## 759  tour_idcpi7mt4m                    ITALY     25-44
## 760  tour_id6oulq1i8                  GERMANY     45-64
## 761  tour_id3grg6ht3                  GERMANY     45-64
## 762  tour_id8mej23mk           UNITED KINGDOM     18-24
## 763  tour_idaue8o8bb           UNITED KINGDOM     18-24
## 764  tour_id71386ps1                   SWEDEN     25-44
## 765  tour_id1jje1hpc                    CONGO     25-44
## 766  tour_idgovodw0i           UNITED KINGDOM     25-44
## 767  tour_idnwtdgecx                  AUSTRIA     45-64
## 768  tour_idrlafioyy             SOUTH AFRICA     45-64
## 769  tour_idpc1fppto                    CHINA     25-44
## 770  tour_id9ounn4h6 UNITED STATES OF AMERICA     25-44
## 771  tour_idtct4s7sr                   CANADA       65+
## 772  tour_idoyym3xtz                   BRAZIL     25-44
## 773  tour_idi7g57i8c                AUSTRALIA     25-44
## 774  tour_idxwhs15mc                   ZAMBIA     25-44
## 775  tour_ide2goriv2           UNITED KINGDOM     18-24
## 776  tour_idzy1q5pal                    SPAIN     25-44
## 777  tour_id6st3cmbm                    INDIA       65+
## 778  tour_idfp1akgl8           UNITED KINGDOM     45-64
## 779  tour_iduh23c7qz           UNITED KINGDOM     45-64
## 780  tour_id5on3jnzs                    SPAIN     25-44
## 781  tour_idrjpspbo1           UNITED KINGDOM     45-64
## 782  tour_id5nrl8urt UNITED STATES OF AMERICA     25-44
## 783  tour_idiw6p79h1             SOUTH AFRICA     25-44
## 784  tour_idw1dxi2pe UNITED STATES OF AMERICA       65+
## 785  tour_idwi9guful UNITED STATES OF AMERICA       65+
## 786  tour_idtzqij7lj UNITED STATES OF AMERICA     25-44
## 787  tour_id6xaq5h6k             SOUTH AFRICA     25-44
## 788  tour_idct4l7urx                    SPAIN     45-64
## 789  tour_idfkov5wn3                    ITALY     25-44
## 790  tour_idmd5z3jzy                AUSTRALIA     45-64
## 791  tour_idr40rca6b           UNITED KINGDOM     25-44
## 792  tour_idhi4kkjr8                  GERMANY     45-64
## 793  tour_idoe9j4quj                   CANADA     18-24
## 794  tour_idw9b3a6e0               SWIZERLAND       65+
## 795  tour_ids8ff16d4 UNITED STATES OF AMERICA       65+
## 797  tour_idcd7hijaz           UNITED KINGDOM     18-24
## 798  tour_ida3vt6p0x                  BELGIUM     45-64
## 799  tour_iduqm595qa                    KENYA     45-64
## 800  tour_id0exhy2tg           UNITED KINGDOM     18-24
## 801  tour_idhwtvohmd                   ZAMBIA     25-44
## 802  tour_idgltxrvee                   CANADA     25-44
## 803  tour_idcrvbvusx             SOUTH AFRICA     45-64
## 804  tour_id4gdob50i                   FRANCE     45-64
## 805  tour_idtl8eaa40              NETHERLANDS     25-44
## 806  tour_idwzznicw2                     MALT     25-44
## 807  tour_iduprkny3c                    JAPAN     18-24
## 808  tour_idv53539al                   SWEDEN     45-64
## 809  tour_id2ov5pk5f                    ITALY     45-64
## 810  tour_id5hscc168             SOUTH AFRICA     18-24
## 811  tour_idjyoxe975             SOUTH AFRICA       65+
## 812  tour_id6wjvdukk                   FRANCE     25-44
## 814  tour_idozaq7pi7                AUSTRALIA     25-44
## 815  tour_idd95zdf52                   SWEDEN       65+
## 816  tour_idkckon5h2             SOUTH AFRICA     45-64
## 817  tour_idaanamoz0             SOUTH AFRICA     18-24
## 818  tour_idmplbht02           UNITED KINGDOM     45-64
## 820  tour_idpvsqopls                   CANADA     45-64
## 821  tour_id2svsi944 UNITED STATES OF AMERICA       65+
## 822  tour_idwdu0r5qq                   SWEDEN     25-44
## 823  tour_idb58d31o3                  GERMANY     25-44
## 824  tour_idxzj8cii9                    KENYA     45-64
## 825  tour_idloe7eaxf             SOUTH AFRICA     45-64
## 826  tour_idrn26fe6c                   FRANCE     25-44
## 827  tour_id7erem232                  GERMANY     45-64
## 828  tour_idhvy03ahj UNITED STATES OF AMERICA       65+
## 829  tour_ide7ryr4zj                   FRANCE     18-24
## 831  tour_idv07emukb                      UAE     18-24
## 832  tour_idxv6dxxos           UNITED KINGDOM     18-24
## 833  tour_idteb5zvyh                  BURUNDI     18-24
## 834  tour_idek5abxe1                  BELGIUM     45-64
## 835  tour_id93uuj8ve                   CANADA     45-64
## 836  tour_idgdz8jlov                    ITALY     45-64
## 837  tour_idccqnok7i                AUSTRALIA     25-44
## 838  tour_idspvy2ao2                   FRANCE     45-64
## 839  tour_idbqipkqpz             SOUTH AFRICA     45-64
## 841  tour_id0o1cupy5                   RUSSIA     25-44
## 842  tour_idcki1wwpm                 ZIMBABWE     25-44
## 845  tour_idlzu2e2u2           UNITED KINGDOM     25-44
## 846  tour_ida3ifrvsh           UNITED KINGDOM       <18
## 847  tour_iddlj9wmws                AUSTRALIA     45-64
## 848  tour_id46q0pc99              NETHERLANDS     25-44
## 849  tour_idag2v9sjw                    KENYA     45-64
## 850  tour_id8snfpkrl                    INDIA     25-44
## 851  tour_idmvbvqbkh                      UAE     45-64
## 852  tour_idr8s6539j UNITED STATES OF AMERICA     45-64
## 853  tour_id56weobw6                    INDIA     45-64
## 854  tour_ideqqrrw8d                 ZIMBABWE     25-44
## 855  tour_idzoox4otf              NETHERLANDS     45-64
## 856  tour_idxaj3j4qc               SWIZERLAND     45-64
## 857  tour_id0gxopp1d                   POLAND     25-44
## 858  tour_id6u11nr0o                  AUSTRIA     45-64
## 859  tour_idn729a1cu                  IRELAND       <18
## 860  tour_id5gktbpnu                  GERMANY     25-44
## 861  tour_idopqh1ae2 UNITED STATES OF AMERICA       65+
## 862  tour_iddtueor4z                   CANADA     45-64
## 863  tour_idhmh2d7lb UNITED STATES OF AMERICA       65+
## 864  tour_idwfkotx0m UNITED STATES OF AMERICA     45-64
## 865  tour_iduwnap2nn                    ITALY     25-44
## 866  tour_id2dcb4wug                   UGANDA     45-64
## 867  tour_idn7slhb0f                   MALAWI     25-44
## 868  tour_idpxx7seo0 UNITED STATES OF AMERICA     45-64
## 869  tour_idwg7f6zyl                 ZIMBABWE     45-64
## 870  tour_idkighabnp           UNITED KINGDOM     18-24
## 871  tour_idufobxy76 UNITED STATES OF AMERICA     45-64
## 872  tour_idf68162cz UNITED STATES OF AMERICA     25-44
## 873  tour_idkfryattc             SOUTH AFRICA     25-44
## 874  tour_idytc4wiwi                  GERMANY     45-64
## 875  tour_idvzvkqv99 UNITED STATES OF AMERICA     45-64
## 876  tour_idfd1cfnvc                 ZIMBABWE     25-44
## 877  tour_idjrxkrvzq                  BURUNDI     25-44
## 878  tour_idugei0nj4           UNITED KINGDOM     25-44
## 879  tour_idkdrm3abx             SOUTH AFRICA     25-44
## 880  tour_idyvwwj5sk UNITED STATES OF AMERICA     45-64
## 881  tour_id2t6zkwok           UNITED KINGDOM     25-44
## 882  tour_idto9b731o                   FRANCE     45-64
## 883  tour_id5comdkg4                   SWEDEN     25-44
## 885  tour_iduxc39ugq                   RUSSIA     25-44
## 886  tour_idr76mi68v                  AUSTRIA     45-64
## 887  tour_idtnac59fu                    KENYA     25-44
## 889  tour_id0ha2prez                    KENYA     18-24
## 890  tour_idlnjiwpt7 UNITED STATES OF AMERICA       65+
## 891  tour_id8l7vc388 UNITED STATES OF AMERICA     45-64
## 892  tour_ids868kgi7                    INDIA     25-44
## 893  tour_idoh04jkpf                 ZIMBABWE     25-44
## 894  tour_id7nt9b3a5                   CANADA     45-64
## 895  tour_idvvouao48                    KENYA     25-44
## 896  tour_idoirbewhm                   NORWAY     25-44
## 897  tour_idsh5r3hu4              NEW ZEALAND     18-24
## 898  tour_idjc22zsu7 UNITED STATES OF AMERICA     45-64
## 899  tour_idvg1i41rw                   GREECE     18-24
## 900  tour_ids32m9fxt                   ZAMBIA     25-44
## 902  tour_id1nrj31dt                   MALAWI     25-44
## 903  tour_id1640pomd                    ITALY     25-44
## 904  tour_idon0cjkyz                    ITALY     25-44
## 905  tour_idjbmjx37u                   ZAMBIA     45-64
## 906  tour_iduj1vtjrv                   FRANCE     45-64
## 907  tour_idzuyzy34y                  AUSTRIA     25-44
## 908  tour_idukxx9oll                  BURUNDI     18-24
## 909  tour_id8mmlj1dg                  GERMANY     45-64
## 910  tour_id3o2fm9x4                   RWANDA     45-64
## 911  tour_id8ibkkais                   FRANCE     45-64
## 912  tour_idqk6462rl                   SWEDEN     25-44
## 913  tour_idrb5bz9k0                   FRANCE     25-44
## 914  tour_id9tvgg9jq               SWIZERLAND       65+
## 915  tour_id96diywzb                 PAKISTAN     25-44
## 916  tour_idm8r9hjbd                    CHINA     18-24
## 917  tour_idgv1gfb5a                  FINLAND     25-44
## 918  tour_idhqveqaut           UNITED KINGDOM     18-24
## 919  tour_idbyi63j8z                 ZIMBABWE     25-44
## 920  tour_id8fs332u3           UNITED KINGDOM     18-24
## 921  tour_iduw9kfozb                    ITALY     45-64
## 922  tour_idsvmb18n9           UNITED KINGDOM     25-44
## 923  tour_idbio4gpwm UNITED STATES OF AMERICA     45-64
## 924  tour_idek05htu6                    SPAIN     45-64
## 925  tour_id60plx1c1                   SWEDEN     25-44
## 926  tour_idl7n2xpv9                 TANZANIA     25-44
## 927  tour_iduvifkrrn                AUSTRALIA     45-64
## 928  tour_idt9vbzkrr                    SPAIN     25-44
## 929  tour_idrkkwxdd1                AUSTRALIA     45-64
## 930  tour_id50kec8oh           UNITED KINGDOM     18-24
## 931  tour_ide8jxk8wj                ARGENTINA     45-64
## 932  tour_idrezc5fax           UNITED KINGDOM     45-64
## 933  tour_id5qv6vayl                SRI LANKA     25-44
## 934  tour_id8fto81x7                    ITALY     25-44
## 935  tour_idzz2i7cap                   ZAMBIA     25-44
## 936  tour_id32q7f8hw UNITED STATES OF AMERICA       65+
## 937  tour_idobhibo3n UNITED STATES OF AMERICA     25-44
## 938  tour_idpbhu44dk                  DENMARK     25-44
## 939  tour_idhqd7mww7                    GHANA     25-44
## 940  tour_idqmu906fi                    INDIA     25-44
## 941  tour_iddq39g8me                   SWEDEN     18-24
## 942  tour_idezlfioqc                    SPAIN     25-44
## 943  tour_id2dz6ldie                   RUSSIA     45-64
## 945  tour_idnriwqhfg UNITED STATES OF AMERICA       <18
## 946  tour_idgvoiy1yg                    KENYA     45-64
## 947  tour_idpe9mzc48             SOUTH AFRICA     25-44
## 948  tour_idhrgwm57f                  AUSTRIA     45-64
## 950  tour_idbo5m2rdv             SOUTH AFRICA     45-64
## 951  tour_idj6k6f1nb UNITED STATES OF AMERICA       65+
## 952  tour_idkm1nlhj2                 BOTSWANA     45-64
## 953  tour_idjoepzt5e                  BELGIUM     25-44
## 954  tour_idhgrllpuw                    ITALY     25-44
## 955  tour_idffwl0suj                  BURUNDI     18-24
## 956  tour_idd1au4icv                  GERMANY     45-64
## 957  tour_idwkirlz6k                    ITALY     45-64
## 958  tour_id9gwpr52a                  VIETNAM     18-24
## 959  tour_idquako94s UNITED STATES OF AMERICA     45-64
## 960  tour_id1i9vov69             SOUTH AFRICA       65+
## 961  tour_idygxbzpq4                   CANADA       65+
## 962  tour_idb5j0b1k8                    KOREA     18-24
## 963  tour_idnflk3qkj           UNITED KINGDOM     18-24
## 964  tour_id1eiybxp6                ARGENTINA     25-44
## 965  tour_id32iqo92u                   CANADA     45-64
## 966  tour_idpubi1rn8                  BELGIUM     25-44
## 967  tour_id21twkly4                   FRANCE     45-64
## 968  tour_id8mpcqrpv                   ZAMBIA     45-64
## 969  tour_id8n6dz8fu                    KENYA     25-44
## 970  tour_idr5u3iorh                    ITALY     25-44
## 971  tour_id88bl72wi UNITED STATES OF AMERICA     45-64
## 972  tour_idqbpvssjh UNITED STATES OF AMERICA       65+
## 973  tour_idie39ei01 UNITED STATES OF AMERICA     25-44
## 974  tour_id2o0c2z4h                AUSTRALIA     25-44
## 975  tour_idw6mo9hq1 UNITED STATES OF AMERICA     25-44
## 976  tour_idzko9cpau                    ITALY     45-64
## 977  tour_idcmn3odby                   FRANCE     25-44
## 978  tour_id9i8y5zd3 UNITED STATES OF AMERICA       65+
## 979  tour_idlswxzp92           UNITED KINGDOM     25-44
## 980  tour_idi1jboxip UNITED STATES OF AMERICA     18-24
## 981  tour_idyuiyuzp4                    ITALY     25-44
## 982  tour_idl027xmwl           UNITED KINGDOM     25-44
## 983  tour_idefu9klml                   UGANDA     45-64
## 985  tour_idoyezod9r                 ZIMBABWE     25-44
## 986  tour_idonmvwapb                    ITALY     25-44
## 987  tour_id4czktw77                AUSTRALIA     25-44
## 989  tour_idtr799iu3                   FRANCE     45-64
## 990  tour_idfvofztk1           UNITED KINGDOM     25-44
## 991  tour_id560uiwpy                  DENMARK     18-24
## 992  tour_idcpoz8cva                 ZIMBABWE     18-24
## 993  tour_id770ks703                     OMAN     18-24
## 994  tour_idoeb3vkic              NETHERLANDS     25-44
## 995  tour_idukxlf5ac                   ZAMBIA     45-64
## 996  tour_iddphruzvv                    ITALY     45-64
## 997  tour_id5i93vie0             SOUTH AFRICA     25-44
## 998  tour_idxqlmhdn5           UNITED KINGDOM     18-24
## 999  tour_id3320g37j                    CONGO     25-44
## 1000 tour_id79i16czj                    ITALY     45-64
## 1001 tour_idyo33xww5                  GERMANY     45-64
## 1002 tour_idx24lh1y2                    ITALY     18-24
## 1003 tour_id8fcm1dcd             SOUTH AFRICA     45-64
## 1004 tour_idp3r6t122                    ITALY     45-64
## 1005 tour_idh3mbnlnc UNITED STATES OF AMERICA       65+
## 1006 tour_idoqceufsv UNITED STATES OF AMERICA     25-44
## 1007 tour_id1ldwluxx UNITED STATES OF AMERICA       65+
## 1008 tour_id04ko8db7                 ZIMBABWE     25-44
## 1009 tour_idws1encel                  DENMARK     25-44
## 1010 tour_ids93jqu8l                    CHINA     25-44
## 1011 tour_id2z74sv8d                    ITALY     25-44
## 1012 tour_idt2rw3uap UNITED STATES OF AMERICA     25-44
## 1013 tour_idajgsutk1                   FRANCE     45-64
## 1014 tour_idnbb5xs1e UNITED STATES OF AMERICA     25-44
## 1016 tour_idhxrlsy8x             SOUTH AFRICA     45-64
## 1017 tour_idx9ace6zm                  DENMARK       65+
## 1018 tour_id3ntquw5f                AUSTRALIA     18-24
## 1019 tour_idwdtv3tqw                    INDIA     18-24
## 1020 tour_idiqtlvfst           UNITED KINGDOM     45-64
## 1021 tour_idfzqmzp3l                    INDIA     25-44
## 1022 tour_id44id6grm                    ITALY       65+
## 1023 tour_idzrw6liex           UNITED KINGDOM     45-64
## 1024 tour_ide2tpm9wt UNITED STATES OF AMERICA     25-44
## 1026 tour_idupajhwy5                 ZIMBABWE     45-64
## 1027 tour_idi6n1m4qy                    ITALY     25-44
## 1028 tour_id91l4hvgh                   SWEDEN     45-64
## 1029 tour_idp31v54x5           UNITED KINGDOM     25-44
## 1030 tour_iduzd5qghl           UNITED KINGDOM     45-64
## 1032 tour_idijc49ny3                   RWANDA     25-44
## 1033 tour_idm4uiyoun                    KENYA     25-44
## 1034 tour_id0iktxyo9                  GERMANY     25-44
## 1035 tour_id476i1e0c                      UAE     45-64
## 1036 tour_idn877aotw                   UGANDA     45-64
## 1037 tour_idmgjlqljl           UNITED KINGDOM       65+
## 1038 tour_idvu8n3w50                    ITALY     25-44
## 1040 tour_idmaa49bx1                  BELGIUM     25-44
## 1041 tour_idoitkp0pu                  GERMANY     25-44
## 1042 tour_idl4l87v4f           UNITED KINGDOM     45-64
## 1043 tour_idga7420re                  FINLAND     25-44
## 1044 tour_id4xyrbyfb                      UAE     25-44
## 1045 tour_idu1hqy8fm                   CANADA     45-64
## 1046 tour_idssjqqqhg                    ITALY     45-64
## 1047 tour_idpav8pexf                 MALAYSIA     45-64
## 1048 tour_id2u232q09 UNITED STATES OF AMERICA     25-44
## 1049 tour_id4xuvi76x UNITED STATES OF AMERICA     45-64
## 1050 tour_idflvtk69w                  GERMANY     18-24
## 1051 tour_idxwef2905 UNITED STATES OF AMERICA       65+
## 1052 tour_idcqzw0yog                    ITALY     45-64
## 1054 tour_iduai3xmaq                    SPAIN     25-44
## 1055 tour_id6cyg4pmm               SWIZERLAND     45-64
## 1056 tour_idx0rtwf4s                   FRANCE     25-44
## 1057 tour_idmy09rla0                    CHINA     25-44
## 1058 tour_idul4h087u                    SPAIN     45-64
## 1059 tour_idtg6h806p UNITED STATES OF AMERICA     25-44
## 1060 tour_idd9a8yvak                     OMAN     25-44
## 1061 tour_idkkt228e8             SOUTH AFRICA     45-64
## 1062 tour_idlmbvlhym                   NORWAY     18-24
## 1063 tour_idfve5bkaw                ARGENTINA     25-44
## 1065 tour_id3424qhxc                   RWANDA     18-24
## 1066 tour_id24adc1il                    KENYA     45-64
## 1067 tour_id2ss6kdpe UNITED STATES OF AMERICA     45-64
## 1068 tour_idk1b3p2pr                AUSTRALIA     45-64
## 1069 tour_idk5xnjboj                   ZAMBIA     25-44
## 1070 tour_idu0pndk9f                    SPAIN     45-64
## 1071 tour_id7n19lwtj                    ITALY     25-44
## 1072 tour_id138mu22c UNITED STATES OF AMERICA     25-44
## 1073 tour_idwms46czn                   UGANDA     25-44
## 1074 tour_idtmkxteb9                  IRELAND       <18
## 1075 tour_idhpn6stx6                   FRANCE     25-44
## 1076 tour_ida9wkzx8y                    KENYA     45-64
## 1077 tour_id4ch9cwwf                    ITALY     25-44
## 1078 tour_idwc8191qd                  AUSTRIA     18-24
## 1079 tour_idpyyf4zow UNITED STATES OF AMERICA     25-44
## 1080 tour_idi1df6n04 UNITED STATES OF AMERICA     45-64
## 1081 tour_id9jmw36cq UNITED STATES OF AMERICA       65+
## 1082 tour_idjezey1hc                   SWEDEN     25-44
## 1083 tour_idhbpefou4                    ITALY     25-44
## 1084 tour_idlo3m1c4s                    ITALY     25-44
## 1085 tour_id4zufq4pe                   RWANDA     18-24
## 1087 tour_ido5uo5nl2                    SPAIN     45-64
## 1088 tour_idaxoasy4f                    SPAIN     45-64
## 1091 tour_idxyihropj                   FRANCE     45-64
## 1092 tour_iddo8q0b0k             SOUTH AFRICA     45-64
## 1093 tour_idpbb5nafy           UNITED KINGDOM       65+
## 1094 tour_idxyth8byl           UNITED KINGDOM     18-24
## 1095 tour_id1eoh36kh           UNITED KINGDOM     18-24
## 1096 tour_idii2w00tu                 THAILAND     45-64
## 1098 tour_id0l9t5iot                   UGANDA     25-44
## 1099 tour_idue7cxf00                    ITALY     45-64
## 1100 tour_idxsthvb0p                AUSTRALIA     45-64
## 1101 tour_id757lcwx1 UNITED STATES OF AMERICA       65+
## 1102 tour_id5nt7c9qb           UNITED KINGDOM       65+
## 1103 tour_idxmd3p3jd              NETHERLANDS     45-64
## 1104 tour_id0u4qn158                   ZAMBIA     25-44
## 1105 tour_idzlile97q                    ITALY     18-24
## 1106 tour_idgc8u9m26                AUSTRALIA     45-64
## 1108 tour_idasll0muq                  GERMANY       65+
## 1109 tour_idb2pi9gco                    ITALY     25-44
## 1110 tour_id4y81vql7                    KENYA     25-44
## 1111 tour_idki5xcmz8                    KENYA     25-44
## 1112 tour_id6haox1go                AUSTRALIA     25-44
## 1113 tour_idqdnl2pn2 UNITED STATES OF AMERICA     45-64
## 1114 tour_idteipf5l4                 MALAYSIA     25-44
## 1115 tour_idz9kyp41w                 ZIMBABWE     25-44
## 1116 tour_idysj0kgru                  DENMARK     18-24
## 1117 tour_idutns9o19                  BERMUDA     45-64
## 1118 tour_idyfl3yk7l                   SWEDEN     45-64
## 1120 tour_iddnhwsw72                 ZIMBABWE     25-44
## 1121 tour_ids28ex428                    ITALY     25-44
## 1122 tour_iduffhoyje                   ZAMBIA     25-44
## 1123 tour_idv5swae48                    SPAIN     25-44
## 1124 tour_idy0c7qyra                    INDIA     25-44
## 1125 tour_id90t025x8                    KENYA     25-44
## 1126 tour_id1r8n153z                    ITALY     45-64
## 1127 tour_idky3luzvk             SOUTH AFRICA     18-24
## 1128 tour_idzmin8uo1                  BURUNDI       <18
## 1129 tour_idr02ee8mm                      UAE     25-44
## 1130 tour_id1vaq7aj8                    ITALY     18-24
## 1131 tour_idah1lyjqv                 ZIMBABWE     18-24
## 1132 tour_idkf1d3c4x           UNITED KINGDOM     25-44
## 1133 tour_id2rxwb6sv           UNITED KINGDOM       65+
## 1134 tour_idfr9o35pt                   CANADA     45-64
## 1135 tour_idc4qq4pt6 UNITED STATES OF AMERICA     45-64
## 1136 tour_id57j3csfi                   ZAMBIA     25-44
## 1137 tour_ida3ae5ska                   ZAMBIA     25-44
## 1138 tour_idanv0u24f                   BRAZIL     25-44
## 1139 tour_idt46ok1g0                AUSTRALIA     45-64
## 1140 tour_ide2rcin7x           UNITED KINGDOM     18-24
## 1141 tour_idum3egigd UNITED STATES OF AMERICA     45-64
## 1142 tour_ido8hdvs3s              NEW ZEALAND     25-44
## 1143 tour_id2m3ge4nr                    JAPAN     25-44
## 1144 tour_idt0z8wwlj                   NORWAY     25-44
## 1146 tour_idscfa0xcj                   FRANCE     45-64
## 1147 tour_id7gfu2ajw                 ZIMBABWE     25-44
## 1148 tour_idmkprkgvt                    CHINA     18-24
## 1149 tour_id9q5zgqdx                  DENMARK     45-64
## 1150 tour_idhtt3j65g                  AUSTRIA     45-64
## 1151 tour_id0aipop6x                   CANADA     45-64
## 1152 tour_idzp1oz9co                    INDIA     25-44
## 1153 tour_idjakehafb           UNITED KINGDOM     25-44
## 1154 tour_idh3p7so8n UNITED STATES OF AMERICA     25-44
## 1155 tour_idpc3lggyl                    INDIA     25-44
## 1156 tour_id8aihorcw           UNITED KINGDOM     45-64
## 1157 tour_id7v4ruju9                  BELGIUM     25-44
## 1158 tour_idirhe4n79           UNITED KINGDOM     25-44
## 1159 tour_idc8ch5zu3           UNITED KINGDOM     45-64
## 1160 tour_idcwsemusb UNITED STATES OF AMERICA     25-44
## 1161 tour_idyjcv7tim           UNITED KINGDOM     25-44
## 1162 tour_idqxkpj6ix UNITED STATES OF AMERICA     45-64
## 1163 tour_idtnzulf80                   FRANCE     18-24
## 1164 tour_idf1sga654           UNITED KINGDOM     45-64
## 1165 tour_idthumg5bo UNITED STATES OF AMERICA     45-64
## 1166 tour_id8lvr4sct                  BURUNDI     25-44
## 1167 tour_iduq5t8zd7 UNITED STATES OF AMERICA       65+
## 1168 tour_idbefjodpq UNITED STATES OF AMERICA       <18
## 1169 tour_ida9nr6yzt UNITED STATES OF AMERICA     25-44
## 1170 tour_idigph56mk           UNITED KINGDOM     45-64
## 1172 tour_idodc1xpq4                    KENYA     25-44
## 1173 tour_id72yy5jlp                    SUDAN     18-24
## 1175 tour_id1umibndu UNITED STATES OF AMERICA     45-64
## 1177 tour_ideea1o1la           UNITED KINGDOM     45-64
## 1178 tour_idlbd9stjb             SOUTH AFRICA     25-44
## 1179 tour_idee5comke UNITED STATES OF AMERICA     45-64
## 1180 tour_idy60a0ewv           UNITED KINGDOM     25-44
## 1181 tour_idq021pu0b UNITED STATES OF AMERICA       65+
## 1182 tour_idippl5qsk                AUSTRALIA     18-24
## 1184 tour_iddk6kem5n                    ITALY       65+
## 1185 tour_idj44bnkns                   MALAWI     25-44
## 1186 tour_idn7ckzo26                   SWEDEN     25-44
## 1187 tour_idq7wv456p                  SENEGAL     45-64
## 1189 tour_idvftpn7ot           UNITED KINGDOM     18-24
## 1190 tour_idyts3j15g              AFGHANISTAN     18-24
## 1191 tour_idhz20vx25 UNITED STATES OF AMERICA     25-44
## 1192 tour_idfwpo2dxm                   FRANCE     45-64
## 1193 tour_id2texkm25                    KENYA     25-44
## 1194 tour_idxqktesic                  GERMANY     25-44
## 1196 tour_idpvmoar59 UNITED STATES OF AMERICA       65+
## 1197 tour_idew3rmbtj           UNITED KINGDOM     18-24
## 1198 tour_idoo5sfuim           UNITED KINGDOM     45-64
## 1199 tour_idlyov972i                    SPAIN     45-64
## 1200 tour_idv6fkwu8u UNITED STATES OF AMERICA     45-64
## 1201 tour_idl0ongk69                   CANADA     25-44
## 1202 tour_id4oyuf6aa                    ITALY       65+
## 1203 tour_idtnqln3hf                  LEBANON     45-64
## 1204 tour_idw8ycseh7 UNITED STATES OF AMERICA     25-44
## 1205 tour_idnek0u5ou                 COLOMBIA     25-44
## 1206 tour_idn5a7xr79                    KOREA     25-44
## 1207 tour_idzs75sybr                 ZIMBABWE     25-44
## 1208 tour_idrwsku7o7           UNITED KINGDOM     45-64
## 1209 tour_idyw9l44d9                    INDIA     25-44
## 1210 tour_idc6lis66f                   CANADA     45-64
## 1211 tour_idf83zbhd9                   POLAND     25-44
## 1212 tour_id2qjzjzgl           UNITED KINGDOM     25-44
## 1213 tour_idugzp1lue UNITED STATES OF AMERICA     25-44
## 1214 tour_id0fze3ldd                  JAMAICA     45-64
## 1215 tour_id10eo3xa6                    SPAIN     25-44
## 1216 tour_ids8ij9v4p                   UGANDA     25-44
## 1217 tour_id8izkw40k                   FRANCE     25-44
## 1218 tour_idspfsg3s5                    CHINA     25-44
## 1221 tour_idndh9fkk8                  BAHRAIN     25-44
## 1223 tour_idnxqho393                   FRANCE     45-64
## 1224 tour_idvtbew39f                    CONGO     25-44
## 1225 tour_id3v4bo3ox                   FRANCE     25-44
## 1227 tour_idg2b5jzrz                    KENYA     45-64
## 1228 tour_idbqxg1whb                    CONGO     45-64
## 1229 tour_idyusz9qrv           UNITED KINGDOM     18-24
## 1230 tour_iddqrn8qpk                   FRANCE     45-64
## 1231 tour_ida51bh089                AUSTRALIA     25-44
## 1232 tour_idcv61u8v9             SOUTH AFRICA     45-64
## 1233 tour_idpzj518fv           UNITED KINGDOM     45-64
## 1234 tour_id3sn85hlh UNITED STATES OF AMERICA     25-44
## 1235 tour_idk818cmyr                    CONGO     25-44
## 1236 tour_iddck1zvek                COSTARICA     45-64
## 1237 tour_idi3r6zq9l                   UGANDA     25-44
## 1238 tour_idkp67khku UNITED STATES OF AMERICA     25-44
## 1239 tour_idee6ys51v                AUSTRALIA     45-64
## 1240 tour_idbsmzx0v9                   RWANDA     18-24
## 1241 tour_idugjklcky UNITED STATES OF AMERICA       65+
## 1242 tour_idb137n1gw UNITED STATES OF AMERICA     18-24
## 1243 tour_idg0ygagwh                    INDIA     25-44
## 1244 tour_idg0q0jvoq                AUSTRALIA     25-44
## 1246 tour_id47u4d1pc             SOUTH AFRICA     45-64
## 1247 tour_idzrxckrxp                    ITALY     25-44
## 1248 tour_idoz3mrcal UNITED STATES OF AMERICA     25-44
## 1249 tour_idxuz7x150 UNITED STATES OF AMERICA     45-64
## 1250 tour_idngz6siqt                    ITALY     25-44
## 1251 tour_idvxt9hher                   CANADA     25-44
## 1252 tour_id8t95zk67                   FRANCE     25-44
## 1253 tour_iddqxynez8                    KENYA     25-44
## 1254 tour_idije7q22n UNITED STATES OF AMERICA     25-44
## 1255 tour_idjejh3xh5             SOUTH AFRICA     25-44
## 1256 tour_idy2cy4ptx                 ZIMBABWE     25-44
## 1257 tour_idu2776ldh                    ITALY     45-64
## 1259 tour_idjie13wph UNITED STATES OF AMERICA       65+
## 1260 tour_ide2q626s4                  BELGIUM     25-44
## 1261 tour_idmxmwm51e                AUSTRALIA     18-24
## 1262 tour_idxqjkejv3                   FRANCE     18-24
## 1263 tour_id0xo6k1h2              NEW ZEALAND     45-64
## 1264 tour_idg0znskjb                SINGAPORE     25-44
## 1265 tour_idokjcwe5p                  IRELAND       <18
## 1266 tour_id4fx2xj3q                 ZIMBABWE     45-64
## 1267 tour_id8ose7mx1                    SPAIN     25-44
## 1268 tour_id1lhmqai1 UNITED STATES OF AMERICA     45-64
## 1269 tour_idvhflhwpr UNITED STATES OF AMERICA     45-64
## 1270 tour_id60rzzo8a                 ZIMBABWE     18-24
## 1271 tour_idqczk07hz UNITED STATES OF AMERICA       65+
## 1272 tour_idh9qfmev4 UNITED STATES OF AMERICA       65+
## 1273 tour_idnqthb1eu                    ITALY     18-24
## 1275 tour_id13twfixg                   FRANCE     25-44
## 1276 tour_idgfuxldaa UNITED STATES OF AMERICA     25-44
## 1277 tour_id3tj7knst                    KENYA     45-64
## 1278 tour_idjj5895xc              NETHERLANDS     25-44
## 1279 tour_id3v11pt1m           UNITED KINGDOM     45-64
## 1280 tour_idb1lkfchu           UNITED KINGDOM     18-24
## 1281 tour_idoms6fjiw           UNITED KINGDOM     25-44
## 1282 tour_id99tnm150           UNITED KINGDOM     25-44
## 1283 tour_idu2oka8zk                   POLAND       <18
## 1284 tour_idf9l1nafh                AUSTRALIA     25-44
## 1285 tour_idrvmko5et                   FRANCE     25-44
## 1286 tour_ids7v9ysa3                    ITALY     25-44
## 1287 tour_idf4idvp7c UNITED STATES OF AMERICA       65+
## 1288 tour_id2n0zaxrh                   COMORO     25-44
## 1289 tour_idk08lc4ah UNITED STATES OF AMERICA     25-44
## 1290 tour_id699jp38k                  GERMANY     45-64
## 1291 tour_idcgmdm1d0                  BELGIUM     25-44
## 1292 tour_idkruk5chk                   CANADA     45-64
## 1293 tour_idqacuu1l4           UNITED KINGDOM     25-44
## 1294 tour_idi2twdd1x UNITED STATES OF AMERICA     45-64
## 1295 tour_id1rjcy9yj                   CANADA     45-64
## 1296 tour_id11cwf0rp                SINGAPORE     25-44
## 1298 tour_idmscnbf5h           UNITED KINGDOM     45-64
## 1299 tour_idbttz9t9r                    ITALY     45-64
## 1300 tour_idbfzx8be1           UNITED KINGDOM     25-44
## 1301 tour_idtrz5nmoz                  DENMARK       65+
## 1302 tour_idjfeysvt7                    ITALY     25-44
## 1303 tour_idaazpm882           UNITED KINGDOM       65+
## 1304 tour_id861omeyq                   UGANDA     18-24
## 1305 tour_id8611jjch UNITED STATES OF AMERICA     45-64
## 1306 tour_idoas89huq             SOUTH AFRICA     25-44
## 1307 tour_id9wlead5x                    ITALY     25-44
## 1308 tour_idpa4bwa96 UNITED STATES OF AMERICA       65+
## 1309 tour_id1cndfoef           UNITED KINGDOM     25-44
## 1310 tour_idha2pw1q4                  GERMANY     45-64
## 1311 tour_idac2id2nb                    ITALY     25-44
## 1312 tour_idd05ahiam                  BELGIUM     18-24
## 1313 tour_idwpto1r8g                AUSTRALIA       65+
## 1314 tour_idk2r3lbxv                    KENYA     25-44
## 1315 tour_id4xsg9hkw                   FRANCE     45-64
## 1316 tour_id5q05l9af                   ZAMBIA       65+
## 1317 tour_id9e2wdaxg                    SPAIN     25-44
## 1318 tour_idforna4kk UNITED STATES OF AMERICA     45-64
## 1319 tour_idjzew62hg UNITED STATES OF AMERICA       65+
## 1320 tour_idio5afn3q           CZECH REPUBLIC     25-44
## 1321 tour_idwvrezi60                    ITALY     45-64
## 1322 tour_idup2fbd7e                    ITALY     45-64
## 1323 tour_id0elkrsep                 PORTUGAL     25-44
## 1324 tour_id4gzsg5s6                      UAE     25-44
## 1326 tour_id1mf79n6z             SOUTH AFRICA     45-64
## 1327 tour_id4u7h5jwi                  GERMANY     45-64
## 1328 tour_idf9iqiww1           UNITED KINGDOM     18-24
## 1330 tour_iddbtoxn6g                    KENYA     25-44
## 1331 tour_id8vli9cgu                    CHINA     25-44
## 1332 tour_idy9grhxiv                  GERMANY     45-64
## 1333 tour_id07sxs206                   CANADA       65+
## 1334 tour_idj6dtpe2c                   UGANDA     25-44
## 1335 tour_id8ftps6ft                   UGANDA     25-44
## 1336 tour_idyucp999x UNITED STATES OF AMERICA     45-64
## 1337 tour_idv9nqwnah                   CANADA     25-44
## 1338 tour_idlf91vxdq UNITED STATES OF AMERICA     25-44
## 1339 tour_id2pdskfcq                  BELGIUM     25-44
## 1340 tour_idspe5iji8                   CANADA     45-64
## 1341 tour_id2q0rudyo                  BURUNDI     45-64
## 1342 tour_idvprcpoya                      UAE     45-64
## 1343 tour_idccrrp9kd                    ITALY     18-24
## 1345 tour_id456ww8jb                   ZAMBIA     25-44
## 1346 tour_id71w1f5k4           UNITED KINGDOM     18-24
## 1347 tour_idzuwo82q4                 MALAYSIA     45-64
## 1348 tour_iddlohvi5n                   RUSSIA     25-44
## 1349 tour_id9qcsf1z7             SOUTH AFRICA       65+
## 1350 tour_iddgw9tpfy UNITED STATES OF AMERICA       65+
## 1351 tour_id0tr4186m UNITED STATES OF AMERICA     18-24
## 1352 tour_idta7ikh4a                  GERMANY     18-24
## 1354 tour_idlixwr6ar                  GERMANY     25-44
## 1355 tour_idjg31ed2w           UNITED KINGDOM     18-24
## 1356 tour_idlokalqo3              NEW ZEALAND     25-44
## 1357 tour_id5w60bgfo                  DENMARK     45-64
## 1358 tour_iduty5ava5                  URUGUAY     25-44
## 1359 tour_idue6svy9n                  GERMANY     45-64
## 1360 tour_idqs2ta1op                  LEBANON     25-44
## 1361 tour_iddq4gxmud           UNITED KINGDOM     45-64
## 1362 tour_idj3nkcibv                      DRC     25-44
## 1363 tour_id4rfyjg0x                SINGAPORE     25-44
## 1364 tour_idg66j8p6j              SAUD ARABIA     18-24
## 1365 tour_idu564mhcy                   ZAMBIA     25-44
## 1366 tour_idri19wfo1                   UGANDA     25-44
## 1367 tour_idsh7gn8yb                   CANADA     18-24
## 1368 tour_id3ks6ugih                   FRANCE     45-64
## 1369 tour_idtufzdbk3                    ITALY     45-64
## 1370 tour_idiguqno5i                    ITALY     25-44
## 1371 tour_idyc1cgzfk                   ZAMBIA     25-44
## 1372 tour_idgho3i5tq                SRI LANKA     45-64
## 1373 tour_idx5bqr4q6 UNITED STATES OF AMERICA       65+
## 1374 tour_idk9i4eax3                    ITALY     25-44
## 1375 tour_idze3dmo9l UNITED STATES OF AMERICA     25-44
## 1376 tour_idfs6gcmz2                 COLOMBIA     18-24
## 1377 tour_id59806rdn                    JAPAN     45-64
## 1379 tour_idzsxgvdb0                    KENYA     25-44
## 1380 tour_idlk50meor                    INDIA     25-44
## 1381 tour_idtyx08tss UNITED STATES OF AMERICA       65+
## 1382 tour_idar3will4 UNITED STATES OF AMERICA     45-64
## 1383 tour_idro170869                  GERMANY     45-64
## 1385 tour_idb48glr0w                  GERMANY     18-24
## 1386 tour_idrm5uv5yy                   ZAMBIA     45-64
## 1387 tour_idywj9ah8c UNITED STATES OF AMERICA     45-64
## 1388 tour_ids4e3de8s UNITED STATES OF AMERICA       65+
## 1389 tour_idb4rrooex             SOUTH AFRICA     18-24
## 1390 tour_ider2h87ul                 ZIMBABWE     18-24
## 1391 tour_id4g2pdccm UNITED STATES OF AMERICA     18-24
## 1392 tour_id4k10x793                AUSTRALIA     25-44
## 1393 tour_idxslqeixt                    ITALY     45-64
## 1394 tour_id3uaeukbp                    KENYA     25-44
## 1395 tour_idpljce28x UNITED STATES OF AMERICA     45-64
## 1396 tour_id88ujssnw             SOUTH AFRICA     25-44
## 1397 tour_idinmerkyb                    ITALY     25-44
## 1398 tour_idj08rpz3m                    SPAIN     25-44
## 1400 tour_id7izbc70y               SWIZERLAND     25-44
## 1401 tour_id975mmg2h                  IRELAND       <18
## 1402 tour_id2wf0zhyp                  IRELAND     45-64
## 1403 tour_id0l8s8up7               SWIZERLAND     25-44
## 1404 tour_id2yof9j8f                    ITALY     25-44
## 1405 tour_ido93prenh                   ZAMBIA     25-44
## 1406 tour_id3bna610i UNITED STATES OF AMERICA       65+
## 1407 tour_idzum52svp                 PORTUGAL     25-44
## 1408 tour_id2um5tpw3 UNITED STATES OF AMERICA     45-64
## 1409 tour_idsw73rsn4                 ZIMBABWE     25-44
## 1410 tour_iduonrr9xm                 ETHIOPIA     25-44
## 1411 tour_ido0kbqvb4                    SPAIN     45-64
## 1412 tour_idxk3wvge0                   NORWAY     45-64
## 1413 tour_id3hodqxw8           UNITED KINGDOM     45-64
## 1414 tour_id7nido75k                  GERMANY     18-24
## 1415 tour_id8sb7ckdr                   FRANCE       65+
## 1416 tour_idiq6pv682                   ZAMBIA     25-44
## 1417 tour_idl5160z2w                    JAPAN       65+
## 1418 tour_idh6ddyg7c                   RWANDA     25-44
## 1420 tour_idf633tdt8                   SWEDEN     45-64
## 1421 tour_id3ify9eiv                   CANADA     45-64
## 1422 tour_idw5xadujj           UNITED KINGDOM     45-64
## 1423 tour_idxo6j20xk                    KENYA     45-64
## 1424 tour_id47b1e7st                    ITALY     45-64
## 1425 tour_idlhbdx4ba                 ZIMBABWE     45-64
## 1426 tour_idir6obfq9 UNITED STATES OF AMERICA     45-64
## 1428 tour_idst6d122w           UNITED KINGDOM     45-64
## 1429 tour_id7z2hg34v UNITED STATES OF AMERICA     45-64
## 1430 tour_ideoubok42             SOUTH AFRICA     18-24
## 1431 tour_iddx3qfa5d UNITED STATES OF AMERICA     18-24
## 1432 tour_idlp89t0cp UNITED STATES OF AMERICA       65+
## 1433 tour_id53hi9rtn                  BELGIUM     45-64
## 1434 tour_idp4vpoq0e UNITED STATES OF AMERICA     45-64
## 1435 tour_idsw10ejmp                    KENYA     18-24
## 1436 tour_idy9rxogxf                   FRANCE       65+
## 1437 tour_idf4s3u3og           UNITED KINGDOM     25-44
## 1438 tour_idmux0mx56                   ZAMBIA     25-44
## 1439 tour_idpaapyi2f UNITED STATES OF AMERICA       65+
## 1441 tour_idaaxi49zy                   UGANDA     45-64
## 1442 tour_idg6shn84e                    ITALY     25-44
## 1443 tour_id39dk5wss                   UGANDA     45-64
## 1444 tour_id0anc1688                  GERMANY     25-44
## 1445 tour_id0m3pse6b                  AUSTRIA     25-44
## 1446 tour_idraqermvb                  GERMANY     18-24
## 1447 tour_idylw165ci              NEW ZEALAND     45-64
## 1448 tour_idw974m04n                  AUSTRIA     45-64
## 1449 tour_idqit44sru           UNITED KINGDOM     25-44
## 1450 tour_idd2jcw2fv                   FRANCE     25-44
## 1451 tour_idwgw22d3j                    KENYA     45-64
## 1452 tour_id4j9tryjq                  GERMANY     45-64
## 1453 tour_idgc12pcys              NETHERLANDS     18-24
## 1454 tour_idtqpaebia                   FRANCE     45-64
## 1455 tour_id5xx3gps6           UNITED KINGDOM     25-44
## 1456 tour_idkszpn7u1 UNITED STATES OF AMERICA     45-64
## 1457 tour_idj90jbolu                    ITALY     18-24
## 1458 tour_idmwe8vyj6                   SWEDEN     18-24
## 1459 tour_idua7f8s3r UNITED STATES OF AMERICA     25-44
## 1460 tour_idgyqbtkvq                    JAPAN     25-44
## 1461 tour_idu231v52b           UNITED KINGDOM     18-24
## 1462 tour_idzbn3vwny UNITED STATES OF AMERICA       65+
## 1463 tour_idmpgkbqeu                   ISRAEL       65+
## 1464 tour_id4woy899e           UNITED KINGDOM       65+
## 1465 tour_ids1w9obk3 UNITED STATES OF AMERICA     45-64
## 1466 tour_idnmkxtc90 UNITED STATES OF AMERICA       65+
## 1467 tour_id1w2u9ivi                      DRC     18-24
## 1468 tour_ideudgizhq                      UAE     25-44
## 1469 tour_id3kcsv3qx                 ZIMBABWE     25-44
## 1470 tour_id1x3famzi                   ZAMBIA     25-44
## 1471 tour_idt03bj0g4                   ZAMBIA     25-44
## 1472 tour_id44d9wa1j UNITED STATES OF AMERICA     45-64
## 1473 tour_idwoyk4h4h UNITED STATES OF AMERICA     45-64
## 1474 tour_idbcrzqtrg           UNITED KINGDOM       65+
## 1475 tour_idddas8bnk                AUSTRALIA       <18
## 1476 tour_ids9grl3jp                    ITALY     25-44
## 1478 tour_iddyrjzecr                   ZAMBIA     25-44
## 1479 tour_iddn7oeghv                    CHINA     25-44
## 1480 tour_idg7e5pzvt UNITED STATES OF AMERICA     25-44
## 1481 tour_idlnfyjyg6           UNITED KINGDOM     45-64
## 1482 tour_idg99ogu7v                    KENYA     25-44
## 1483 tour_id9qnvvhv3 UNITED STATES OF AMERICA       65+
## 1484 tour_idok1ebtmf                    ITALY     25-44
## 1485 tour_id76pjwj1d                    ITALY     25-44
## 1486 tour_id44baj5n4                   MALAWI     25-44
## 1487 tour_id3g904741                    ITALY     45-64
## 1488 tour_idscclzkcn               SWIZERLAND     45-64
## 1490 tour_idn946zy5f               PHILIPINES     25-44
## 1491 tour_idxrpcheq4                   FRANCE     45-64
## 1492 tour_idsq35c33k UNITED STATES OF AMERICA     18-24
## 1493 tour_id1dkuyy2i                AUSTRALIA     25-44
## 1495 tour_idwsfroa2e UNITED STATES OF AMERICA     45-64
## 1496 tour_idps4h0rtd           UNITED KINGDOM     45-64
## 1497 tour_id03alzojb                    KENYA     18-24
## 1498 tour_idjx1wxh4w                 ZIMBABWE     25-44
## 1499 tour_idqfh9yt6a                  GERMANY     25-44
## 1500 tour_idyao8je23                    ITALY     45-64
## 1501 tour_idqwibubrp                    ITALY     25-44
## 1502 tour_idqvfao01c UNITED STATES OF AMERICA     45-64
## 1503 tour_idodxv4oqn                  ARMENIA     25-44
## 1504 tour_id03nwoiew                   ZAMBIA     25-44
## 1505 tour_idsgs0bdln                AUSTRALIA       65+
## 1506 tour_idcdsgy04t                    KENYA     45-64
## 1507 tour_idnfjwifm0 UNITED STATES OF AMERICA     45-64
## 1508 tour_idplwy2pum           UNITED KINGDOM     25-44
## 1509 tour_idi4k0f91j                   SWEDEN     25-44
## 1511 tour_idar1mxxg8           UNITED KINGDOM     25-44
## 1512 tour_idcxjyvi4k                  BELGIUM     45-64
## 1513 tour_id9tj5wlr3           UNITED KINGDOM     45-64
## 1514 tour_idbsi2i2n9           UNITED KINGDOM     18-24
## 1515 tour_idrnw26arh                    SPAIN     25-44
## 1516 tour_idcvgjbfti                    EGYPT     25-44
## 1517 tour_idlm9izxns                   CANADA     45-64
## 1518 tour_idr5bekih0                AUSTRALIA       65+
## 1519 tour_id58s3apjj                      UAE     45-64
## 1520 tour_idh839jnbv                  BELGIUM     25-44
## 1521 tour_iddrplj6ui                 SCOTLAND     45-64
## 1522 tour_idg13vvwja                    ITALY     45-64
## 1523 tour_id1tdvrgu0              NEW ZEALAND     45-64
## 1524 tour_id592bk4u2                  GERMANY     45-64
## 1525 tour_idm6yg0ba3                   MEXICO     45-64
## 1526 tour_idfw4t46qo                 MALAYSIA     25-44
## 1527 tour_id6sg9e1ce                AUSTRALIA       65+
## 1528 tour_idy0gcwjgf UNITED STATES OF AMERICA     25-44
## 1529 tour_id4jndx1xm                    KENYA     25-44
## 1530 tour_idcnzfvr8i UNITED STATES OF AMERICA       65+
## 1531 tour_idkxrbntqr              NETHERLANDS     25-44
## 1532 tour_ide4mgnu9j                   ZAMBIA     25-44
## 1533 tour_idmtwofgxl                   UGANDA     25-44
## 1534 tour_idquottxsz                   UGANDA     25-44
## 1536 tour_id38m3rik6           UNITED KINGDOM     45-64
## 1537 tour_idnnoofob9                   KUWAIT     25-44
## 1538 tour_idsg1ix5qt                   UGANDA     45-64
## 1539 tour_idptrb9blw                  AUSTRIA     45-64
## 1540 tour_id57n21ow9                  BELGIUM     45-64
## 1541 tour_iduw25sx3g                    ITALY     25-44
## 1542 tour_idwgvq2hvc                   FRANCE     45-64
## 1543 tour_ida1lhy648                   CANADA     25-44
## 1544 tour_idnh5jku0e                    CONGO     25-44
## 1545 tour_id69xxa6kg           UNITED KINGDOM       <18
## 1546 tour_idqygc6ixd                  GERMANY     18-24
## 1547 tour_idsxotw8ed           UNITED KINGDOM     25-44
## 1548 tour_idzoxpc5zl                  BURUNDI     25-44
## 1549 tour_idbkh83odm                   FRANCE     45-64
## 1550 tour_id7qdg3o2c                AUSTRALIA     25-44
## 1551 tour_id5iuwod4l                  GERMANY     45-64
## 1552 tour_idxu8fye18                    CHINA     25-44
## 1553 tour_idq2g0nuqz                   SWEDEN     25-44
## 1554 tour_id1g1gvjjr                  GERMANY     45-64
## 1555 tour_idv5i1wtim                    ITALY     45-64
## 1556 tour_id982m5b43                    ITALY     25-44
## 1557 tour_idwfoehkau UNITED STATES OF AMERICA     25-44
## 1558 tour_id7ut00mh9                    SPAIN     25-44
## 1559 tour_idoz4s8ore                   FRANCE     45-64
## 1560 tour_idndh827w2              NETHERLANDS     25-44
## 1561 tour_idfhsnqzre                    ITALY     45-64
## 1562 tour_idku2fcb5l UNITED STATES OF AMERICA     45-64
## 1564 tour_idq593s3qt           UNITED KINGDOM     25-44
## 1565 tour_idcpyk14b5                    SUDAN     45-64
## 1566 tour_idleco9pz3 UNITED STATES OF AMERICA       65+
## 1567 tour_ids0og3zvx                    KENYA     25-44
## 1568 tour_idce4lbsln                  GERMANY     45-64
## 1569 tour_idd46n29we                  BURUNDI     25-44
## 1570 tour_idam4wgs43                 ZIMBABWE     25-44
## 1571 tour_idvqxrlbbz                   CANADA     25-44
## 1574 tour_idic1gctkp UNITED STATES OF AMERICA     45-64
## 1575 tour_idguqdsdv9           UNITED KINGDOM     25-44
## 1576 tour_id4yhk79ql UNITED STATES OF AMERICA     45-64
## 1578 tour_id8ftcla2v UNITED STATES OF AMERICA     45-64
## 1579 tour_idwco9forb                   CANADA     45-64
## 1580 tour_idzg0rcbkb                    ITALY     45-64
## 1581 tour_id8foyeq0y                    ITALY     45-64
## 1582 tour_idavh11ux2                    KENYA     25-44
## 1584 tour_ida3bafrkb                   ZAMBIA     25-44
## 1585 tour_idf86734vl UNITED STATES OF AMERICA     45-64
## 1586 tour_idlppp1ufo                    ITALY     45-64
## 1587 tour_id4idg2erg                  BELGIUM     25-44
## 1588 tour_idvqnwf0s7                 ZIMBABWE     25-44
## 1589 tour_id1d9l8dgn              NETHERLANDS     45-64
## 1590 tour_id8cy9yxto UNITED STATES OF AMERICA     45-64
## 1591 tour_idj7unuwn2 UNITED STATES OF AMERICA     25-44
## 1592 tour_idyp54adau                   FRANCE     25-44
## 1593 tour_id05tmm7mg                   CANADA     25-44
## 1594 tour_id69cdddia UNITED STATES OF AMERICA     45-64
## 1595 tour_idhz523nal                  BURUNDI     18-24
## 1596 tour_idp8t5g3ot                    ITALY     45-64
## 1597 tour_id6sddd2ya                 ZIMBABWE     25-44
## 1598 tour_id3m9u9nwn UNITED STATES OF AMERICA     45-64
## 1600 tour_idagiyulkp                    ITALY     25-44
## 1601 tour_id9ggl9poz UNITED STATES OF AMERICA     45-64
## 1602 tour_id61xsy8as                    JAPAN     25-44
## 1603 tour_id1seb1mzl             SOUTH AFRICA     45-64
## 1604 tour_idxw8u9l8t                    KENYA     45-64
## 1605 tour_idyo71wzmo                    CHINA     25-44
## 1606 tour_id5tdmx1zk           UNITED KINGDOM     45-64
## 1607 tour_idslvgzgn9              SAUD ARABIA     25-44
## 1608 tour_idkmulcnoi           UNITED KINGDOM     18-24
## 1609 tour_idhq6xnkyj                  GERMANY     45-64
## 1610 tour_id1e2e1n08                   FRANCE     25-44
## 1611 tour_idj9qd1rit                   FRANCE     25-44
## 1612 tour_id0tkonbip                  GERMANY     45-64
## 1613 tour_idljmnezio                   CANADA     18-24
## 1614 tour_id36yxom0e              NETHERLANDS     45-64
## 1615 tour_idvvb96dfz             SOUTH AFRICA     25-44
## 1616 tour_idd05qohq6                   UGANDA     25-44
## 1617 tour_idw6px1tbu                    ITALY     25-44
## 1618 tour_idmh3ykh2s             SOUTH AFRICA     45-64
## 1619 tour_idnbbl5epq UNITED STATES OF AMERICA     25-44
## 1620 tour_idefezwcdi                    SPAIN     25-44
## 1621 tour_idlpvj4z1g                AUSTRALIA     18-24
## 1622 tour_idsi0xo4j7                   ZAMBIA     25-44
## 1624 tour_id1wllwx1q           UNITED KINGDOM     18-24
## 1625 tour_idv6lsdbud                 ETHIOPIA     45-64
## 1626 tour_idx6yd4zap UNITED STATES OF AMERICA     45-64
## 1627 tour_id0n327fm0                   UGANDA     25-44
## 1629 tour_ids1fifq7q             SOUTH AFRICA     25-44
## 1630 tour_id2b8kpec3                AUSTRALIA     25-44
## 1631 tour_idnaclk1sf                     OMAN     45-64
## 1633 tour_idehc6vt0p                   FRANCE     25-44
## 1634 tour_id60qgm69u                AUSTRALIA     45-64
## 1635 tour_idvkeoxgjq                   FRANCE     25-44
## 1636 tour_idowm59o50                    ITALY     45-64
## 1637 tour_idmgax0x5a           UNITED KINGDOM     25-44
## 1638 tour_idcr9nemca                  BELGIUM     45-64
## 1640 tour_ida8ixygca UNITED STATES OF AMERICA     25-44
## 1641 tour_idjmwmp5hd UNITED STATES OF AMERICA     25-44
## 1642 tour_idi4lrm26t           UNITED KINGDOM     25-44
## 1643 tour_idcg96664n                    ITALY     45-64
## 1644 tour_idyn3x8lf1                  BELGIUM       65+
## 1645 tour_id4s3y77ln                  BELGIUM     45-64
## 1646 tour_idh2c1l4r4             SOUTH AFRICA     25-44
## 1647 tour_idsi02asma               MADAGASCAR     25-44
## 1648 tour_idw2vzt9w8                   CANADA     45-64
## 1649 tour_idmxkelxqq UNITED STATES OF AMERICA     45-64
## 1651 tour_idixbcdnka                 ZIMBABWE     25-44
## 1652 tour_idfjmxb219             SOUTH AFRICA     25-44
## 1653 tour_idwiih4xdi UNITED STATES OF AMERICA     18-24
## 1654 tour_id5o2sbvwe                    KENYA     25-44
## 1655 tour_idbdsh8d7f               SWIZERLAND     25-44
## 1656 tour_idpnl6qb3o                   FRANCE     45-64
## 1657 tour_idcn40wuly               SWIZERLAND     25-44
## 1658 tour_id3vf6up9g           UNITED KINGDOM     25-44
## 1659 tour_idw9trps53                  GERMANY     45-64
## 1662 tour_idqazqxrgc                 ETHIOPIA     25-44
## 1663 tour_idv1e2chu1                   FRANCE     45-64
## 1664 tour_id2lbbs99o                   ZAMBIA     25-44
## 1665 tour_id9py8d8ak                 PORTUGAL     25-44
## 1666 tour_idmvtkdlu5           UNITED KINGDOM     25-44
## 1667 tour_idfxav6cnp                   FRANCE     25-44
## 1669 tour_idubxs7h6m                    JAPAN     18-24
## 1670 tour_idd04r1uup UNITED STATES OF AMERICA     25-44
## 1671 tour_idzhkuxx12                    KENYA     25-44
## 1672 tour_idwi3f2lp2           UNITED KINGDOM     25-44
## 1673 tour_idvkig2xjv UNITED STATES OF AMERICA     45-64
## 1674 tour_idjqnuv8us     UNITED ARAB EMIRATES       65+
## 1675 tour_idcpo1d38y           UNITED KINGDOM     45-64
## 1676 tour_idm1yuhj22                    SPAIN     18-24
## 1677 tour_idyey9khcc UNITED STATES OF AMERICA     25-44
## 1678 tour_id8j42k4op UNITED STATES OF AMERICA     25-44
## 1679 tour_id86w5oidv                   ZAMBIA     18-24
## 1680 tour_iduj7lqfp2                    ITALY     25-44
## 1681 tour_id8ei13ji4 UNITED STATES OF AMERICA     45-64
## 1682 tour_id7opy5ttz                   ZAMBIA     25-44
## 1683 tour_id5uqwjlm3                 ZIMBABWE     25-44
## 1684 tour_idmywntlrk                    INDIA     25-44
## 1685 tour_idqdbbox2e             SOUTH AFRICA     45-64
## 1687 tour_idurzqyf9h              NETHERLANDS     45-64
## 1688 tour_id9550ww9c                   SWEDEN     25-44
## 1689 tour_idcdw0fkya                   CANADA       65+
## 1690 tour_idi1t98ru4                  BELGIUM     18-24
## 1691 tour_idezqqnz1k                      UAE     45-64
## 1692 tour_id2ss34hd4                    ITALY     45-64
## 1693 tour_idk79p70d2               SWIZERLAND     45-64
## 1694 tour_id2n6gsrav                   ZAMBIA     25-44
## 1695 tour_idrvvj5yr0                    KENYA     45-64
## 1696 tour_idk8fpn0on                 THAILAND     45-64
## 1697 tour_idnxkpymrf                  FINLAND     25-44
## 1698 tour_id0ghnu6ag UNITED STATES OF AMERICA     45-64
## 1699 tour_idlpe6i2a8                AUSTRALIA     25-44
## 1700 tour_idkyj0jicq              NETHERLANDS     25-44
## 1701 tour_idvin1rmaz                   FRANCE     45-64
## 1702 tour_idvb4wsggu                 MALAYSIA     25-44
## 1703 tour_id3a2wxaez                AUSTRALIA     25-44
## 1704 tour_idzv5sp534                  BURUNDI     25-44
## 1705 tour_idd600tpj8 UNITED STATES OF AMERICA     45-64
## 1706 tour_idjmiko0fm             SOUTH AFRICA     25-44
## 1707 tour_idfvglsqxp                  GERMANY     25-44
## 1708 tour_idsxvu9ak7           UNITED KINGDOM     45-64
## 1709 tour_id15lf8pvt                   FRANCE     45-64
## 1710 tour_idva283wb3                  AUSTRIA     45-64
## 1711 tour_idk27s451n                AUSTRALIA     18-24
## 1712 tour_id7nq20a7x             SOUTH AFRICA     45-64
## 1713 tour_idvsgu49dh                 PORTUGAL     18-24
## 1714 tour_id4q79n5g4               SWIZERLAND     45-64
## 1715 tour_id1naz1x9e                   FRANCE     25-44
## 1716 tour_idmub9fho0                   MALAWI     18-24
## 1717 tour_idwh9c1hui                SRI LANKA       65+
## 1718 tour_idyf1zlivn                   GREECE     45-64
## 1719 tour_idvko0frmx                  GERMANY     45-64
## 1720 tour_id3y52wvkh                 ZIMBABWE     25-44
## 1721 tour_id943g3p2h                      DRC     18-24
## 1723 tour_iddn4he2ut                  GERMANY     45-64
## 1724 tour_id54sicbd5               SWIZERLAND     25-44
## 1725 tour_idsm3tv7ym             SOUTH AFRICA     45-64
## 1726 tour_id87o26ade     UNITED ARAB EMIRATES     45-64
## 1727 tour_idjpoupxiu                   CANADA     45-64
## 1728 tour_id3symw7zq                   SERBIA     25-44
## 1729 tour_idysm7piee                AUSTRALIA       65+
## 1730 tour_ids54e3fkx                    ITALY     18-24
## 1731 tour_id1uvvg3tk                   BRAZIL     25-44
## 1732 tour_id7vuscj4x                    KENYA     45-64
## 1733 tour_idfcuhlafp                    KENYA     25-44
## 1734 tour_idqoijjyia                 ZIMBABWE     25-44
## 1735 tour_idxqsryehh UNITED STATES OF AMERICA     45-64
## 1736 tour_id7rroa14v                    ITALY     25-44
## 1737 tour_id7gpy1p7t UNITED STATES OF AMERICA     45-64
## 1738 tour_id8pyu5cw0                   UGANDA     25-44
## 1739 tour_id88a6bkbf           UNITED KINGDOM     18-24
## 1740 tour_idahtawr74 UNITED STATES OF AMERICA     45-64
## 1741 tour_idvb0y6mm9 UNITED STATES OF AMERICA     25-44
## 1742 tour_id19rnbteo UNITED STATES OF AMERICA       65+
## 1743 tour_idopux347o           UNITED KINGDOM     18-24
## 1744 tour_idlmda99yx                   RWANDA     18-24
## 1745 tour_idhf0udbd4           UNITED KINGDOM     25-44
## 1746 tour_idtfqvpsyx UNITED STATES OF AMERICA     18-24
## 1747 tour_idvhhpfy0m UNITED STATES OF AMERICA     45-64
## 1748 tour_id26z7q5ms                AUSTRALIA     45-64
## 1749 tour_id812e3f4v UNITED STATES OF AMERICA     25-44
## 1750 tour_id6dn1q2tf                    SPAIN     25-44
## 1751 tour_id79rzzkrp                 ZIMBABWE     25-44
## 1752 tour_id0tijjzlh           UNITED KINGDOM     25-44
## 1753 tour_id8qie2e8o                    ITALY     25-44
## 1754 tour_idh4jjwx7a                  IRELAND     25-44
## 1756 tour_idbsoda6nz                   FRANCE     45-64
## 1757 tour_idspjsnb6u                    KENYA     25-44
## 1758 tour_id8skbc1p2           UNITED KINGDOM     25-44
## 1759 tour_idfckdqisj     UNITED ARAB EMIRATES     45-64
## 1760 tour_idhugj5eq3                  GERMANY     45-64
## 1761 tour_ideiqogtfn                   SERBIA     25-44
## 1762 tour_id35w0u1um                    ITALY     25-44
## 1763 tour_id9fnd9ra0             SOUTH AFRICA     45-64
## 1764 tour_idepr959da                   CANADA     25-44
## 1765 tour_idas96yuc3              NETHERLANDS     45-64
## 1766 tour_idmsyqumn9                 PAKISTAN     25-44
## 1768 tour_idofhv7cjn UNITED STATES OF AMERICA     18-24
## 1769 tour_ide6cfw6z4             SOUTH AFRICA     25-44
## 1770 tour_idjvwj4tr9                AUSTRALIA     25-44
## 1771 tour_id2gd2eqb5                  GERMANY       65+
## 1772 tour_id9tz595df UNITED STATES OF AMERICA     25-44
## 1773 tour_id5jfihm6e UNITED STATES OF AMERICA       65+
## 1774 tour_id772si9y1 UNITED STATES OF AMERICA     45-64
## 1775 tour_idjsz03iys UNITED STATES OF AMERICA       65+
## 1776 tour_id8xrlx8x9                    ITALY     18-24
## 1777 tour_idjk616cnf                  GERMANY     18-24
## 1778 tour_id68yzlxtb              NETHERLANDS     25-44
## 1779 tour_idp4nhnx06              NETHERLANDS     25-44
## 1780 tour_idnmhvpbmh UNITED STATES OF AMERICA     45-64
## 1781 tour_id62ralu0h                   RUSSIA     18-24
## 1782 tour_idczjmlpra                  GERMANY     18-24
## 1783 tour_ididht9c38                   UGANDA     25-44
## 1784 tour_idvmrp39sg              NETHERLANDS       65+
## 1785 tour_idprzoaw9l                   RWANDA     25-44
## 1786 tour_idivxlg17b UNITED STATES OF AMERICA     18-24
## 1787 tour_iddwkr0x0k             SOUTH AFRICA     18-24
## 1788 tour_idz7lff4zg UNITED STATES OF AMERICA     45-64
## 1789 tour_idhob61lid                    ITALY     18-24
## 1790 tour_id7g88s3it                 ZIMBABWE     25-44
## 1791 tour_id47rlfm31                    INDIA     25-44
## 1792 tour_idsj4osn7e                    INDIA     25-44
## 1793 tour_idfewt64qk                    SPAIN     45-64
## 1794 tour_id2qqjzwew                   ZAMBIA     25-44
## 1795 tour_id9teqbddt                   CANADA     18-24
## 1796 tour_idjf7dii9k           UNITED KINGDOM     45-64
## 1797 tour_idlsdqjkik UNITED STATES OF AMERICA     25-44
## 1798 tour_idypl1xchm UNITED STATES OF AMERICA     45-64
## 1799 tour_idp4k1ivdb                  GERMANY     25-44
## 1801 tour_idkgp5tmet                    ITALY     25-44
## 1802 tour_idydjd61w8                    KENYA     45-64
## 1803 tour_id4odt94rc                 ZIMBABWE     45-64
## 1804 tour_idav51z6ye UNITED STATES OF AMERICA       65+
## 1805 tour_id2vmi4stq                   BRAZIL     25-44
## 1806 tour_id2ps7ppel           UNITED KINGDOM     25-44
## 1808 tour_idlh6x8yuk                  GERMANY     25-44
## 1809 tour_idsws4hal4 UNITED STATES OF AMERICA       65+
## 1810 tour_idas6e9v5v UNITED STATES OF AMERICA     45-64
## 1811 tour_idq1nd2oiq                   SWEDEN     45-64
## 1812 tour_idu0se2ets                    SPAIN     18-24
## 1813 tour_idvnyrdin0                  BELGIUM     45-64
## 1814 tour_idaavbtust                     OMAN     45-64
## 1815 tour_id57kj4ln6                      UAE     45-64
## 1816 tour_idtvfr799f UNITED STATES OF AMERICA     18-24
## 1817 tour_ids35bsj87             SOUTH AFRICA     45-64
## 1818 tour_id1pn3zu72                    ITALY     25-44
## 1819 tour_ido42v0zxb UNITED STATES OF AMERICA       65+
## 1820 tour_idlju21ybv           UNITED KINGDOM     18-24
## 1821 tour_idjj3us7cx                 ZIMBABWE     25-44
## 1822 tour_idb95wqiku                AUSTRALIA       65+
## 1823 tour_idyhid16rv                   UGANDA     25-44
## 1824 tour_ideorglbrj                  GERMANY     45-64
## 1825 tour_idwdcyuble                    ITALY     45-64
## 1826 tour_idy2ka5c8t                   UGANDA     25-44
## 1827 tour_id0xr0nck9           UNITED KINGDOM     25-44
## 1828 tour_iduiis95ds                    SPAIN     25-44
## 1830 tour_id56fyyj02                    ITALY     45-64
## 1831 tour_idb5w1vng3 UNITED STATES OF AMERICA     45-64
## 1832 tour_id3r3uf9uf                   UGANDA     25-44
## 1833 tour_idg1rg74mw UNITED STATES OF AMERICA     25-44
## 1834 tour_idc4asumc5                   CANADA     25-44
## 1835 tour_id44u3zkj8                    SPAIN       65+
## 1836 tour_idkb3rxfut             SOUTH AFRICA     25-44
## 1837 tour_idy5r6p7w1             SOUTH AFRICA     45-64
## 1838 tour_idj4vea28r           UNITED KINGDOM     25-44
## 1839 tour_idhi8v6lpo                AUSTRALIA     45-64
## 1840 tour_idvk8m23i7           UNITED KINGDOM     25-44
## 1841 tour_id8d8ue3lc           UNITED KINGDOM     25-44
## 1842 tour_idlnflh2zi                  GERMANY     18-24
## 1843 tour_idn0cbs4n1           UNITED KINGDOM     25-44
## 1844 tour_id1d70snx7                    KENYA     25-44
## 1845 tour_ididpk4rwa                   UGANDA     25-44
## 1846 tour_id8en1ebif                    ITALY     25-44
## 1847 tour_id4ngjgo76           UNITED KINGDOM     45-64
## 1848 tour_id0o76o4vx                   UGANDA     18-24
## 1849 tour_idss416aps                  GERMANY     25-44
## 1850 tour_idrg89wyhg                 PORTUGAL     25-44
## 1851 tour_idt2lol5ay UNITED STATES OF AMERICA     45-64
## 1852 tour_idyu5c3czm                   MALAWI     25-44
## 1853 tour_idz8ti87ww                   FRANCE     45-64
## 1854 tour_idpsdwnbdo           UNITED KINGDOM     25-44
## 1855 tour_id4hjd86i6                   FRANCE     45-64
## 1856 tour_id2ig1xnt9 UNITED STATES OF AMERICA       65+
## 1857 tour_idww9eovdo                  FINLAND     25-44
## 1858 tour_idb0esttbx                   CANADA     25-44
## 1859 tour_id2ns12zf2                AUSTRALIA     18-24
## 1860 tour_idfmudhxq4                    ITALY     45-64
## 1861 tour_idkkjvwh5d                    JAPAN       65+
## 1862 tour_id87y2t2vx           UNITED KINGDOM     25-44
## 1863 tour_id3eos510p UNITED STATES OF AMERICA     25-44
## 1864 tour_id2gd2f6mp                    ITALY     45-64
## 1865 tour_idm1jm3sjv                    INDIA     45-64
## 1866 tour_id8rm6i2xo                AUSTRALIA     25-44
## 1867 tour_idtqijk7sn                    ITALY     25-44
## 1868 tour_idlhwa2ao8     UNITED ARAB EMIRATES     25-44
## 1870 tour_idudy51k3z UNITED STATES OF AMERICA       65+
## 1871 tour_id1ee7xqxm               SWIZERLAND       65+
## 1872 tour_idxfyuwuye             SOUTH AFRICA     25-44
## 1873 tour_id9r95mcyd UNITED STATES OF AMERICA       65+
## 1874 tour_id61ye2tsi                   CANADA     25-44
## 1875 tour_id1obfhrmr                 ZIMBABWE     25-44
## 1876 tour_id5oqz4x3y           UNITED KINGDOM     45-64
## 1877 tour_id6p2ggjfd                  GERMANY     45-64
## 1878 tour_idcppolcc2                    ITALY     25-44
## 1879 tour_idwqioabdl           UNITED KINGDOM     25-44
## 1880 tour_idm2h2idqk           UNITED KINGDOM     25-44
## 1881 tour_idu51smbbt                    KENYA     25-44
## 1882 tour_ids5xe0f4r                  GERMANY     25-44
## 1883 tour_idezym17r6 UNITED STATES OF AMERICA       65+
## 1884 tour_idnvs6o4ez                  GERMANY       65+
## 1885 tour_idm1qc4tu8                   FRANCE     25-44
## 1886 tour_idt59va8tx                 ZIMBABWE     45-64
## 1887 tour_id6bjdv0v7                   CANADA       <18
## 1888 tour_idd6al1oa9             SOUTH AFRICA     25-44
## 1889 tour_idmxrpsigx                   FRANCE     25-44
## 1890 tour_idi2y1t1s5 UNITED STATES OF AMERICA     25-44
## 1891 tour_idpkktcc9o                    INDIA     25-44
## 1892 tour_id67n0mtk4                   ZAMBIA     25-44
## 1893 tour_idxos2xelk UNITED STATES OF AMERICA     18-24
## 1894 tour_idqixmtmpd           UNITED KINGDOM     18-24
## 1895 tour_idu9y0gysi                AUSTRALIA     25-44
## 1896 tour_idlfmskg0d                   RWANDA     25-44
## 1897 tour_idzfuxzve9                AUSTRALIA     45-64
## 1898 tour_idh0evxcru                   ZAMBIA     25-44
## 1899 tour_idecxl6qvk           UNITED KINGDOM     18-24
## 1900 tour_idzbwqfscm                   RWANDA     25-44
## 1901 tour_id3fg6ftd3                   FRANCE     25-44
## 1902 tour_idw7b4s461                    ITALY     25-44
## 1903 tour_id78hvglq1           UNITED KINGDOM     25-44
## 1904 tour_id1lqdmcxz                   RUSSIA     25-44
## 1905 tour_idn4u722wt              NETHERLANDS     25-44
## 1906 tour_idkle00z38                   UGANDA     25-44
## 1907 tour_idre20pvlx UNITED STATES OF AMERICA     25-44
## 1908 tour_idldiyl540 UNITED STATES OF AMERICA     45-64
## 1909 tour_id56jm2tyi                    ITALY     45-64
## 1912 tour_id2oprxnbg                   SWEDEN     25-44
## 1913 tour_idtgiyo6q4                  DENMARK     25-44
## 1914 tour_idpxy83iw9                   UGANDA     45-64
## 1915 tour_idz0phh6fh UNITED STATES OF AMERICA     25-44
## 1916 tour_id9etb74ps             SOUTH AFRICA     25-44
## 1917 tour_idi89rggeg                   FRANCE     25-44
## 1918 tour_idr4rw25m7                  DENMARK     45-64
## 1919 tour_id8yea5lv5                  BELGIUM     25-44
## 1920 tour_idpu007767                   CANADA     45-64
## 1921 tour_idfep1qoxm                 PAKISTAN     25-44
## 1922 tour_idf4blh8cx                  IRELAND     25-44
## 1923 tour_id8v9m0e28                COSTARICA     18-24
## 1924 tour_idhu0c73w2                  GERMANY     45-64
## 1925 tour_idl2lez80j             SOUTH AFRICA     25-44
## 1926 tour_idey5hi9s5                   POLAND     25-44
## 1927 tour_idigy0febz                  GERMANY     25-44
## 1928 tour_idaytl3u19                    ITALY     45-64
## 1929 tour_idpq3yrcgl              SAUD ARABIA     25-44
## 1931 tour_id2h4txbfy UNITED STATES OF AMERICA     45-64
## 1932 tour_iddy5lviij UNITED STATES OF AMERICA     45-64
## 1933 tour_idxsz0gb8y                 ZIMBABWE     18-24
## 1934 tour_idfmy2dyg7                   FRANCE     25-44
## 1935 tour_idd1zx7qer                   ZAMBIA     25-44
## 1936 tour_idup4lzu26                    ITALY     18-24
## 1937 tour_idilngxhu9           UNITED KINGDOM     45-64
## 1938 tour_idz4qhhd6c                  BURUNDI     18-24
## 1939 tour_id5bd5amw6                  GERMANY     25-44
## 1940 tour_idv47lu8jk                  BELGIUM     45-64
## 1941 tour_id9wbtbez6                  BELGIUM     45-64
## 1942 tour_idmcoxq6pd             SOUTH AFRICA     25-44
## 1943 tour_idz144q2de                   FRANCE     25-44
## 1945 tour_id6c6iat9r                   FRANCE     18-24
## 1946 tour_idi09q5ebr                    ITALY     25-44
## 1947 tour_idgde8e8fb                    ITALY     18-24
## 1948 tour_idr7p9qz3x                    ITALY       65+
## 1949 tour_idh1cjr09d                    ITALY     45-64
## 1950 tour_id69a3zokb             SOUTH AFRICA     25-44
## 1951 tour_idv2qx2cnt                    ITALY     25-44
## 1952 tour_id7epknuhk           UNITED KINGDOM     18-24
## 1953 tour_idybnix94g                  GERMANY     18-24
## 1954 tour_idy5718bt9              NETHERLANDS     45-64
## 1955 tour_idnp3ocxp0                    INDIA     25-44
## 1956 tour_id1s3rndtx                AUSTRALIA     25-44
## 1957 tour_idlg6tu62n                   RWANDA     18-24
## 1958 tour_idzt13o1ce                    ITALY     45-64
## 1959 tour_idheaw8utf                    CHINA       65+
## 1960 tour_idxfcmge6x                AUSTRALIA     25-44
## 1961 tour_idatfttz7p                    INDIA     25-44
## 1962 tour_idznwtfnwq                 SCOTLAND     18-24
## 1963 tour_idpovedznz                    ITALY     45-64
## 1964 tour_idxpbxg9tn                    ITALY       65+
## 1965 tour_idu82jxn6b                   FRANCE     45-64
## 1966 tour_idoye1a9rj UNITED STATES OF AMERICA       65+
## 1967 tour_id54fxc9o1                   MEXICO     25-44
## 1968 tour_idzz3e0hnt                   FRANCE     45-64
## 1969 tour_idn78zbsl4 UNITED STATES OF AMERICA       65+
## 1970 tour_id3nhjk6ud                   ZAMBIA     25-44
## 1972 tour_idfya2udqe                    JAPAN     45-64
## 1973 tour_idsr0rk32k                     OMAN     45-64
## 1974 tour_idy6qzx9el                  GERMANY     25-44
## 1975 tour_idhcw1uc87                   FRANCE     25-44
## 1976 tour_idhn9hjrlc                    ITALY     45-64
## 1977 tour_idu321xxiz           UNITED KINGDOM     45-64
## 1978 tour_idoy5hdrkc                  AUSTRIA     18-24
## 1979 tour_id7oi6lhpl                   UGANDA     45-64
## 1980 tour_idwv89oy9g                   CANADA       65+
## 1981 tour_idofhw44rf               SWIZERLAND     45-64
## 1982 tour_idwk0x8q1c                   CANADA     45-64
## 1983 tour_idzodnegux UNITED STATES OF AMERICA     18-24
## 1984 tour_idnks43evt                    KOREA     18-24
## 1985 tour_idux70jvxp                AUSTRALIA     25-44
## 1986 tour_id0d2v3x7d             SOUTH AFRICA     25-44
## 1987 tour_idnv523vpe           UNITED KINGDOM     25-44
## 1988 tour_idlt8li38s UNITED STATES OF AMERICA     45-64
## 1990 tour_iddm698wby                    INDIA     25-44
## 1992 tour_idt8j11zb4                    CONGO     25-44
## 1993 tour_idn866k2s2                   UGANDA     45-64
## 1994 tour_idowzgeulf             SOUTH AFRICA       65+
## 1995 tour_id580yyhbl                    CHINA       65+
## 1996 tour_idoev0r80f           UNITED KINGDOM     25-44
## 1998 tour_id4bc0dkmo               SWIZERLAND     45-64
## 1999 tour_id8ecgp32m                   ZAMBIA       65+
## 2000 tour_idfwf5ae5s                  BELGIUM     18-24
## 2001 tour_idiawrpr9c UNITED STATES OF AMERICA       65+
## 2002 tour_idernh6fex                   UGANDA     25-44
## 2003 tour_idkmrb97km                  GERMANY     25-44
## 2004 tour_idcxkdop7u                  AUSTRIA     45-64
## 2005 tour_idu3a9q0d9                AUSTRALIA     25-44
## 2006 tour_idjfbe3loj           UNITED KINGDOM     45-64
## 2007 tour_idtajz22o9                      UAE     45-64
## 2008 tour_iduo0xkamc           UNITED KINGDOM     25-44
## 2009 tour_id9vrf25xs                   CANADA     25-44
## 2010 tour_idimpctis7                    ITALY     25-44
## 2011 tour_idl7vd25w8           UNITED KINGDOM     25-44
## 2014 tour_id9zx6l02b           UNITED KINGDOM     25-44
## 2015 tour_idilov3jgu                    ITALY     25-44
## 2016 tour_id8or4akjo                    ITALY     18-24
## 2018 tour_idoafs7zn3                    KENYA     25-44
## 2019 tour_idhi5ktq9v                   POLAND     18-24
## 2020 tour_id9qwn6r15                   RWANDA     25-44
## 2021 tour_idy3lrlddv                      UAE     45-64
## 2022 tour_idi9x5lnsx                     MALT     25-44
## 2023 tour_id8hck30ft                    ITALY     25-44
## 2024 tour_idexb8mzpl UNITED STATES OF AMERICA     25-44
## 2025 tour_id7gk5etn8                  AUSTRIA     45-64
## 2026 tour_idgf5xeoh5                   ZAMBIA     45-64
## 2027 tour_iddm24fiud                    KOREA     25-44
## 2028 tour_idpee4gjfi                  FINLAND     45-64
## 2029 tour_id7kuyicbc                  BURUNDI     25-44
## 2030 tour_id2gfcag5i                   ZAMBIA     25-44
## 2031 tour_idcjey54wb UNITED STATES OF AMERICA     45-64
## 2032 tour_id1d1abu97 UNITED STATES OF AMERICA     25-44
## 2033 tour_id4trpn35m                    ITALY     25-44
## 2034 tour_idfu0e11ej UNITED STATES OF AMERICA     25-44
## 2036 tour_idabr960mc                   NORWAY     45-64
## 2037 tour_idypaeq0h6                   FRANCE     45-64
## 2038 tour_idndgsobpl                AUSTRALIA     45-64
## 2039 tour_id2kae8wql UNITED STATES OF AMERICA       65+
## 2040 tour_idh9n6ss28              NETHERLANDS     25-44
## 2041 tour_id5i86i4e6                    ITALY     18-24
## 2042 tour_idvbfagvfz                   FRANCE     18-24
## 2043 tour_iddfz8qgio               SWIZERLAND     45-64
## 2044 tour_idvrcmf1es                    CHINA     25-44
## 2045 tour_idtdof7ejm           UNITED KINGDOM     18-24
## 2046 tour_id394ipnkj           UNITED KINGDOM     25-44
## 2048 tour_idmvk9b5pl               PHILIPINES     25-44
## 2049 tour_id29juo9rr                    INDIA     25-44
## 2050 tour_idzynpbera                AUSTRALIA     25-44
## 2052 tour_id5togikw7             SOUTH AFRICA     25-44
## 2053 tour_idrkrg9z73                   RUSSIA     25-44
## 2054 tour_id6uawzrth                   ZAMBIA     25-44
## 2055 tour_idfzk0thk6 UNITED STATES OF AMERICA     25-44
## 2057 tour_idawp89x69 UNITED STATES OF AMERICA       65+
## 2058 tour_id638nx7f6             SOUTH AFRICA     45-64
## 2059 tour_idytzt73bt UNITED STATES OF AMERICA     45-64
## 2060 tour_id4ngwytm4                    ITALY     25-44
## 2061 tour_idl2one6by UNITED STATES OF AMERICA     25-44
## 2062 tour_idqykq2ltu                    ITALY     25-44
## 2063 tour_id2pxpttip                  GERMANY     45-64
## 2064 tour_idfdg7gqxk                    SPAIN     45-64
## 2065 tour_idm9ay9h47                      UAE     25-44
## 2066 tour_id3eh9ijlm                  FINLAND     25-44
## 2067 tour_idfrl6m1su UNITED STATES OF AMERICA     25-44
## 2069 tour_idgchb70tr                  GERMANY     45-64
## 2070 tour_idpvy3h9it                    ITALY     18-24
## 2071 tour_idt34qc5xq                ARGENTINA     45-64
## 2072 tour_idghbuqcfs                   FRANCE       65+
## 2074 tour_idt8wqkpff UNITED STATES OF AMERICA     25-44
## 2075 tour_id7vgt7rh6                   UGANDA     25-44
## 2076 tour_ido62hi0hf                   ZAMBIA     25-44
## 2077 tour_idhlemtvcb UNITED STATES OF AMERICA     45-64
## 2078 tour_id02s6tw0v           UNITED KINGDOM     45-64
## 2079 tour_ide3bdggul           UNITED KINGDOM     25-44
## 2080 tour_idqn2vjj3c                   UGANDA     25-44
## 2081 tour_idt7n2d7jm UNITED STATES OF AMERICA     45-64
## 2082 tour_id99n4zm6g             SOUTH AFRICA     45-64
## 2083 tour_id4yva7mu3                   FRANCE     25-44
## 2084 tour_id5uj4m2tg                   CANADA     25-44
## 2085 tour_idmhi1038m                   FRANCE     25-44
## 2086 tour_idqeo3xziz                    SPAIN     25-44
## 2087 tour_idjfmktc5d                  GERMANY     45-64
## 2088 tour_idfy2qoc0s           UNITED KINGDOM     25-44
## 2089 tour_idu0tsfqe6                AUSTRALIA     25-44
## 2090 tour_idh2ndahlm UNITED STATES OF AMERICA     25-44
## 2091 tour_idmhx8j020                    INDIA     45-64
## 2092 tour_idm8ri1u90                  GERMANY     45-64
## 2093 tour_idj92j6ilc                    ITALY     45-64
## 2094 tour_id6gso5rmx                AUSTRALIA     45-64
## 2095 tour_idconob9zv                  BELGIUM     25-44
## 2096 tour_idf1lbthqj                AUSTRALIA     25-44
## 2097 tour_idizvr2dwh                AUSTRALIA     25-44
## 2098 tour_idro9ducby UNITED STATES OF AMERICA     25-44
## 2099 tour_idph7gr4rd                   ZAMBIA     25-44
## 2100 tour_id4x4o100m                   ZAMBIA     25-44
## 2101 tour_id7pwislmk                  BURUNDI     45-64
## 2102 tour_id6i5grfmi           UNITED KINGDOM     25-44
## 2103 tour_idd0x6hhpz                 MALAYSIA     45-64
## 2104 tour_idodbk5xjk           UNITED KINGDOM     25-44
## 2105 tour_id67sguwka                   CANADA     25-44
## 2107 tour_idb03a2eri                  DENMARK       65+
## 2108 tour_id38166c2f           UNITED KINGDOM       <18
## 2110 tour_idhqe9oloa                    ITALY     25-44
## 2111 tour_idpf3harfn                  BELGIUM     18-24
## 2112 tour_id2o2wvyb2              NEW ZEALAND     45-64
## 2113 tour_id8csdjqng             SOUTH AFRICA     25-44
## 2114 tour_id5xpqsxqn                   ZAMBIA     25-44
## 2116 tour_idmc4l9tzd           UNITED KINGDOM     25-44
## 2117 tour_idr2te4a5u                    INDIA     18-24
## 2118 tour_ids49hlgd5 UNITED STATES OF AMERICA     25-44
## 2119 tour_ides190sip                    JAPAN       65+
## 2120 tour_ide0emzcfm                   FRANCE     25-44
## 2121 tour_iderfol86x           UNITED KINGDOM     25-44
## 2122 tour_id9sjk54ao           UNITED KINGDOM       65+
## 2123 tour_id74ldlcc1             SOUTH AFRICA     25-44
## 2124 tour_id0hp6e2lw                    INDIA     45-64
## 2125 tour_idw2s337xg           UNITED KINGDOM     18-24
## 2126 tour_idwjwr64dh              NEW ZEALAND       65+
## 2127 tour_idtkg67rtg                    SPAIN     25-44
## 2128 tour_id0lfuutni UNITED STATES OF AMERICA     25-44
## 2129 tour_idf838nklx                    ITALY     25-44
## 2130 tour_idn7ge5ojh UNITED STATES OF AMERICA       65+
## 2131 tour_idmh4592b2              NETHERLANDS     25-44
## 2132 tour_idwq8rvmob                AUSTRALIA     45-64
## 2133 tour_idbtiyniyi                    ITALY     25-44
## 2134 tour_idsg0oj3id                AUSTRALIA     25-44
## 2135 tour_idmg29wq7q                AUSTRALIA     45-64
## 2136 tour_id6q9x75xw                   CANADA     45-64
## 2137 tour_id9xb2cpds              NETHERLANDS     25-44
## 2138 tour_idy7b5hspv                  GERMANY     45-64
## 2139 tour_id1lkkhczv                   CANADA       65+
## 2140 tour_idx622uu96                    ITALY     25-44
## 2141 tour_id86d3nd0q                  GERMANY     25-44
## 2143 tour_id8rodulq7 UNITED STATES OF AMERICA     25-44
## 2144 tour_id7z8ycemo                    ITALY     25-44
## 2145 tour_iduq39zf34           UNITED KINGDOM     25-44
## 2146 tour_idx25iut2b                   FRANCE     25-44
## 2147 tour_id4y1qmb0o                    CHINA     25-44
## 2148 tour_idz9cfi0v9                  DENMARK     18-24
## 2149 tour_idg0ivnwbt                    ITALY     45-64
## 2150 tour_idum4armub                    KENYA     25-44
## 2151 tour_idogam2th0             SOUTH AFRICA     25-44
## 2152 tour_idulcw4wql           UNITED KINGDOM     25-44
## 2153 tour_idgurhucrk                    ITALY     45-64
## 2154 tour_idtp19gcus                    ITALY     25-44
## 2155 tour_idns5bwusq UNITED STATES OF AMERICA     25-44
## 2156 tour_idtttlx50k                 THAILAND     25-44
## 2157 tour_id0lz6lhbe UNITED STATES OF AMERICA       65+
## 2158 tour_id052aun3l                    INDIA     18-24
## 2159 tour_idmc9tigbo           UNITED KINGDOM     25-44
## 2160 tour_idpgtmev80                   ZAMBIA     25-44
## 2161 tour_idqauagle2                    INDIA     25-44
## 2162 tour_iddiwk8moz           UNITED KINGDOM     45-64
## 2163 tour_id50f08gqc               SWIZERLAND     25-44
## 2164 tour_idw1uuiddk                    SPAIN     18-24
## 2165 tour_idkfnjqdbb UNITED STATES OF AMERICA     25-44
## 2166 tour_idoekfc9sc UNITED STATES OF AMERICA       65+
## 2167 tour_ido76ykdqd                  GERMANY     18-24
## 2168 tour_idn1fccpib UNITED STATES OF AMERICA       65+
## 2169 tour_idryebixdi UNITED STATES OF AMERICA     25-44
## 2170 tour_id6wismgia UNITED STATES OF AMERICA     25-44
## 2171 tour_idqpe19paf                    ITALY     45-64
## 2172 tour_id8xykfkyf                 ZIMBABWE     25-44
## 2173 tour_idmlciqb8y                    SPAIN     45-64
## 2174 tour_idnae9os24                  MORROCO     25-44
## 2175 tour_id1kcictxh                SINGAPORE     25-44
## 2176 tour_idbaakgkpv                   ZAMBIA     25-44
## 2177 tour_idv4mwawxw              NETHERLANDS     25-44
## 2178 tour_idt8nemlbf                  AUSTRIA     25-44
## 2179 tour_idqdsectuk                 ZIMBABWE     25-44
## 2180 tour_id90oy9zhu UNITED STATES OF AMERICA     45-64
## 2181 tour_id6b0a4pxd           UNITED KINGDOM     25-44
## 2182 tour_idtnkaaltd           UNITED KINGDOM     45-64
## 2183 tour_id4w6zeoau             SOUTH AFRICA     45-64
## 2184 tour_idiozcpnzl                    KENYA     25-44
## 2185 tour_idxlyz6u3u                AUSTRALIA     25-44
## 2186 tour_idw5wnxsj7                   MEXICO     25-44
## 2187 tour_id8qfkpyt9                   UGANDA     25-44
## 2188 tour_idaq0t8onn UNITED STATES OF AMERICA     25-44
## 2189 tour_id5xnd4b7m                  GERMANY     18-24
## 2191 tour_idnili8m4m                      DRC     25-44
## 2192 tour_idl4v3k5e9 UNITED STATES OF AMERICA       65+
## 2193 tour_id7o6h46hl                   UGANDA     25-44
## 2194 tour_id7iju5nok                    ITALY     45-64
## 2195 tour_idvupi3pfv                   ZAMBIA     25-44
## 2196 tour_id87vz77d2                   SWEDEN     45-64
## 2197 tour_idw3ymkfn7                    CONGO     45-64
## 2198 tour_id5q0rwtpg UNITED STATES OF AMERICA     25-44
## 2199 tour_idyv4ot6kl                    SPAIN     25-44
## 2200 tour_idyqi4vcqo UNITED STATES OF AMERICA     25-44
## 2201 tour_idz9cnvuen                  GERMANY     45-64
## 2202 tour_idwdvnilqt UNITED STATES OF AMERICA     25-44
## 2203 tour_idal4eguul                   FRANCE     45-64
## 2204 tour_id5ab22toe                   CANADA     25-44
## 2205 tour_idtv42486p           UNITED KINGDOM     25-44
## 2206 tour_ideix7xvcu                    SPAIN     25-44
## 2207 tour_idir0bagog           UNITED KINGDOM     25-44
## 2208 tour_idnaofy4gk                    KOREA     45-64
## 2209 tour_iddu9ia652                  GERMANY     25-44
## 2210 tour_idp4l9h0xk                    ITALY     25-44
## 2211 tour_id0e2tghpl              NETHERLANDS     45-64
## 2212 tour_id6jbzml5r                   UGANDA     25-44
## 2213 tour_idttviovdl                  IRELAND     18-24
## 2214 tour_id6s87wjq6           UNITED KINGDOM     25-44
## 2215 tour_id886e67cx                    ITALY     25-44
## 2216 tour_idwt9lsv04                 ZIMBABWE     25-44
## 2217 tour_idncqrxuhx             SOUTH AFRICA     45-64
## 2218 tour_id2wxcf5p1                   FRANCE     25-44
## 2219 tour_idcwkhj4uv                 ZIMBABWE     25-44
## 2220 tour_idvljnxpok                  DENMARK     18-24
## 2222 tour_idvindmm5t                  BURUNDI     18-24
## 2223 tour_id24vsnmfh                    KENYA     45-64
## 2224 tour_id3d026ytq                    KENYA     25-44
## 2225 tour_idx1k7k9x0                   POLAND     25-44
## 2227 tour_idvhp7jve3 UNITED STATES OF AMERICA     25-44
## 2229 tour_idxswye03c                    ITALY     45-64
## 2230 tour_idduaevqff                   FRANCE     25-44
## 2231 tour_id4m9iggom UNITED STATES OF AMERICA       65+
## 2232 tour_idu16rmwq7                 ZIMBABWE     25-44
## 2233 tour_id2i7nhqdd UNITED STATES OF AMERICA     25-44
## 2234 tour_id7sutha0f           CZECH REPUBLIC     45-64
## 2235 tour_idrpgnx16c           UNITED KINGDOM       65+
## 2236 tour_ida8kc55y5                   NORWAY     45-64
## 2237 tour_iddfais3qf           UNITED KINGDOM     45-64
## 2238 tour_id6zs3gk09 UNITED STATES OF AMERICA     25-44
## 2239 tour_idhg5abn2j           UNITED KINGDOM     25-44
## 2241 tour_idvx9jr8oi                    INDIA     25-44
## 2242 tour_idatlmjc4w UNITED STATES OF AMERICA     45-64
## 2243 tour_idy6webp6u                   ZAMBIA     25-44
## 2244 tour_idn0h3i2nk                  IRELAND     18-24
## 2245 tour_id6a7owca5                 SLOVAKIA     18-24
## 2246 tour_idapeoz6jq                    KENYA     45-64
## 2247 tour_idg9u4o1wy                  BELGIUM     25-44
## 2248 tour_idb7suvgw4                 ZIMBABWE     25-44
## 2249 tour_idql7808m8                      DRC     18-24
## 2250 tour_id3njip0qm              NEW ZEALAND     25-44
## 2251 tour_idichcvgys                   UGANDA     25-44
## 2252 tour_id6m3yx3a8                  DENMARK     45-64
## 2254 tour_idaejchkqs     UNITED ARAB EMIRATES     25-44
## 2255 tour_id1oqmpzza           UNITED KINGDOM     18-24
## 2256 tour_idnixxhed9 UNITED STATES OF AMERICA     45-64
## 2257 tour_idd2ylijpk           UNITED KINGDOM     25-44
## 2258 tour_id5izn18fx                    ITALY     45-64
## 2260 tour_id0cpoedsk                   ZAMBIA     18-24
## 2261 tour_idqtt9a2zd                  GERMANY       <18
## 2263 tour_idr0bnppn3                   FRANCE     25-44
## 2264 tour_id3ebr2pmj                    JAPAN     25-44
## 2265 tour_id4usdvs8s                    SPAIN     45-64
## 2266 tour_iduecn2ifz           UNITED KINGDOM     25-44
## 2267 tour_id2rw0n5s3                 ZIMBABWE     25-44
## 2268 tour_idd3jew5t1 UNITED STATES OF AMERICA       65+
## 2269 tour_id9byrsnbq                   UGANDA     25-44
## 2270 tour_idkoror9lu                   RWANDA     18-24
## 2271 tour_idzmn2g3nk                    ITALY       65+
## 2272 tour_iduidsy4z3 UNITED STATES OF AMERICA     25-44
## 2273 tour_idzg2gyjnp                  IRELAND       <18
## 2275 tour_idh9l2pl73                    ITALY     45-64
## 2276 tour_iddzd2q372           UNITED KINGDOM     25-44
## 2277 tour_id7l1on3sx                   UGANDA     25-44
## 2278 tour_id2keox9zk                    CHINA     45-64
## 2279 tour_id9j0jgrco UNITED STATES OF AMERICA     25-44
## 2280 tour_idy85cn8jj                   UGANDA     45-64
## 2281 tour_idl9ue1oz6                 ZIMBABWE     25-44
## 2282 tour_idq9chpccq                    KENYA     25-44
## 2283 tour_id84nomrab                    KENYA     25-44
## 2284 tour_idopxf3y4l                   ZAMBIA     25-44
## 2285 tour_idweofy9dh                   FRANCE     25-44
## 2286 tour_idfwz7wzii UNITED STATES OF AMERICA     25-44
## 2287 tour_idirncagzl           UNITED KINGDOM     45-64
## 2288 tour_idundipriq UNITED STATES OF AMERICA     45-64
## 2289 tour_ide5ie0e8w                AUSTRALIA     45-64
## 2290 tour_idaey9e0qe                  GERMANY     45-64
## 2291 tour_id1rjhn5ka                     OMAN     25-44
## 2292 tour_idf5fhabhr                    ITALY     25-44
## 2293 tour_id4b56eigp                 ZIMBABWE     25-44
## 2294 tour_ideopmermw                     IRAN     25-44
## 2295 tour_id1189kzxq                 ZIMBABWE     25-44
## 2296 tour_idz3iu1w9y                    KENYA       65+
## 2297 tour_idllyk21zb                  GERMANY     25-44
## 2298 tour_idw087ly1i                    SUDAN     45-64
## 2299 tour_id94tpfp7a                 PORTUGAL     25-44
## 2300 tour_idbn4iunhc           UNITED KINGDOM     25-44
## 2301 tour_idisb5p0ej                AUSTRALIA     25-44
## 2302 tour_idb2vhb7bv           UNITED KINGDOM     45-64
## 2303 tour_idtrpf0793             SOUTH AFRICA     45-64
## 2304 tour_id5j5s40ol UNITED STATES OF AMERICA     25-44
## 2305 tour_id9nksyh72 UNITED STATES OF AMERICA     45-64
## 2306 tour_idpymuqzs8                      UAE     45-64
## 2307 tour_idzpgdxzxw                  GERMANY     45-64
## 2308 tour_idey9mfra4           UNITED KINGDOM     18-24
## 2309 tour_idss02e958           UNITED KINGDOM     25-44
## 2310 tour_idr2dr8vdk             SOUTH AFRICA     25-44
## 2311 tour_ide3mqipd2                    ITALY     45-64
## 2312 tour_idjs6tkbhr             SOUTH AFRICA     45-64
## 2313 tour_idushxus9d UNITED STATES OF AMERICA     45-64
## 2315 tour_idtlshyumc                  GERMANY     45-64
## 2316 tour_idgo2lr65s UNITED STATES OF AMERICA     45-64
## 2317 tour_idf5v333tl                    CONGO     25-44
## 2318 tour_id6h0n9az7                   SWEDEN     25-44
## 2319 tour_ido3ttri1s                  BELGIUM     25-44
## 2320 tour_idzf00fhvk                  BELGIUM     25-44
## 2321 tour_idc1urfe68                 ZIMBABWE     25-44
## 2322 tour_idlavg9o51                ARGENTINA     45-64
## 2323 tour_idn0c06nz4              NETHERLANDS     45-64
## 2324 tour_id3b8qkdvz           UNITED KINGDOM     18-24
## 2325 tour_id40a5atwq UNITED STATES OF AMERICA     25-44
## 2326 tour_id8rkqqi8n                   CANADA     25-44
## 2327 tour_id87irmk3p                    SPAIN     25-44
## 2328 tour_id6etc1756              NETHERLANDS     45-64
## 2329 tour_idgt81jo4w UNITED STATES OF AMERICA     25-44
## 2330 tour_idccvifrvr                   FRANCE     25-44
## 2331 tour_idi5qo51ol UNITED STATES OF AMERICA     45-64
## 2332 tour_idxlw9bssn                      DRC     18-24
## 2333 tour_id8egqlpmu             SOUTH AFRICA     25-44
## 2334 tour_idnefw3408           UNITED KINGDOM       65+
## 2335 tour_idk8mt0r78                    ITALY     45-64
## 2336 tour_id9gsh3wzk                SWAZILAND     45-64
## 2337 tour_id0yig8pml                    ITALY     25-44
## 2338 tour_id39wxnyjr                    SPAIN     25-44
## 2339 tour_id1ryeclsl UNITED STATES OF AMERICA     25-44
## 2341 tour_idch8c3520                   ZAMBIA     18-24
## 2342 tour_idgfqie633 UNITED STATES OF AMERICA     45-64
## 2343 tour_id4m9s48x3                   FRANCE     25-44
## 2344 tour_idi7g6vzcw                   SWEDEN     25-44
## 2345 tour_id3g3ckza0                     OMAN     18-24
## 2347 tour_id06552t7b           UNITED KINGDOM     25-44
## 2348 tour_id24no2qdb UNITED STATES OF AMERICA       65+
## 2349 tour_idzpnksze4                   ZAMBIA     25-44
## 2350 tour_id6ck64w4r UNITED STATES OF AMERICA       65+
## 2351 tour_idugip9e47                    SUDAN     25-44
## 2352 tour_idu3p8xndk UNITED STATES OF AMERICA     18-24
## 2353 tour_idvd3lon0l                   UGANDA       65+
## 2354 tour_idrbqad1xv                  DENMARK     25-44
## 2355 tour_idkeq0b5uj                   ZAMBIA     25-44
## 2356 tour_idxf2p3jqn                 ZIMBABWE     25-44
## 2357 tour_idotnyqb7o                   FRANCE     25-44
## 2358 tour_id5qt1bahe                  BURUNDI     25-44
## 2359 tour_idrfz0tasm                   FRANCE     18-24
## 2360 tour_idq0xj8wke           UNITED KINGDOM     45-64
## 2361 tour_id9so5iayt                  GERMANY     25-44
## 2362 tour_idepcphasv UNITED STATES OF AMERICA     45-64
## 2363 tour_id1qvburyv                 ZIMBABWE     25-44
## 2364 tour_id8cbipxzd                  GERMANY     18-24
## 2365 tour_idp5vj9hl6                 ZIMBABWE     25-44
## 2366 tour_id7y0vgyr3                   FRANCE     45-64
## 2367 tour_idthzj5b8d           UNITED KINGDOM     45-64
## 2368 tour_id05gs6vwk           UNITED KINGDOM     25-44
## 2369 tour_idj32c0xwh                    CHINA       65+
## 2370 tour_id2y44x28g           UNITED KINGDOM       65+
## 2371 tour_idat0xzi79           UNITED KINGDOM     25-44
## 2372 tour_idznnvcnlr                   FRANCE     45-64
## 2373 tour_idmxldc538                  GERMANY     25-44
## 2375 tour_idupjfteam                 ZIMBABWE     25-44
## 2376 tour_id5685trz6                  GERMANY     45-64
## 2377 tour_idkqmfh2y3                 ZIMBABWE     25-44
## 2378 tour_idc6oqkszv                  GERMANY     45-64
## 2379 tour_idjdxcwq0f UNITED STATES OF AMERICA       65+
## 2380 tour_idb6r0vvb2                    INDIA     45-64
## 2381 tour_idtpv6f8l4                    QATAR     45-64
## 2383 tour_idl68mmve1                  BELGIUM     25-44
## 2384 tour_id89oya1o7                    KENYA     45-64
## 2385 tour_idbvsmogdn                   UGANDA     45-64
## 2386 tour_id5vlkoqex                AUSTRALIA     45-64
## 2387 tour_idh4scufp9                     OMAN     25-44
## 2388 tour_idnsmuiacp                   FRANCE     45-64
## 2389 tour_id4hjffklo UNITED STATES OF AMERICA     25-44
## 2390 tour_idnllbnz3u                 ZIMBABWE     25-44
## 2391 tour_idudbfpucv                 ZIMBABWE     25-44
## 2392 tour_id0jpyvraq                  GERMANY     45-64
## 2394 tour_idc797i8o6 UNITED STATES OF AMERICA     45-64
## 2395 tour_idkpwn9j7x                   ZAMBIA     18-24
## 2396 tour_idai0i3s3k                  GERMANY     45-64
## 2398 tour_idcrfjcuu3                  ROMANIA     25-44
## 2400 tour_idxwmw5k86                     OMAN     18-24
## 2401 tour_idnzxwbjpu                  GERMANY     45-64
## 2402 tour_idocszu8iu           UNITED KINGDOM       65+
## 2403 tour_id49a14zkb                   FRANCE     45-64
## 2404 tour_id8o6aay62                    ITALY     45-64
## 2405 tour_idcv0dv2ei                   CANADA     18-24
## 2406 tour_id2ybeni2f UNITED STATES OF AMERICA     45-64
## 2407 tour_idnb7hrx2d           UNITED KINGDOM     25-44
## 2408 tour_id2kuye37f                   UGANDA     25-44
## 2409 tour_idlr1m8ch0                      UAE     25-44
## 2410 tour_idc9an2tvg UNITED STATES OF AMERICA     45-64
## 2411 tour_idgnsdra0w                   FRANCE     18-24
## 2412 tour_idrow9v94b           UNITED KINGDOM     25-44
## 2413 tour_idpetklg5p                    KOREA     45-64
## 2414 tour_idxxqryazl                  GERMANY     25-44
## 2415 tour_idu5pxi267                AUSTRALIA     18-24
## 2416 tour_idi0p6wv8b               SWIZERLAND     18-24
## 2417 tour_idpl46cg45                  GERMANY     25-44
## 2418 tour_id2ze3x95w UNITED STATES OF AMERICA     45-64
## 2419 tour_id65ene9x6                    ITALY     45-64
## 2420 tour_idpmdcfocc             SOUTH AFRICA     25-44
## 2421 tour_id19my6eeg UNITED STATES OF AMERICA       65+
## 2422 tour_id764k9iv3                    INDIA     45-64
## 2423 tour_idaf7dyym7                AUSTRALIA       65+
## 2424 tour_ids105u7jb                    ITALY     25-44
## 2425 tour_idw217eh2k           UNITED KINGDOM     45-64
## 2427 tour_idoor5qdhd           UNITED KINGDOM     45-64
## 2428 tour_id6tdqird2                    SPAIN     45-64
## 2429 tour_idlanj9s6d                   FRANCE     25-44
## 2430 tour_idk53gal1e                      UAE     25-44
## 2431 tour_idf54jz08q             SOUTH AFRICA     25-44
## 2432 tour_idrqr1q5sk                  GERMANY     25-44
## 2433 tour_id9co0py03                   CANADA       65+
## 2434 tour_iduz53ku08                   FRANCE     25-44
## 2435 tour_id08edhu22 UNITED STATES OF AMERICA     25-44
## 2436 tour_idv1epx6cb                   RUSSIA     25-44
## 2437 tour_idrfqobae0                   CANADA     45-64
## 2438 tour_idgh29i4v6                    CHINA     25-44
## 2439 tour_ido0kxot6u           UNITED KINGDOM     18-24
## 2440 tour_idd5u81u0h                AUSTRALIA     25-44
## 2441 tour_id1d3ll4ra                AUSTRALIA     25-44
## 2442 tour_idx5xkfmfr             SOUTH AFRICA     25-44
## 2443 tour_idk5jdy8hz                    CHINA     45-64
## 2444 tour_id53nliukr           UNITED KINGDOM     25-44
## 2445 tour_idd0csx921                    KENYA     45-64
## 2446 tour_idtd81hvmz           UNITED KINGDOM     25-44
## 2447 tour_idjhjpwk87           UNITED KINGDOM     18-24
## 2448 tour_id5pd5budr           UNITED KINGDOM     18-24
## 2449 tour_id9ja8aku4             SOUTH AFRICA     45-64
## 2450 tour_idqrutr1tz                SWAZILAND     25-44
## 2451 tour_id0hjgpv8z                  GERMANY     25-44
## 2453 tour_id14vq6us8                    ITALY     18-24
## 2454 tour_id5foalg4o                   FRANCE     25-44
## 2455 tour_idjntosljv           UNITED KINGDOM     18-24
## 2456 tour_idays5nude              NEW ZEALAND     45-64
## 2457 tour_ids7bp60v6                  GERMANY     45-64
## 2458 tour_idv2hv5h37 UNITED STATES OF AMERICA       <18
## 2459 tour_idnhhdkrou                   ZAMBIA     25-44
## 2460 tour_idkpnzhquy                   ZAMBIA     45-64
## 2461 tour_idtr02ujit                 ZIMBABWE     25-44
## 2463 tour_id6y4qp3x8                    SPAIN     45-64
## 2464 tour_idh8m07q9p                    SPAIN     25-44
## 2465 tour_id1e52ypcw                   FRANCE     25-44
## 2466 tour_idvt8i5dd5                  GERMANY     45-64
## 2467 tour_id22istlwa UNITED STATES OF AMERICA     25-44
## 2468 tour_idy4x0ydqx                    ITALY     45-64
## 2470 tour_idmikjzg3p                    ITALY     25-44
## 2471 tour_idq15fpjhq                  DENMARK     45-64
## 2473 tour_idahcu53u6                  GERMANY     45-64
## 2474 tour_id48xq3p21                   FRANCE     45-64
## 2475 tour_idgq34wm59           UNITED KINGDOM     25-44
## 2476 tour_id802iyrd1 UNITED STATES OF AMERICA     45-64
## 2477 tour_idqpkimirx                  GERMANY     25-44
## 2478 tour_idhgej3clr                   ZAMBIA     25-44
## 2479 tour_idnnv8ioon                   FRANCE     45-64
## 2480 tour_id4u5k8wdb               SWIZERLAND     18-24
## 2483 tour_ideyaemecg                   CANADA     45-64
## 2484 tour_idf4un5bgz                   CANADA     25-44
## 2485 tour_ids94dff6f                  NIGERIA     45-64
## 2486 tour_idb73zobim UNITED STATES OF AMERICA     45-64
## 2487 tour_idvj0sk8c5                  GERMANY     45-64
## 2488 tour_idutenpyvy                    ITALY     45-64
## 2489 tour_idt5ff23yf             SOUTH AFRICA       65+
## 2490 tour_idrlbkaiqv              NETHERLANDS     45-64
## 2491 tour_id7pqyg5rk           UNITED KINGDOM     45-64
## 2492 tour_idxkvpv40l             SOUTH AFRICA     25-44
## 2493 tour_id6y0oqaf6                   POLAND     25-44
## 2495 tour_idvbdfb06e                  AUSTRIA     45-64
## 2496 tour_id79pb8omy                    KENYA     25-44
## 2497 tour_idrrtoredd                    ITALY     25-44
## 2498 tour_idg4o8yhva                AUSTRALIA     45-64
## 2499 tour_idbtxz35po UNITED STATES OF AMERICA     25-44
## 2500 tour_idudp7x1fi                    KENYA     25-44
## 2501 tour_idkwjk5nv7                    ITALY     25-44
## 2502 tour_id88l0sc9r                  GERMANY     25-44
## 2503 tour_idks2vu81c                  GERMANY     25-44
## 2504 tour_id73pu4oo1           UNITED KINGDOM     25-44
## 2505 tour_idzayldcqa           UNITED KINGDOM     25-44
## 2506 tour_idamrsssce           UNITED KINGDOM     25-44
## 2507 tour_idwxa4va8y             SOUTH AFRICA     25-44
## 2508 tour_idve2sa8m8                AUSTRALIA     25-44
## 2509 tour_id32uaeltl                    SPAIN     25-44
## 2510 tour_idyzdizmfx                    SPAIN     25-44
## 2511 tour_id8wbashpp           UNITED KINGDOM     18-24
## 2512 tour_idcupo524r                    INDIA     25-44
## 2513 tour_idh279kodj                   FRANCE     25-44
## 2514 tour_idnds2thqh                    ITALY     45-64
## 2515 tour_idi631inxy                AUSTRALIA     25-44
## 2518 tour_id9606pw58           UNITED KINGDOM     45-64
## 2519 tour_idbq8bfgve           UNITED KINGDOM     25-44
## 2520 tour_id7wbob70z                   POLAND     18-24
## 2521 tour_idq8nalfws                AUSTRALIA     25-44
## 2522 tour_idhz8i4mm6              NETHERLANDS     45-64
## 2523 tour_idguanlgtw                   CANADA       65+
## 2524 tour_ids59lms7n           UNITED KINGDOM     25-44
## 2525 tour_iddktcs3bz           UNITED KINGDOM     18-24
## 2526 tour_id46zou42t             SOUTH AFRICA     25-44
## 2527 tour_ideiy184tr                  BELGIUM     45-64
## 2528 tour_idffy6p4g5                AUSTRALIA     25-44
## 2529 tour_iddutnv0qm              NETHERLANDS     45-64
## 2531 tour_idbiivz9rx                    KENYA       65+
## 2532 tour_id2xj441le                    ITALY     25-44
## 2534 tour_idbixuqip6 UNITED STATES OF AMERICA     45-64
## 2535 tour_idu0ub6avj                    ITALY     18-24
## 2536 tour_idpplg7bfo                AUSTRALIA     25-44
## 2537 tour_idw2n5wi2j                  DENMARK     25-44
## 2538 tour_idhv37itmx               SWIZERLAND     25-44
## 2539 tour_idc99yvxgj                   SWEDEN     18-24
## 2540 tour_idlxlk1z68                    KENYA     25-44
## 2541 tour_idzobj15yg           UNITED KINGDOM     25-44
## 2542 tour_id5pqy6i06                   FRANCE       65+
## 2543 tour_idoekoxo48           UNITED KINGDOM     25-44
## 2544 tour_id2dh7nvh1                 ZIMBABWE     25-44
## 2545 tour_idzqvbbfb6 UNITED STATES OF AMERICA       65+
## 2546 tour_idttgqy28h     UNITED ARAB EMIRATES     45-64
## 2547 tour_idddcz5xax             SOUTH AFRICA       65+
## 2548 tour_idp1ckelmt                AUSTRALIA     18-24
## 2550 tour_idypecwqu8     UNITED ARAB EMIRATES     45-64
## 2551 tour_idz8vvt1n1                   FRANCE     45-64
## 2552 tour_idzqksh9d2                  FINLAND     25-44
## 2553 tour_id7spv6ktr                  BURUNDI     45-64
## 2554 tour_idv7sbmukf                AUSTRALIA     25-44
## 2555 tour_idh0sdtwgu                 ZIMBABWE     45-64
## 2556 tour_id5a3ovbyj                AUSTRALIA     45-64
## 2558 tour_id5kspayhy                 ZIMBABWE     25-44
## 2559 tour_idrvk0qe8m                   ZAMBIA     25-44
## 2560 tour_idjg976usc UNITED STATES OF AMERICA     45-64
## 2561 tour_idhr9n8cw3                   FRANCE     45-64
## 2562 tour_idn805e1sn              NETHERLANDS     25-44
## 2563 tour_idpj4nftat                   FRANCE     25-44
## 2564 tour_idq4ifz7ou                AUSTRALIA     18-24
## 2565 tour_idkmsfa00a                    ITALY     25-44
## 2566 tour_idvezpm5wq                    KENYA     45-64
## 2567 tour_id28mvq7pu                  GERMANY     45-64
## 2568 tour_id3kzif7sn                  GERMANY     45-64
## 2569 tour_id5iy6qfj7                    ITALY     45-64
## 2570 tour_idse1ox975                   ZAMBIA     45-64
## 2571 tour_idkavn3f0b                    ITALY     18-24
## 2572 tour_idmbd9gmpj                 ZIMBABWE     25-44
## 2573 tour_idqz2vl8dt UNITED STATES OF AMERICA       65+
## 2574 tour_idk0yrpx4d                    SPAIN     25-44
## 2575 tour_idpwjy6rel               SWIZERLAND     45-64
## 2576 tour_idukwnaqd6 UNITED STATES OF AMERICA     25-44
## 2577 tour_idd0iu4d63                AUSTRALIA     18-24
## 2578 tour_idwj9fu3xi              NEW ZEALAND     25-44
## 2579 tour_ideagtpy5g              NETHERLANDS     45-64
## 2580 tour_idr135ghcj                    INDIA     18-24
## 2581 tour_id9kknct2n                    ITALY     25-44
## 2582 tour_idaus7cpy6                   ZAMBIA     25-44
## 2583 tour_idxtnz6teg                 ZIMBABWE     45-64
## 2584 tour_idw8yyvqs5           UNITED KINGDOM     25-44
## 2585 tour_idef8nnagx UNITED STATES OF AMERICA       65+
## 2586 tour_idi72d9rb0                    KENYA     25-44
## 2587 tour_idmlu8u0gu                  DENMARK     45-64
## 2588 tour_idr6bywtrn                    ITALY     45-64
## 2589 tour_idyymbli9d                   POLAND       65+
## 2590 tour_id2imkvgrb                   FRANCE     25-44
## 2591 tour_idcnxmakbf                   FRANCE       65+
## 2592 tour_idzpsoykge UNITED STATES OF AMERICA     25-44
## 2593 tour_id6531ezkf                    KENYA     25-44
## 2594 tour_id9exs53j5                AUSTRALIA     18-24
## 2595 tour_id0z88tml2                   RWANDA     18-24
## 2596 tour_id261juvoj           UNITED KINGDOM     45-64
## 2598 tour_idr0487t99           UNITED KINGDOM     25-44
## 2599 tour_id41kv424w                   FRANCE     45-64
## 2600 tour_idih69yawd                    ITALY     45-64
## 2601 tour_iddy17watz                   FRANCE     45-64
## 2602 tour_idigb13b75                   FRANCE     25-44
## 2603 tour_id4gb9skqq           UNITED KINGDOM     25-44
## 2604 tour_idsxisyt73                AUSTRALIA     45-64
## 2605 tour_idzl7gq4ak                 ETHIOPIA     45-64
## 2606 tour_idf1aytwyg UNITED STATES OF AMERICA       65+
## 2607 tour_idb0ablmuz                    ITALY     25-44
## 2608 tour_id5pwnqass                   CANADA     45-64
## 2609 tour_idxqmotp10                     OMAN     45-64
## 2610 tour_id47y6mc88           UNITED KINGDOM     18-24
## 2611 tour_idj5f79j9f              NEW ZEALAND     45-64
## 2612 tour_id0c2baoaj             SOUTH AFRICA     25-44
## 2613 tour_id9we6cm2h                    SPAIN     45-64
## 2614 tour_id6wjagkcm                  DENMARK     25-44
## 2615 tour_idklp3z6sm                   UGANDA     25-44
## 2616 tour_idf3fjzfzz                  GERMANY     45-64
## 2617 tour_id6r4n1cn5               SWIZERLAND       65+
## 2618 tour_idgu84n2mm                   FRANCE     25-44
## 2619 tour_idk5l6d04a                   ZAMBIA     25-44
## 2620 tour_idmpwaprmz UNITED STATES OF AMERICA     25-44
## 2621 tour_idzitbufxx                   CANADA     45-64
## 2622 tour_id4i62hwun UNITED STATES OF AMERICA     45-64
## 2623 tour_idh5c2lea2                  BELGIUM     25-44
## 2624 tour_id5uzrnj14                  GERMANY     45-64
## 2625 tour_idzjtmfjui              NETHERLANDS     25-44
## 2626 tour_idz14zu84j                   POLAND     45-64
## 2627 tour_idzilv1sed           UNITED KINGDOM     45-64
## 2628 tour_ids4h9ezpn                  BURUNDI     25-44
## 2629 tour_idjb8dd97r                 MALAYSIA     18-24
## 2630 tour_idzww3afrf                    JAPAN     18-24
## 2631 tour_id84awqeuo                  GERMANY     45-64
## 2632 tour_idjwql00vl                    SPAIN     45-64
## 2633 tour_id6d5cdc8h                    KENYA     25-44
## 2634 tour_idme184jrs           UNITED KINGDOM     25-44
## 2635 tour_id5iopouc9 UNITED STATES OF AMERICA     25-44
## 2636 tour_idgtimruw9           UNITED KINGDOM     25-44
## 2637 tour_idd6zi1hs5                   FRANCE     25-44
## 2638 tour_idsrhcitn4                    KENYA     25-44
## 2639 tour_idrbabyjjd                   RUSSIA     18-24
## 2640 tour_idpr64gxun                   ZAMBIA     25-44
## 2641 tour_id8kzpst21 UNITED STATES OF AMERICA     45-64
## 2642 tour_id5z63e2rv                   ISRAEL     45-64
## 2643 tour_idiwy1f39a UNITED STATES OF AMERICA     25-44
## 2644 tour_idam7jzq41                 ZIMBABWE     25-44
## 2645 tour_id91h547fg           UNITED KINGDOM     18-24
## 2646 tour_id8y1ayrd2                      UAE     25-44
## 2648 tour_id9q5g2tr2           UNITED KINGDOM     18-24
## 2649 tour_idg7iw5s1b              NETHERLANDS     25-44
## 2650 tour_idbcaf2d99                    KENYA     25-44
## 2651 tour_idyc5sp9mp                    CONGO     25-44
## 2652 tour_idng4rrxzc               SWIZERLAND       65+
## 2653 tour_id6lsj574f UNITED STATES OF AMERICA       65+
## 2654 tour_idkg8ovdat UNITED STATES OF AMERICA     45-64
## 2655 tour_idgrzobu50                  BELGIUM     25-44
## 2656 tour_idhlay5ur3                  BELGIUM     25-44
## 2657 tour_iddaefcofi                   FRANCE     25-44
## 2659 tour_idskdz2m4t                   ISRAEL     25-44
## 2660 tour_idjqg0f8z5 UNITED STATES OF AMERICA     25-44
## 2661 tour_id83hqah5j                 ZIMBABWE     25-44
## 2662 tour_ide7e8tgz7                    KENYA     45-64
## 2665 tour_idapohgtcx                   FRANCE     25-44
## 2666 tour_idudzqn43b               SWIZERLAND     25-44
## 2667 tour_idz6medc4t                   ZAMBIA     25-44
## 2669 tour_idc2bo1bx8              NETHERLANDS     25-44
## 2670 tour_idnozopwq2                  GERMANY     45-64
## 2672 tour_idy20df7vb                  BURUNDI     25-44
## 2673 tour_id3oki3evc                  GERMANY     45-64
## 2674 tour_idi440an3o UNITED STATES OF AMERICA     45-64
## 2675 tour_idw4loy1bd UNITED STATES OF AMERICA     25-44
## 2676 tour_idzzc2ym7d                SINGAPORE     25-44
## 2677 tour_id64xik02p UNITED STATES OF AMERICA       65+
## 2678 tour_id3iovxcrd UNITED STATES OF AMERICA     45-64
## 2679 tour_id94rx9hcp UNITED STATES OF AMERICA       65+
## 2680 tour_idvdc6q6s1 UNITED STATES OF AMERICA     25-44
## 2681 tour_idvz7l4pm7 UNITED STATES OF AMERICA       65+
## 2682 tour_idsn17x5ny                  GERMANY     45-64
## 2684 tour_idfqsfsnuh UNITED STATES OF AMERICA       65+
## 2685 tour_id4sbfi457 UNITED STATES OF AMERICA     25-44
## 2686 tour_idpwhtjb33 UNITED STATES OF AMERICA       65+
## 2687 tour_id9ijeoe9q                   FRANCE     45-64
## 2688 tour_idxqj0llwm                 ZIMBABWE     25-44
## 2689 tour_idxrggm88e UNITED STATES OF AMERICA     45-64
## 2690 tour_idw9t08woy                    JAPAN     25-44
## 2691 tour_id0drj0nsm UNITED STATES OF AMERICA     25-44
## 2693 tour_idjgqeh6px                    KENYA     25-44
## 2695 tour_idfcug08dg           UNITED KINGDOM     45-64
## 2696 tour_idcu8jqkgv                   FRANCE     18-24
## 2697 tour_idvo7e7rho                AUSTRALIA     45-64
## 2698 tour_ido80ny1rb              NETHERLANDS     45-64
## 2699 tour_ida2x8t3wo                   CANADA     25-44
## 2700 tour_idkcu8pll4                   FRANCE     45-64
## 2701 tour_id2appixt6 UNITED STATES OF AMERICA     45-64
## 2702 tour_ids6t3esfq                   UGANDA     25-44
## 2703 tour_idli05p6p0                  DENMARK     45-64
## 2704 tour_idsxudwjc9 UNITED STATES OF AMERICA     18-24
## 2705 tour_idnr49u9gi           UNITED KINGDOM     18-24
## 2706 tour_idioxv109b                   ZAMBIA     25-44
## 2707 tour_idw3plglqg                   UGANDA     25-44
## 2708 tour_idpup0fz7i                    KENYA     25-44
## 2709 tour_idcb70w61m           UNITED KINGDOM     45-64
## 2710 tour_idotgeh2zg             SOUTH AFRICA       65+
## 2711 tour_idiv9mmpn1                  DENMARK     45-64
## 2713 tour_idgqz1cfur           UNITED KINGDOM     45-64
## 2714 tour_idb0lk5x7d           UNITED KINGDOM     25-44
## 2715 tour_ido1ncldlr                  BURUNDI     18-24
## 2716 tour_idy2z29pi3                LITHUANIA     18-24
## 2717 tour_idn49tyo4j                 ZIMBABWE     45-64
## 2718 tour_idbkelwvol               SWIZERLAND     25-44
## 2720 tour_id42xrqawf UNITED STATES OF AMERICA     45-64
## 2721 tour_idq9ozvxyy UNITED STATES OF AMERICA       65+
## 2722 tour_iddig63a4v             SOUTH AFRICA     45-64
## 2723 tour_idcn95zhxx                    ITALY     25-44
## 2724 tour_idu8zxtmez                   NORWAY     45-64
## 2725 tour_idfjw9ijq9                    KENYA     25-44
## 2726 tour_id3gvbiqr6                SINGAPORE     25-44
## 2727 tour_id5j3vpwqe           UNITED KINGDOM     45-64
## 2728 tour_idp0y5hp6d                  GERMANY     45-64
## 2729 tour_iddk2hngr5 UNITED STATES OF AMERICA       65+
## 2730 tour_id1bg5oh8o                    JAPAN       65+
## 2731 tour_idj3qgnvzr           UNITED KINGDOM       65+
## 2732 tour_idntq9infa UNITED STATES OF AMERICA       65+
## 2733 tour_idqr27nt98               SWIZERLAND     18-24
## 2734 tour_idkv81zurs                    JAPAN     25-44
## 2735 tour_idzxda736j                    ITALY     25-44
## 2737 tour_id8vk8byzs                    KENYA     25-44
## 2738 tour_idkxooieoj                    SPAIN       65+
## 2739 tour_idbubr5qjq                  GERMANY     25-44
## 2740 tour_idzpkiu9kt UNITED STATES OF AMERICA     45-64
## 2741 tour_id2jxu7jd7                    ITALY     25-44
## 2742 tour_id5j67dfsv                    ITALY     25-44
## 2743 tour_idajdlpkjp UNITED STATES OF AMERICA       65+
## 2744 tour_idpy8bgy5v                    CHINA     25-44
## 2745 tour_idkr0i7qub UNITED STATES OF AMERICA     45-64
## 2746 tour_id0cxygqex             SOUTH AFRICA     25-44
## 2747 tour_idlp1dbkk1           UNITED KINGDOM     25-44
## 2748 tour_idzci6pb2z           UNITED KINGDOM     45-64
## 2749 tour_idfcod7otb UNITED STATES OF AMERICA     25-44
## 2750 tour_idzzp2iggp                    JAPAN     25-44
## 2751 tour_idqr767hng           UNITED KINGDOM     45-64
## 2752 tour_id9pylnzda                      UAE     18-24
## 2753 tour_idmfspgw20                    ITALY     45-64
## 2755 tour_idbrn789gl           UNITED KINGDOM     25-44
## 2756 tour_idgqb8s9wi              AFGHANISTAN     25-44
## 2757 tour_id9ezqyg4j                   FRANCE     18-24
## 2760 tour_idvrihqduh                   FRANCE     25-44
## 2761 tour_idjnwpvhvt             SOUTH AFRICA     25-44
## 2762 tour_idtm525iug                   CANADA     25-44
## 2763 tour_idenr2d2rg           UNITED KINGDOM     45-64
## 2764 tour_id3y8u5nr8                    ITALY     45-64
## 2765 tour_id11r0iqyw                    KENYA     25-44
## 2766 tour_idfjin2g3i           UNITED KINGDOM     18-24
## 2767 tour_idu53hooex                   UGANDA     25-44
## 2768 tour_idf2f6btph                   FRANCE     25-44
## 2769 tour_idwl90kp7f           UNITED KINGDOM     45-64
## 2770 tour_idx5nm7zta UNITED STATES OF AMERICA     18-24
## 2771 tour_idt75mtd7h                AUSTRALIA     45-64
## 2772 tour_idq1ptw22e UNITED STATES OF AMERICA     45-64
## 2773 tour_idzdxi2fax                  GERMANY       65+
## 2774 tour_id5n0cgvvb           UNITED KINGDOM     25-44
## 2775 tour_idpt15a316             SOUTH AFRICA     25-44
## 2776 tour_id363u28g6           UNITED KINGDOM     18-24
## 2777 tour_idcdwgpiiq                    SPAIN     18-24
## 2778 tour_idqb2o5pj7              NETHERLANDS     25-44
## 2779 tour_idz1o4xj89                      UAE     45-64
## 2780 tour_id4yvvmrut                 ZIMBABWE     25-44
## 2781 tour_iddb3567cb                   FRANCE     25-44
## 2782 tour_idv56dunw0 UNITED STATES OF AMERICA     25-44
## 2783 tour_idp3zvr3ka                    KENYA     25-44
## 2784 tour_id20rumh5m                 ZIMBABWE     25-44
## 2785 tour_idx2e2y0xj                  BELGIUM     25-44
## 2786 tour_idayl0757m                    ITALY     25-44
## 2787 tour_id6atucla8                    INDIA     25-44
## 2788 tour_idvs9961vz                    EGYPT     18-24
## 2789 tour_idmhcs62pd                AUSTRALIA     18-24
## 2790 tour_ids5g4s5o6                   RWANDA     18-24
## 2791 tour_idecv9uiko                    SPAIN     25-44
## 2792 tour_id33bp80qt               SWIZERLAND     18-24
## 2793 tour_idtqzw7tlu UNITED STATES OF AMERICA     25-44
## 2794 tour_iddkdjc020                   ZAMBIA     25-44
## 2795 tour_ida4st77c9                    CHINA     25-44
## 2796 tour_idkb8laigm UNITED STATES OF AMERICA       65+
## 2797 tour_idet5o77qu                    KENYA     25-44
## 2798 tour_idq28ndhg5                   CANADA     25-44
## 2799 tour_idta1jzr42                  GERMANY     25-44
## 2800 tour_idqqhgifqf UNITED STATES OF AMERICA     45-64
## 2801 tour_idg678y7bu                    KENYA     25-44
## 2802 tour_id8k9l6io9                    KENYA     18-24
## 2803 tour_id186fcf9m UNITED STATES OF AMERICA     45-64
## 2804 tour_idcmevnry0                   FRANCE     45-64
## 2805 tour_idy7dcxcw5                   POLAND     25-44
## 2806 tour_idj66rqkjr                   ISRAEL     25-44
## 2807 tour_idi4oeezwn                  GERMANY     25-44
## 2808 tour_idt7c1xdnv           UNITED KINGDOM     25-44
## 2809 tour_idqfulmzzt                AUSTRALIA     45-64
## 2810 tour_idkz9i7k0x              NETHERLANDS     25-44
## 2811 tour_idekqacry2 UNITED STATES OF AMERICA     45-64
## 2813 tour_ids1bbi5nu                  DENMARK     45-64
## 2814 tour_idpld6nfiu UNITED STATES OF AMERICA     45-64
## 2815 tour_idqhwhoyw2                  BELGIUM       65+
## 2816 tour_idat8p8wb5           UNITED KINGDOM     18-24
## 2817 tour_idys8309fl             SOUTH AFRICA     45-64
## 2818 tour_idchr8fitl                   FRANCE     25-44
## 2821 tour_idbapbvmy4                   FRANCE     25-44
## 2822 tour_id5g4vkg9c           UNITED KINGDOM     18-24
## 2823 tour_idlegqmvoq                   ZAMBIA     18-24
## 2824 tour_id37fpuqpe                    ITALY     25-44
## 2825 tour_idgfavs5g0 UNITED STATES OF AMERICA     25-44
## 2826 tour_idqqc3gje7                  GERMANY     18-24
## 2827 tour_id4nema96t                    ITALY     45-64
## 2828 tour_idrb3pm0oy                    SPAIN     18-24
## 2829 tour_idriincedt                   UGANDA     25-44
## 2831 tour_idra8ul67l                AUSTRALIA     45-64
## 2832 tour_id57b1rt1w                    ITALY     25-44
## 2833 tour_id1l9pz54o                  GERMANY     25-44
## 2834 tour_id7431vt24                AUSTRALIA     45-64
## 2835 tour_idddl2e34s             SOUTH AFRICA     45-64
## 2836 tour_idnnmlfttm UNITED STATES OF AMERICA       65+
## 2837 tour_id7ilarypl                  BELGIUM     45-64
## 2838 tour_idso4eqdxd                  ALGERIA     45-64
## 2839 tour_idolt2s6kl                    ITALY     45-64
## 2840 tour_idb5zoynfy                   ZAMBIA     25-44
## 2841 tour_idoxdrxf3x                   FRANCE     25-44
## 2842 tour_idg6o5x3md                AUSTRALIA       65+
## 2843 tour_id5oys47jm                   COMORO     25-44
## 2844 tour_idgfhdxxua UNITED STATES OF AMERICA       65+
## 2845 tour_idqfi4tai2                    ITALY     45-64
## 2846 tour_id439y45a4 UNITED STATES OF AMERICA     25-44
## 2850 tour_id7y3r5v51                    ITALY       65+
## 2851 tour_id8v0htyzn                 ZIMBABWE     25-44
## 2852 tour_idq75e7b5y                    CHINA       65+
## 2853 tour_idbe7yy4dg                    ITALY     18-24
## 2854 tour_idozebnvnx                AUSTRALIA     25-44
## 2855 tour_idnem1ki5d                    ITALY     25-44
## 2856 tour_idfexcbk9h                    ITALY     25-44
## 2857 tour_ididyle5ja                  GERMANY     45-64
## 2858 tour_idpdovphg6                    ITALY     25-44
## 2859 tour_idofdlptqg UNITED STATES OF AMERICA     45-64
## 2860 tour_idhiqjodqu             SOUTH AFRICA     25-44
## 2862 tour_id2qpfclyc                 ZIMBABWE     25-44
## 2863 tour_id6lc5fca3                   FRANCE     45-64
## 2864 tour_idw9a9msi8                    ITALY     25-44
## 2865 tour_idb5yrx14a                 BOTSWANA     25-44
## 2866 tour_idax2yqhf0                    ITALY     45-64
## 2868 tour_idd0xohgl0                   ZAMBIA     25-44
## 2869 tour_idwhdk0ek5                   FRANCE     45-64
## 2870 tour_idfgizxmgx             SOUTH AFRICA     25-44
## 2871 tour_idsrw6i0rd                    SPAIN     25-44
## 2872 tour_id8vhxl8tk                   FRANCE       <18
## 2874 tour_idvuavc6hj                    CONGO     25-44
## 2875 tour_idseuu7uue                   MALAWI     18-24
## 2876 tour_id3yxgli7j                  GERMANY     25-44
## 2877 tour_idaxwo8k2a           UNITED KINGDOM     25-44
## 2878 tour_idk4ug0bi0                  IRELAND     25-44
## 2879 tour_id09zqfs8b             SOUTH AFRICA     25-44
## 2880 tour_idj3mqiekj           UNITED KINGDOM     45-64
## 2881 tour_idl4k29onv                AUSTRALIA     25-44
## 2882 tour_idlw73in8e           UNITED KINGDOM     25-44
## 2883 tour_idju3d6t6d UNITED STATES OF AMERICA     18-24
## 2885 tour_idmcpeb6pv UNITED STATES OF AMERICA       65+
## 2886 tour_idm3cq3zgg                    ITALY     45-64
## 2887 tour_idvuqbihq0                    SPAIN     25-44
## 2888 tour_idu20mpta8 UNITED STATES OF AMERICA       65+
## 2889 tour_idom5itvjv           UNITED KINGDOM     18-24
## 2890 tour_idepo5r85m UNITED STATES OF AMERICA     45-64
## 2891 tour_idx3i0nx9n           UNITED KINGDOM     25-44
## 2892 tour_idfohxf2qc                  BELGIUM     25-44
## 2893 tour_id48jtjskp           UNITED KINGDOM     18-24
## 2894 tour_idqfc3w1r1           UNITED KINGDOM     25-44
## 2895 tour_idm62mrhhh                    ITALY     25-44
## 2896 tour_id1plyj1ut                   UGANDA     45-64
## 2897 tour_ido0bc5rwd           UNITED KINGDOM     25-44
## 2898 tour_idbeo104x9 UNITED STATES OF AMERICA     45-64
## 2899 tour_id42f5vupe               SWIZERLAND       65+
## 2900 tour_id6u1cgbeo UNITED STATES OF AMERICA     45-64
## 2901 tour_id2bopc8cy                   FRANCE     25-44
## 2902 tour_idozlugo5c                   FRANCE     25-44
## 2903 tour_idjnkciwjk                  BURUNDI     25-44
## 2904 tour_idsp0o4h70                   CANADA       <18
## 2905 tour_idujb9ojpq                   UGANDA     45-64
## 2906 tour_id4qsmrbtp UNITED STATES OF AMERICA     45-64
## 2909 tour_id3xac5hnb                   UGANDA     18-24
## 2910 tour_idh2n9v195                   ZAMBIA     18-24
## 2911 tour_id5gny1mf0                AUSTRALIA     25-44
## 2912 tour_idkw128c3v UNITED STATES OF AMERICA     25-44
## 2913 tour_idgn0lgbb7                  GERMANY     45-64
## 2914 tour_idfv205kgz                    ITALY     25-44
## 2915 tour_idbuuh039q                   ZAMBIA     25-44
## 2916 tour_idmdvjneni                    INDIA       65+
## 2917 tour_idf1azswxn UNITED STATES OF AMERICA     25-44
## 2918 tour_idyyg0izv9                  IRELAND     25-44
## 2919 tour_idzedishkf UNITED STATES OF AMERICA       65+
## 2921 tour_idqtpx6ph3                   SWEDEN     25-44
## 2922 tour_idlje4ynbg                   RWANDA     25-44
## 2923 tour_id4pzynjch                   CANADA       65+
## 2924 tour_idldqi6ytb                    KENYA     25-44
## 2925 tour_idvds24cl8 UNITED STATES OF AMERICA     25-44
## 2926 tour_idp3kjc3m0               SEYCHELLES     25-44
## 2927 tour_idue4j0kl1                    KENYA     25-44
## 2928 tour_idq7ry32ci UNITED STATES OF AMERICA     25-44
## 2929 tour_idarhv3ew0           UNITED KINGDOM     45-64
## 2930 tour_idscllpvy9 UNITED STATES OF AMERICA     45-64
## 2931 tour_idjlfskwsd UNITED STATES OF AMERICA       65+
## 2932 tour_idmjmi9qvs                   UGANDA     18-24
## 2933 tour_id1sc0kbqp                    KOREA       65+
## 2934 tour_idgu1pnr1a                    CHINA     25-44
## 2935 tour_idkwh6l8i9                      DRC     25-44
## 2936 tour_idvvr0jjwf           UNITED KINGDOM     18-24
## 2937 tour_ide9b8dxxo                   FRANCE     45-64
## 2938 tour_idqcolqkjm           UNITED KINGDOM     45-64
## 2939 tour_idu2bsxbqd                   SWEDEN     18-24
## 2940 tour_id8ociesvg                   FRANCE     45-64
## 2941 tour_id7kgdly0u           UNITED KINGDOM     25-44
## 2942 tour_ida406jio8             SOUTH AFRICA     45-64
## 2943 tour_id17avtk55                   UGANDA     25-44
## 2944 tour_id8bdn2ku8                   ZAMBIA     25-44
## 2946 tour_idcgqn6ye3                   UGANDA     25-44
## 2947 tour_idko7676in             SOUTH AFRICA     25-44
## 2948 tour_idegiyik6v             SOUTH AFRICA     25-44
## 2949 tour_idkpuwutuy                   GREECE     45-64
## 2950 tour_idp8es1r7y               SWIZERLAND     25-44
## 2951 tour_id3vmbc01x           UNITED KINGDOM     18-24
## 2952 tour_idyf2henie                  IRELAND     45-64
## 2953 tour_idbxo1ii6s                  BELGIUM     45-64
## 2954 tour_iduysjbr6n           UNITED KINGDOM     25-44
## 2955 tour_idbteq22n8                    ITALY     25-44
## 2956 tour_idqm9p9itv           UNITED KINGDOM     18-24
## 2957 tour_id144w2aq7                   CANADA     45-64
## 2958 tour_iduskscj8h UNITED STATES OF AMERICA     45-64
## 2959 tour_id84veeoa6                   FRANCE     18-24
## 2960 tour_idd75lf9e2                    KENYA     25-44
## 2961 tour_idmsolsrz8                   RWANDA     25-44
## 2962 tour_id5bt3ewfx                   MALAWI     45-64
## 2964 tour_idn7zpzziv           UNITED KINGDOM     18-24
## 2965 tour_idr9qm3xhl             SOUTH AFRICA     45-64
## 2966 tour_id584a8pfg           UNITED KINGDOM     18-24
## 2967 tour_idh5ghg6ra                  BURUNDI     25-44
## 2968 tour_id8bvragq5                   FRANCE     25-44
## 2969 tour_idpvqhs2x7 UNITED STATES OF AMERICA     45-64
## 2970 tour_idqtg1n0n1              NEW ZEALAND     45-64
## 2971 tour_idf89opov9                AUSTRALIA       65+
## 2972 tour_ids4eg8p0p                  ROMANIA     25-44
## 2973 tour_idz11jnr1y                  GERMANY     25-44
## 2974 tour_idkzu72axi                    KENYA     25-44
## 2975 tour_id89epncfu                   CANADA     18-24
## 2976 tour_idsu4alyue              NEW ZEALAND     45-64
## 2977 tour_ids7d4fwuo UNITED STATES OF AMERICA     45-64
## 2978 tour_id3ifrl5vm           UNITED KINGDOM     25-44
## 2980 tour_idwbhntye1                   ZAMBIA     25-44
## 2982 tour_id9xh0aykb UNITED STATES OF AMERICA     25-44
## 2983 tour_id0ke2q5hf                   ZAMBIA     18-24
## 2984 tour_id4532l0cu                  DENMARK     18-24
## 2985 tour_id2q5qecni           UNITED KINGDOM     18-24
## 2986 tour_id15wco2bm                   CANADA     45-64
## 2987 tour_id16utv717 UNITED STATES OF AMERICA     18-24
## 2988 tour_idwp4hj5ji                    KENYA     45-64
## 2989 tour_id3azgm8rl           UNITED KINGDOM     18-24
## 2990 tour_id11xczavy                  GERMANY     25-44
## 2991 tour_id9ayr6mvt                    ITALY     25-44
## 2992 tour_id5fz01mkq                AUSTRALIA       65+
## 2993 tour_id0n8v563e                    SPAIN     25-44
## 2994 tour_idwyj97xjm             SOUTH AFRICA     25-44
## 2995 tour_id650vadl2                    SPAIN     45-64
## 2996 tour_idykzx1ht9           UNITED KINGDOM     45-64
## 2997 tour_ids3kmlde2                      UAE     45-64
## 2998 tour_idwyupul5n                    ITALY     25-44
## 2999 tour_idudh5xro8                AUSTRALIA       65+
## 3000 tour_id9v66k2pv                   CANADA     25-44
## 3002 tour_idig6cizlc                  BELGIUM     45-64
## 3003 tour_iddipyj4q4                    SPAIN     25-44
## 3004 tour_idy9wx1ic5           UNITED KINGDOM     45-64
## 3005 tour_id9sgnr1ep           UNITED KINGDOM     25-44
## 3006 tour_idkqup03bx             SOUTH AFRICA     25-44
## 3007 tour_idjx5cnwmb             SOUTH AFRICA     45-64
## 3008 tour_idwqws8mki           UNITED KINGDOM     45-64
## 3009 tour_id4mn1px27 UNITED STATES OF AMERICA     18-24
## 3010 tour_id6rgz5id1           UNITED KINGDOM     25-44
## 3011 tour_idhxm8s5pq                    ITALY     25-44
## 3012 tour_id8qx8tkmq                AUSTRALIA     45-64
## 3013 tour_idtcfq8ma4                   GREECE     25-44
## 3015 tour_id4aeo4uua           UNITED KINGDOM     25-44
## 3016 tour_idopy4k08b                   UGANDA     25-44
## 3017 tour_idfu2ixqdb                    ITALY     45-64
## 3018 tour_id4l39sl5d                 ZIMBABWE     25-44
## 3019 tour_idp05dbig5                    CHINA     18-24
## 3020 tour_idezd00i4x              NETHERLANDS     25-44
## 3021 tour_id0q6figop UNITED STATES OF AMERICA       65+
## 3022 tour_idf1pjj064 UNITED STATES OF AMERICA     45-64
## 3023 tour_id0zmz4scg                    SPAIN     25-44
## 3024 tour_iddfycphbj UNITED STATES OF AMERICA     18-24
## 3025 tour_idgdhtoc9g                AUSTRALIA       65+
## 3027 tour_id7i5zayi9           UNITED KINGDOM     25-44
## 3028 tour_idxmtsgdsx                  GERMANY     25-44
## 3029 tour_idh7ax0rpr              NETHERLANDS     25-44
## 3030 tour_idi60hwphy                   FRANCE     25-44
## 3031 tour_idkech9r6r                   FRANCE     45-64
## 3032 tour_idmd4s7l80 UNITED STATES OF AMERICA     45-64
## 3033 tour_idrgcirk9d                    ITALY     45-64
## 3034 tour_id0olh803a           UNITED KINGDOM     45-64
## 3035 tour_ids280hlad UNITED STATES OF AMERICA       65+
## 3036 tour_idb3nb2xcy                    ITALY     25-44
## 3037 tour_idvr4yibzp UNITED STATES OF AMERICA       65+
## 3038 tour_idcv9q7b4q               SWIZERLAND     45-64
## 3039 tour_idrasmeh9u                   FRANCE     25-44
## 3040 tour_idtb50ax5f                AUSTRALIA       65+
## 3041 tour_idp597m6jx                  BURUNDI     45-64
## 3042 tour_idi6wpf6sz                   FRANCE     25-44
## 3044 tour_id5pyrru1p                  AUSTRIA     25-44
## 3045 tour_idtv8xzavn                   ZAMBIA     25-44
## 3046 tour_idv97xyglf                  GERMANY     45-64
## 3047 tour_idz9dj7sro                  BURUNDI     45-64
## 3048 tour_idmrxw9mov           UNITED KINGDOM     25-44
## 3049 tour_idtw2vz642                  BURUNDI     18-24
## 3050 tour_idig4dfink                  GERMANY     25-44
## 3051 tour_id0958gq70 UNITED STATES OF AMERICA       65+
## 3053 tour_id810e47wp                  LEBANON     45-64
## 3054 tour_id0hct6ojm                   MALAWI     25-44
## 3055 tour_id1vuxb8xs           UNITED KINGDOM     25-44
## 3056 tour_id5mm3dvex                   ZAMBIA     25-44
## 3057 tour_id48ok9nkk                    KENYA     45-64
## 3058 tour_id6b2d6v7k              SAUD ARABIA     25-44
## 3060 tour_id0tjm2vke                    SUDAN     25-44
## 3061 tour_id47bwlvcs           UNITED KINGDOM     25-44
## 3062 tour_idob3gexh7                   CANADA     25-44
## 3063 tour_idw3dwmllp                   MALAWI     18-24
## 3064 tour_idv4jenzcl                  BELGIUM     18-24
## 3065 tour_idd1xjogrh             SOUTH AFRICA     45-64
## 3066 tour_iddk3bhnc1                AUSTRALIA     18-24
## 3067 tour_id2qq99mpx UNITED STATES OF AMERICA       65+
## 3068 tour_id7bnhm6dd UNITED STATES OF AMERICA     25-44
## 3069 tour_idc6mx0t7v               LUXEMBOURG     45-64
## 3070 tour_id41oab7sv UNITED STATES OF AMERICA     45-64
## 3071 tour_id3ffajnh3                   ZAMBIA     25-44
## 3072 tour_iduhrqrruo                    JAPAN     25-44
## 3073 tour_idnl7xughv                   FRANCE     25-44
## 3074 tour_idtqzh6rpn                  LEBANON     25-44
## 3075 tour_idkpkgmlq9                  AUSTRIA     45-64
## 3076 tour_idr46wjktn                    ITALY     45-64
## 3078 tour_id8exqhg71                 ZIMBABWE     25-44
## 3079 tour_id01234lhk                    KENYA     25-44
## 3080 tour_idvg8y4xok                    ITALY     25-44
## 3081 tour_id0ipy6koy                    KENYA     45-64
## 3082 tour_idfl916d8m UNITED STATES OF AMERICA     25-44
## 3084 tour_idhi1r5qbc               SWIZERLAND     45-64
## 3085 tour_id3klrr5mx                 ZIMBABWE     25-44
## 3086 tour_idcej2btpg UNITED STATES OF AMERICA       65+
## 3087 tour_idi3fl0vkf UNITED STATES OF AMERICA     18-24
## 3088 tour_idzk9w60x1                    ITALY     25-44
## 3090 tour_id2np4ms1i           UNITED KINGDOM     18-24
## 3091 tour_idqyrkxqav UNITED STATES OF AMERICA     25-44
## 3092 tour_idrgydyn8y                    ITALY     25-44
## 3093 tour_idt5mb509o             SOUTH AFRICA     25-44
## 3094 tour_idq8dm90z5 UNITED STATES OF AMERICA     18-24
## 3095 tour_idqsyitps2           UNITED KINGDOM     45-64
## 3096 tour_id2bcpyj3j                  FINLAND     45-64
## 3097 tour_ide8a2ug2y                   CANADA     45-64
## 3098 tour_idn72jt150 UNITED STATES OF AMERICA     25-44
## 3099 tour_ids5cy23fp           UNITED KINGDOM     25-44
## 3100 tour_idvyb4mnbt                  GERMANY     25-44
## 3101 tour_idutwku8av                   CANADA     45-64
## 3102 tour_idsz8mapz5                    KENYA     45-64
## 3103 tour_idgdtj113d                 ZIMBABWE     25-44
## 3104 tour_idm5kv6l65                 PORTUGAL     25-44
## 3105 tour_iddekhqedu                   ZAMBIA     25-44
## 3106 tour_idb9oar33y               SWIZERLAND     25-44
## 3107 tour_idtcz3nxaq                AUSTRALIA     25-44
## 3108 tour_id5nvxt59e                   CANADA     45-64
## 3109 tour_idvddvme03                    ITALY     25-44
## 3110 tour_idmaxswbpj                   UGANDA     25-44
## 3111 tour_idpik1caaf             SOUTH AFRICA     25-44
## 3112 tour_idxxrvqyio                   ZAMBIA     25-44
## 3113 tour_id35rhv4cf                    JAPAN     25-44
## 3114 tour_idg3g9js88                    ITALY     25-44
## 3115 tour_idgxgfh4fk                   FRANCE     25-44
## 3116 tour_idt1t6s5ur                   FRANCE     25-44
## 3117 tour_id94ah5wap                    ITALY     45-64
## 3118 tour_id3b12bw6c             SOUTH AFRICA     25-44
## 3119 tour_idv85newne UNITED STATES OF AMERICA       65+
## 3120 tour_id4qav3vz6           UNITED KINGDOM     45-64
## 3121 tour_idpkb3lm17                    ITALY     45-64
## 3122 tour_idjsi4lnoq                    KENYA     45-64
## 3123 tour_idoydz5beq                   CANADA       65+
## 3124 tour_idtuy5qsgu           UNITED KINGDOM     25-44
## 3126 tour_idp8d29p5g                  BELGIUM     45-64
## 3127 tour_id7d0c44we UNITED STATES OF AMERICA     45-64
## 3128 tour_idvs4i7tlr                    ITALY     45-64
## 3129 tour_id3zdb9exx                    INDIA     25-44
## 3130 tour_idqfk5k0k0                AUSTRALIA     25-44
## 3131 tour_idqs806p2m                  GERMANY     18-24
## 3132 tour_id9byqqpi9 UNITED STATES OF AMERICA     25-44
## 3133 tour_idqsl05auf                 ZIMBABWE     45-64
## 3134 tour_idz6db9bwq                   CANADA     25-44
## 3136 tour_idk0uvxj0g                  GERMANY     45-64
## 3137 tour_id00e73al3                    SPAIN     25-44
## 3138 tour_idbcabz9a3           UNITED KINGDOM     45-64
## 3139 tour_iduayjnqig                   ZAMBIA     25-44
## 3140 tour_idicb8er3d                   UGANDA     25-44
## 3141 tour_idi7pbk9sq                   FRANCE     45-64
## 3142 tour_id2nkutdnz           UNITED KINGDOM     45-64
## 3143 tour_id996tfr6s                    INDIA     45-64
## 3144 tour_idmqfok1rs                   CANADA     45-64
## 3145 tour_idtzemuh7i           UNITED KINGDOM     18-24
## 3146 tour_id57pa2g09                      UAE     25-44
## 3147 tour_idr3l2xzxd                   FRANCE     25-44
## 3148 tour_idrory2mme                    ITALY       <18
## 3149 tour_id585dpt78           UNITED KINGDOM     45-64
## 3150 tour_idktflafz7                  DENMARK     45-64
## 3151 tour_iddk58fnr6                    KENYA     25-44
## 3152 tour_idt0bvt0y5                   RWANDA     25-44
## 3153 tour_idsopowk21 UNITED STATES OF AMERICA       65+
## 3154 tour_idg5toe6nj                 ZIMBABWE     25-44
## 3155 tour_id76xx4ws5           UNITED KINGDOM     25-44
## 3156 tour_idcr2ao3od                    INDIA     45-64
## 3157 tour_idv5i3jp3b UNITED STATES OF AMERICA     45-64
## 3158 tour_idxeoiiocg                   CANADA     25-44
## 3159 tour_idtnsofakh                  IRELAND     25-44
## 3160 tour_iduelqlfqk                    JAPAN     45-64
## 3161 tour_id8mwf9bt7                    SPAIN     25-44
## 3162 tour_idbth1r58c                    ITALY     18-24
## 3163 tour_idjcb2cgkh UNITED STATES OF AMERICA     25-44
## 3164 tour_id4uqhj8pi                    ITALY     45-64
## 3165 tour_idyqexkiqv                  GERMANY     45-64
## 3166 tour_idntcfhksd             SOUTH AFRICA     25-44
## 3167 tour_id1kat1797 UNITED STATES OF AMERICA       65+
## 3168 tour_idbea0rewj                   POLAND     25-44
## 3169 tour_id7sjtf6f8                 ZIMBABWE     25-44
## 3170 tour_idq6gobaoz              NETHERLANDS     45-64
## 3171 tour_id4dvf5dbf           UNITED KINGDOM     18-24
## 3172 tour_id3acrc2gj                   UGANDA     45-64
## 3173 tour_id2ci2tvle               SWIZERLAND     18-24
## 3174 tour_ide6ylk1c2 UNITED STATES OF AMERICA       65+
## 3175 tour_idtkjl71db                   RUSSIA     18-24
## 3177 tour_idpr2q51uj                      UAE     25-44
## 3178 tour_idheaqh7op           UNITED KINGDOM     25-44
## 3179 tour_idc4iknxaw                 ZIMBABWE     25-44
## 3180 tour_idfa6ykfrp                   CANADA     25-44
## 3181 tour_idhz6i3u6e              NETHERLANDS     45-64
## 3182 tour_id6tkk3kwh                   ZAMBIA     25-44
## 3183 tour_idhvthrthk           UNITED KINGDOM     25-44
## 3184 tour_id8j5y68yf                    JAPAN     18-24
## 3185 tour_idqy6bf6cc                    SPAIN     25-44
## 3186 tour_iditdv4k1n                   CANADA     45-64
## 3187 tour_idj1xxogta UNITED STATES OF AMERICA     45-64
## 3188 tour_idz7z7w9rd           UNITED KINGDOM     45-64
## 3189 tour_idmvz7axyq                   FRANCE     25-44
## 3190 tour_idy7mr8brx                   FRANCE     45-64
## 3191 tour_idujpslebl                    CHINA     18-24
## 3192 tour_idin80nryy UNITED STATES OF AMERICA     45-64
## 3193 tour_id56jcmj4g                  BELGIUM     45-64
## 3194 tour_idhwl5xi5j                    SPAIN     45-64
## 3195 tour_id11xytn8d                  BURUNDI     25-44
## 3196 tour_idr5i4t44r                    SPAIN     25-44
## 3197 tour_idvbgwbalz                   FRANCE     25-44
## 3198 tour_id1mibb6cu                    ITALY     25-44
## 3199 tour_idk8dkxzgh               MOZAMBIQUE     45-64
## 3200 tour_idyd3597g8                    CHINA     25-44
## 3201 tour_idxnb0yw62 UNITED STATES OF AMERICA       65+
## 3202 tour_id0e0yrcp1                   FRANCE     45-64
## 3203 tour_idltc7qk5g                   ZAMBIA     25-44
## 3204 tour_idwijkby28                   SWEDEN     45-64
## 3205 tour_idcuf05sil UNITED STATES OF AMERICA     45-64
## 3206 tour_id75kukha5           UNITED KINGDOM     25-44
## 3207 tour_idw2zmy5dj                    ITALY     25-44
## 3208 tour_idu609oy6e           UNITED KINGDOM     45-64
## 3210 tour_idfum3gx2l                  GERMANY     18-24
## 3211 tour_idwrziagyj                    KENYA     45-64
## 3213 tour_idv5fycjiy                  FINLAND     25-44
## 3215 tour_idrxqrc88g UNITED STATES OF AMERICA       65+
## 3216 tour_idy7nwk9h4             SOUTH AFRICA     25-44
## 3217 tour_idm9yxooai                   UGANDA     25-44
## 3218 tour_idcn0km5qi                  IRELAND     18-24
## 3219 tour_id26rcno9z                    KENYA     45-64
## 3221 tour_id9gt5i79q             SOUTH AFRICA     25-44
## 3222 tour_idvnxbbnag UNITED STATES OF AMERICA     25-44
## 3223 tour_idyrqhmq8w                   UGANDA     45-64
## 3224 tour_ido3djut0h                   ZAMBIA     25-44
## 3225 tour_idpbhm84vy UNITED STATES OF AMERICA       65+
## 3226 tour_idf1qqaxtl                    KOREA       65+
## 3227 tour_idl3wf77o4 UNITED STATES OF AMERICA     25-44
## 3228 tour_idji099bb4 UNITED STATES OF AMERICA     45-64
## 3229 tour_iday2tp7y7              NETHERLANDS     25-44
## 3230 tour_idc1tlpo71                  AUSTRIA       65+
## 3231 tour_idf5r1e4zu                    ITALY     25-44
## 3232 tour_id5vzfi5id                    KENYA     25-44
## 3233 tour_idjagtmsni                  GERMANY     25-44
## 3234 tour_idrol45yvz UNITED STATES OF AMERICA       65+
## 3235 tour_id3qfv2546           UNITED KINGDOM     18-24
## 3236 tour_idmyiwnngk                      UAE     25-44
## 3238 tour_ide6gzucro           UNITED KINGDOM     25-44
## 3239 tour_id5bhx0f7h                AUSTRALIA     45-64
## 3240 tour_id59g6stdj                    ITALY     25-44
## 3241 tour_idn8v9eh5b UNITED STATES OF AMERICA     25-44
## 3242 tour_idhy7o3cgg              NETHERLANDS     25-44
## 3243 tour_idooz9dmsm                    INDIA     25-44
## 3244 tour_idgzpiu2za                   FRANCE     25-44
## 3245 tour_idngb11110                    KENYA     45-64
## 3246 tour_id17vizctz                   CANADA     45-64
## 3247 tour_idh210264a                   FRANCE     45-64
## 3248 tour_idoa3b18yx                 PAKISTAN     45-64
## 3249 tour_idvzq9aorq                AUSTRALIA       65+
## 3250 tour_id4qx92y0r                   CANADA     45-64
## 3251 tour_idmspntvas           UNITED KINGDOM     18-24
## 3252 tour_id4467pe2q           UNITED KINGDOM     25-44
## 3253 tour_idi3ydo6k0                    KENYA     25-44
## 3254 tour_idnqmpmr3p UNITED STATES OF AMERICA     25-44
## 3255 tour_idtusxsq15                  GERMANY     18-24
## 3256 tour_idc3n75kob                    ITALY     25-44
## 3257 tour_id7weryggp                  BURUNDI     25-44
## 3258 tour_idzw678cng                    ITALY     25-44
## 3259 tour_idfjyr6jf5                 ZIMBABWE     25-44
## 3260 tour_idqumm9gj8 UNITED STATES OF AMERICA       65+
## 3261 tour_ids9u9p4mt                     IRAN     45-64
## 3262 tour_idvcghyi9r           UNITED KINGDOM     45-64
## 3263 tour_idj7p8lyl5                    ITALY     45-64
## 3264 tour_id7ci94zck             SOUTH AFRICA     45-64
## 3266 tour_idmpzgq3xb               SWIZERLAND     18-24
## 3267 tour_idtz9rxre1                    CHINA     18-24
## 3268 tour_idrh0ase4a                AUSTRALIA     18-24
## 3269 tour_id0ntpsqae                    ITALY     25-44
## 3270 tour_id33c1m664                   CANADA     25-44
## 3271 tour_id13j8j383 UNITED STATES OF AMERICA     25-44
## 3272 tour_idr029r0vo                    ITALY     25-44
## 3273 tour_idskbnl49g                   UGANDA     25-44
## 3274 tour_ide8hftcol                AUSTRALIA     18-24
## 3275 tour_idernn8vic                  GERMANY     25-44
## 3276 tour_id7i49d9wx           CZECH REPUBLIC     25-44
## 3277 tour_idx8us52hi                  ROMANIA     25-44
## 3278 tour_idrxyo8sdx                    ITALY     25-44
## 3279 tour_idz8356yps                   CANADA     45-64
## 3280 tour_idcn3u8cb8           UNITED KINGDOM     25-44
## 3282 tour_idcdxsegwv           UNITED KINGDOM     25-44
## 3283 tour_ids6ydk6xj                   CANADA     45-64
## 3284 tour_idsvchuo9g     UNITED ARAB EMIRATES     25-44
## 3285 tour_idz4pvq4j6           UNITED KINGDOM     25-44
## 3286 tour_id2zujgst2                    ITALY     25-44
## 3287 tour_idt9u2b4l6             SOUTH AFRICA     25-44
## 3288 tour_id9hb8boz8                   CANADA     25-44
## 3289 tour_idg421d2pt UNITED STATES OF AMERICA       65+
## 3290 tour_idh51igtm1                   FRANCE     45-64
## 3291 tour_idjkw3mt5v                AUSTRALIA     45-64
## 3292 tour_id25s35hm1                   CANADA     25-44
## 3293 tour_idoaq4evdn                  GERMANY     45-64
## 3294 tour_iddxhyxtmt                AUSTRALIA       65+
## 3295 tour_idl7xdr3jz                    SPAIN     18-24
## 3296 tour_idtdccm993                   ZAMBIA     25-44
## 3297 tour_id351y180u                    ITALY     25-44
## 3298 tour_id7fs0aq6n UNITED STATES OF AMERICA       65+
## 3299 tour_idijiopsx6                   POLAND     18-24
## 3300 tour_idk1nzhryo                AUSTRALIA     45-64
## 3301 tour_iduxiaq8q0           UNITED KINGDOM     25-44
## 3302 tour_iduz47nrgf UNITED STATES OF AMERICA       65+
## 3303 tour_idxnecvldx                    ITALY     45-64
## 3305 tour_idwyo2lh53                   UGANDA       65+
## 3306 tour_idlngcz8fq                    KENYA     18-24
## 3307 tour_idzb5p7kko                    ITALY     18-24
## 3308 tour_id3mkxp6xf                AUSTRALIA     45-64
## 3309 tour_id0m8aa1iz             SOUTH AFRICA     45-64
## 3310 tour_idg3zkahta                    INDIA     45-64
## 3312 tour_idyf2eb8k9                 ZIMBABWE     25-44
## 3313 tour_idbz9i19yi             SOUTH AFRICA     25-44
## 3314 tour_idal9848az UNITED STATES OF AMERICA     45-64
## 3315 tour_id5jry51z7                  GERMANY     45-64
## 3316 tour_idree3qlmu UNITED STATES OF AMERICA     45-64
## 3317 tour_idokzxm0by                   FRANCE     45-64
## 3318 tour_idpvqzpwpj                    KENYA     25-44
## 3319 tour_idxurntcvf                  IRELAND     25-44
## 3320 tour_id3kh38zxr                  BURUNDI     25-44
## 3321 tour_idyyxixat5                   UGANDA     25-44
## 3322 tour_id6l00d1gi UNITED STATES OF AMERICA     25-44
## 3323 tour_idkgzmkhsk                  GERMANY       65+
## 3324 tour_id4flim6lf                  FINLAND     25-44
## 3325 tour_id9zlw82e9                   FRANCE     45-64
## 3326 tour_id6kp8z6kr                   ZAMBIA     25-44
## 3327 tour_idd56crfdu              NETHERLANDS     45-64
## 3328 tour_idufkytul9                AUSTRALIA     25-44
## 3330 tour_id4put2ar2                   ZAMBIA     45-64
## 3331 tour_idj0y239m3                   CANADA     45-64
## 3332 tour_idjdsvrfss                   SWEDEN     25-44
## 3334 tour_id28vja7cx UNITED STATES OF AMERICA     45-64
## 3335 tour_ide5agq3qp                    ITALY     25-44
## 3336 tour_id66hpsuc4           UNITED KINGDOM     45-64
## 3337 tour_idoutnmy6k           UNITED KINGDOM     25-44
## 3338 tour_idhr4t3jou                    ITALY     45-64
## 3339 tour_idc16lc1qu                   ZAMBIA     25-44
## 3340 tour_idta19pajz                   NORWAY     25-44
## 3341 tour_idiji9bam2               SWIZERLAND     25-44
## 3342 tour_idfyfctib2                    ITALY     45-64
## 3343 tour_id67s781yz                  BELGIUM     25-44
## 3344 tour_idj6qsmg9y                  GERMANY     45-64
## 3346 tour_id37g51xqg UNITED STATES OF AMERICA       65+
## 3347 tour_id59m8g7gc UNITED STATES OF AMERICA     25-44
## 3348 tour_idvyvz5am8 UNITED STATES OF AMERICA     25-44
## 3349 tour_id6qpp51pv                   FRANCE     45-64
## 3350 tour_idmdhk0u26           UNITED KINGDOM     45-64
## 3351 tour_idz2ql2o8c                 ZIMBABWE     25-44
## 3352 tour_idotyfjdqh                  GERMANY     45-64
## 3353 tour_ida2g0bxpy                    SPAIN     25-44
## 3354 tour_id60iigtv4             SOUTH AFRICA     25-44
## 3355 tour_idbzfabsse                    ITALY     25-44
## 3356 tour_idsd9emlnx UNITED STATES OF AMERICA     45-64
## 3357 tour_idqvx38esp                   UGANDA       <18
## 3358 tour_id8gm3r7y0           UNITED KINGDOM     45-64
## 3359 tour_id3opdj0y5                   UKRAIN     25-44
## 3360 tour_idhkvtbyxl                    ITALY     45-64
## 3361 tour_iddeq9o92l                   FRANCE     45-64
## 3362 tour_ids3iexd71 UNITED STATES OF AMERICA       65+
## 3363 tour_idzeqy8gcd UNITED STATES OF AMERICA     25-44
## 3364 tour_id3jvta3az                    KENYA     45-64
## 3365 tour_idots42jqi                  IRELAND     25-44
## 3366 tour_id45nb361o                 ZIMBABWE     18-24
## 3367 tour_id4a5p6let                    CHINA     25-44
## 3368 tour_id7wo5nghw                  BELGIUM     45-64
## 3369 tour_idobrlqz3s           UNITED KINGDOM       65+
## 3370 tour_idcqpxw2ul                  AUSTRIA     45-64
## 3371 tour_idwm787l38                  BURUNDI     25-44
## 3372 tour_id2o2ll1mi               SWIZERLAND     45-64
## 3373 tour_idjifwwe0u           UNITED KINGDOM     45-64
## 3374 tour_idulrg2arf                    ITALY     25-44
## 3376 tour_id8ytpa3j8                   COMORO     45-64
## 3377 tour_idghd7oxo3               SWIZERLAND     45-64
## 3378 tour_idnd8vtikk                 ETHIOPIA     25-44
## 3379 tour_idslit4fhj UNITED STATES OF AMERICA     25-44
## 3380 tour_idrai29m22             SOUTH AFRICA     45-64
## 3381 tour_idwn4fzcy7                    ITALY     25-44
## 3382 tour_idwt9tx0vq                AUSTRALIA     25-44
## 3383 tour_idlr2q029l             SOUTH AFRICA     25-44
## 3384 tour_idejqo682b             SOUTH AFRICA     45-64
## 3385 tour_id2cyb37xo                  MORROCO     25-44
## 3386 tour_id1vq1aidp                    ITALY     45-64
## 3387 tour_idvilqw56e UNITED STATES OF AMERICA     45-64
## 3388 tour_id855ld8tn                   SWEDEN     25-44
## 3389 tour_ide1mh4zzm                 ETHIOPIA     45-64
## 3391 tour_idqzjt888i                   CANADA       65+
## 3392 tour_ideznl70a3               SWIZERLAND     25-44
## 3393 tour_idtntuufff                   CANADA     25-44
## 3394 tour_idjdeswh73 UNITED STATES OF AMERICA       65+
## 3395 tour_idjeh31cin                    CHINA     45-64
## 3396 tour_idv51udjg6                   SWEDEN     45-64
## 3398 tour_idi7a5jspf                    SPAIN     25-44
## 3399 tour_idliqpcp7j                   FRANCE     25-44
## 3400 tour_idm6p2z2ii                    CHINA     45-64
## 3401 tour_idg4ob6xvd                    INDIA     45-64
## 3402 tour_ido9nwl6o1                   POLAND     25-44
## 3403 tour_idnihozj2u                   CANADA     45-64
## 3404 tour_idz3ccvbge                AUSTRALIA       65+
## 3405 tour_idkc3qde43                  GERMANY     25-44
## 3406 tour_id9n01kuqd                    ITALY     25-44
## 3407 tour_idvajp4dxc                   FRANCE     25-44
## 3408 tour_id6i73d8gw                   FRANCE     45-64
## 3409 tour_id1rvlflfy           UNITED KINGDOM     25-44
## 3410 tour_idqt3c8ocr                  GERMANY     25-44
## 3411 tour_idmi80p3h6                  GERMANY     45-64
## 3413 tour_idpohjzujy                    SPAIN     45-64
## 3414 tour_id6qyvw1d7 UNITED STATES OF AMERICA     25-44
## 3415 tour_id8etpx4my                   UGANDA     25-44
## 3416 tour_id6n67s2b8 UNITED STATES OF AMERICA     25-44
## 3417 tour_idfl5l2t78                    KENYA     25-44
## 3418 tour_idrossmn0d           UNITED KINGDOM     25-44
## 3419 tour_ideznjiim6 UNITED STATES OF AMERICA     45-64
## 3422 tour_id3glg9jz1                    ITALY     18-24
## 3423 tour_id3xan0jyw                   RUSSIA     45-64
## 3424 tour_idd5s0ebk2                   UGANDA     25-44
## 3425 tour_idnctrxlk7                    SPAIN     25-44
## 3426 tour_idji5jrtn4 UNITED STATES OF AMERICA     45-64
## 3428 tour_idfnlyf79h                   CANADA     45-64
## 3429 tour_id1vz7u5on                  GERMANY     25-44
## 3430 tour_idjuz4l10x           UNITED KINGDOM     45-64
## 3431 tour_id9l94ffa8                    SPAIN     25-44
## 3432 tour_idj06wyex2                    SPAIN     25-44
## 3433 tour_id96vqp8ca           UNITED KINGDOM       65+
## 3434 tour_idv3mjswc4                  AUSTRIA     45-64
## 3435 tour_idnd16z3k7             SOUTH AFRICA     25-44
## 3436 tour_idwhsrpwjx                   ZAMBIA     25-44
## 3437 tour_iddvreqrke             SOUTH AFRICA     25-44
## 3438 tour_id5gmqem7w                    ITALY     25-44
## 3439 tour_idbhr82jis UNITED STATES OF AMERICA     18-24
## 3440 tour_idtoab57wa                    ITALY     25-44
## 3441 tour_idnf5o3lli                   FRANCE       65+
## 3442 tour_id6grwqdul UNITED STATES OF AMERICA       65+
## 3443 tour_idxwyn14i3 UNITED STATES OF AMERICA     25-44
## 3444 tour_idtw6id0jz           UNITED KINGDOM     45-64
## 3445 tour_idb9tw1xhe                    SPAIN     25-44
## 3446 tour_id03ak2hnm                   ZAMBIA     25-44
## 3447 tour_idrxzmm4cd UNITED STATES OF AMERICA     25-44
## 3448 tour_idflxlg2vh                  GERMANY     25-44
## 3449 tour_idylm5gjti UNITED STATES OF AMERICA     45-64
## 3450 tour_id0softgh8             SOUTH AFRICA     25-44
## 3451 tour_idasqzivc8                SINGAPORE     25-44
## 3452 tour_idq3zijwur               SWIZERLAND     45-64
## 3453 tour_idjeo92xgi UNITED STATES OF AMERICA       65+
## 3454 tour_idz163aoq0               SWIZERLAND     25-44
## 3455 tour_idtscrb8qg           UNITED KINGDOM     45-64
## 3456 tour_idotiydypf              NETHERLANDS     45-64
## 3457 tour_idu06ztf2q                  NAMIBIA     45-64
## 3458 tour_id5o3pd0kk                  AUSTRIA     25-44
## 3459 tour_idc1je5e8q UNITED STATES OF AMERICA       65+
## 3460 tour_id25o87nyr UNITED STATES OF AMERICA       65+
## 3461 tour_idfaofhgyn           UNITED KINGDOM     18-24
## 3462 tour_ids247yzbr                 ZIMBABWE     25-44
## 3463 tour_id3ttygtxw                   NORWAY     45-64
## 3464 tour_idb706603c                    JAPAN     25-44
## 3465 tour_id5a5yt7nl                  FINLAND     45-64
## 3466 tour_idelqj97pd                    ITALY     25-44
## 3467 tour_idsazb09al                  GERMANY     45-64
## 3468 tour_idhlxc932u              NEW ZEALAND     25-44
## 3469 tour_idkwi2x76a                    ITALY     45-64
## 3470 tour_idwpxsjfo8                   FRANCE     25-44
## 3471 tour_idfrqh5fga           UNITED KINGDOM     25-44
## 3472 tour_id9ki729zn                   FRANCE     25-44
## 3473 tour_id81qy3jkw           UNITED KINGDOM     45-64
## 3474 tour_ida7ccbye3                   NORWAY     25-44
## 3476 tour_id46nw779j                   ZAMBIA     45-64
## 3477 tour_idk2atep42                   SWEDEN       65+
## 3478 tour_idvm9bxk5b                    INDIA     45-64
## 3479 tour_idy0jym9xa           UNITED KINGDOM     25-44
## 3480 tour_idnn7ryt1i                   UGANDA     25-44
## 3481 tour_idq7ckdhcn                  GERMANY     45-64
## 3483 tour_idd0du4jjo UNITED STATES OF AMERICA     45-64
## 3484 tour_id6te3c4ia                   FRANCE       65+
## 3485 tour_idhrjz9506           UNITED KINGDOM     45-64
## 3486 tour_idcu0hq86m                   FRANCE     45-64
## 3487 tour_idqx4djw4i                   UGANDA     45-64
## 3489 tour_idxjfv7knn                    KOREA       65+
## 3490 tour_idvyad0vyy                AUSTRALIA     25-44
## 3491 tour_idnw5f1oox UNITED STATES OF AMERICA     45-64
## 3492 tour_id4338n4kb             SOUTH AFRICA     25-44
## 3493 tour_idxdx8tga1 UNITED STATES OF AMERICA     45-64
## 3494 tour_ide2c7ecdn UNITED STATES OF AMERICA     25-44
## 3495 tour_idtf0voe3k UNITED STATES OF AMERICA       65+
## 3496 tour_iduigzzktw                    SPAIN     25-44
## 3497 tour_idepwx7uh3                   NORWAY     45-64
## 3498 tour_idqqvnnpgz           UNITED KINGDOM     18-24
## 3499 tour_idbt8hghl6                   ZAMBIA     25-44
## 3500 tour_idi13x3tc5           UNITED KINGDOM     18-24
## 3501 tour_id288n44rq           UNITED KINGDOM     45-64
## 3502 tour_id1u7jkx8q UNITED STATES OF AMERICA       65+
## 3503 tour_idnxzyju6o                    ITALY     45-64
## 3504 tour_idt1jln4b1                    KOREA     45-64
## 3505 tour_id8b94omkn                   FRANCE     45-64
## 3506 tour_id49wzbjnp UNITED STATES OF AMERICA     45-64
## 3507 tour_idk1m9btyw                  DENMARK     45-64
## 3508 tour_idgr5m1f93                   FRANCE     18-24
## 3510 tour_idphio5h7j                AUSTRALIA     45-64
## 3511 tour_id7twe4lin                    KENYA     25-44
## 3512 tour_idlvizou9k           UNITED KINGDOM     18-24
## 3513 tour_id07rjvd7f                    ITALY     45-64
## 3514 tour_id8nlgpafy                  BAHRAIN     25-44
## 3515 tour_idk4j4mw88                  GERMANY     45-64
## 3516 tour_idabxab0b9                    ITALY     45-64
## 3517 tour_id8f7csi6h UNITED STATES OF AMERICA       65+
## 3518 tour_id5yr3u1ox                   ZAMBIA     45-64
## 3519 tour_id9oqod220               SWIZERLAND     25-44
## 3520 tour_ida5eoydbn                    ITALY     25-44
## 3521 tour_id9vcsd69p                 MALAYSIA     25-44
## 3522 tour_idfjutmhdu UNITED STATES OF AMERICA     18-24
## 3523 tour_id0el0z0g3                  GERMANY     45-64
## 3524 tour_id0a6lxi1m                    ITALY     45-64
## 3525 tour_id47i8fgyv           UNITED KINGDOM     25-44
## 3526 tour_iduhx8eclu                    ITALY       65+
## 3527 tour_idpgbnf3du                      UAE     18-24
## 3528 tour_idbw6vho61                 ZIMBABWE     25-44
## 3529 tour_idjzfbbswg                    EGYPT     25-44
## 3530 tour_id9yqix2mo                    KENYA     45-64
## 3531 tour_idlumdt8o8                  GERMANY     45-64
## 3532 tour_id104cywbg UNITED STATES OF AMERICA     25-44
## 3533 tour_id2atjq3a9           UNITED KINGDOM     45-64
## 3534 tour_ideq3cp3o6                   CANADA     45-64
## 3535 tour_idehe6cke3             SOUTH AFRICA     25-44
## 3536 tour_idpq23e0gc                    ITALY     25-44
## 3537 tour_id9bdk6mu6 UNITED STATES OF AMERICA     18-24
## 3538 tour_idlrzkdoiw                    ITALY     18-24
## 3539 tour_idrt4visth                    NEPAL     45-64
## 3540 tour_idgkmfvie4 UNITED STATES OF AMERICA     18-24
## 3541 tour_idwxjf40qk     UNITED ARAB EMIRATES     25-44
## 3542 tour_idsl935djs           UNITED KINGDOM     25-44
## 3544 tour_idhgjpneq6                    ITALY     45-64
## 3545 tour_ideq26d9tb                     OMAN     25-44
## 3546 tour_idar50ik0t                   CANADA     18-24
## 3547 tour_idzuqgon23                     OMAN     45-64
## 3548 tour_idylae9gff                  GERMANY     45-64
## 3549 tour_idsba9dff0                   ZAMBIA     45-64
## 3550 tour_idecdqhnpe              NETHERLANDS     25-44
## 3551 tour_idy5let25e                  AUSTRIA     45-64
## 3552 tour_idmcviws4y                  CROATIA     25-44
## 3553 tour_idz50z2oqi                    CHINA     45-64
## 3554 tour_id6rwannra UNITED STATES OF AMERICA       65+
## 3555 tour_id8uivyisy             SOUTH AFRICA     25-44
## 3556 tour_idk74unwfh UNITED STATES OF AMERICA       65+
## 3557 tour_idb3xpupp9             SOUTH AFRICA     25-44
## 3558 tour_id1fp3hy2x UNITED STATES OF AMERICA       65+
## 3559 tour_idsaldvhlv UNITED STATES OF AMERICA     45-64
## 3560 tour_id3oue89dq                  GERMANY     25-44
## 3561 tour_id2ged05mp                   ZAMBIA     18-24
## 3562 tour_idimb6vmjx UNITED STATES OF AMERICA     45-64
## 3563 tour_idotm33vat                      UAE     25-44
## 3564 tour_idc0cr5tej                AUSTRALIA     45-64
## 3565 tour_idz7njenv3                 MALAYSIA     45-64
## 3567 tour_id657lxjo2              NETHERLANDS       65+
## 3568 tour_idb88vse19                 ZIMBABWE     25-44
## 3569 tour_idh76vbohh                   CANADA     18-24
## 3570 tour_idr1xhw6m8                AUSTRALIA     25-44
## 3571 tour_idsk1on45w                   FRANCE     45-64
## 3573 tour_id9mg82c0l                  BURUNDI     25-44
## 3574 tour_idivpbpvxw           UNITED KINGDOM     45-64
## 3575 tour_idq566w4p7 UNITED STATES OF AMERICA     45-64
## 3576 tour_idy79tdrkx             SOUTH AFRICA     45-64
## 3577 tour_idxgd4ugne                  GERMANY     25-44
## 3578 tour_idzo3emel3              NETHERLANDS       65+
## 3579 tour_id4zzvd72e                 ZIMBABWE     18-24
## 3580 tour_idbocs7r7p                 ZIMBABWE     45-64
## 3581 tour_idvo6xy38u                   SWEDEN     18-24
## 3582 tour_idkph9kgxj                   POLAND     18-24
## 3583 tour_idnk4imwy8                   RWANDA     25-44
## 3584 tour_id100pskf9                   BRAZIL     25-44
## 3585 tour_idve94d8ft             SOUTH AFRICA     45-64
## 3586 tour_idyre50qme           UNITED KINGDOM     25-44
## 3587 tour_idjx5xhxuh                    KENYA     25-44
## 3588 tour_idmcznsdbq                   SWEDEN     25-44
## 3589 tour_id80ijlq1r                    KENYA     45-64
## 3590 tour_idv9bwcrfb                 ZIMBABWE     25-44
## 3591 tour_idqgau0jrm                    ITALY     45-64
## 3592 tour_idh03rxe3i UNITED STATES OF AMERICA     25-44
## 3593 tour_idgpkcc3uv           UNITED KINGDOM     18-24
## 3594 tour_idqjha6gcs               SWIZERLAND     25-44
## 3595 tour_idqsagb2nr                 MALAYSIA     45-64
## 3596 tour_idjw9n41tp                   UGANDA     25-44
## 3597 tour_idk3h02i7b UNITED STATES OF AMERICA       65+
## 3598 tour_idjblce6r7                   FRANCE     18-24
## 3599 tour_id41fh6gd6                   SOMALI     25-44
## 3600 tour_idkoeaybwo                AUSTRALIA     45-64
## 3601 tour_idu4r9fqyb           UNITED KINGDOM     25-44
## 3602 tour_idfbluaugn                    KENYA     45-64
## 3603 tour_idmnlqtb6n                   FRANCE     25-44
## 3604 tour_id4sj4gysm                  GERMANY     18-24
## 3605 tour_idxcxobf81                  GERMANY     25-44
## 3606 tour_ids8td0uet              NETHERLANDS     25-44
## 3607 tour_idl81397wq             SOUTH AFRICA     25-44
## 3608 tour_idtuup6lnq                    ITALY     25-44
## 3609 tour_id165tsmk3           UNITED KINGDOM     25-44
## 3610 tour_idao30l1xx UNITED STATES OF AMERICA     25-44
## 3611 tour_idjrz1blmp                 PORTUGAL     45-64
## 3612 tour_idazz3ro5q                   FRANCE     45-64
## 3613 tour_id5p64j6lm                   FRANCE     45-64
## 3614 tour_id5y3oepcn                   FRANCE     45-64
## 3615 tour_idwzqivwiz                   BRAZIL     18-24
## 3616 tour_ido6h8l372           UNITED KINGDOM     18-24
## 3617 tour_id7zz7sdhx                   ZAMBIA     25-44
## 3618 tour_idcmb3j249                  LIBERIA     25-44
## 3619 tour_idkqgumx7e                    ITALY     45-64
## 3620 tour_id3xu0vwga                   FRANCE     45-64
## 3621 tour_idk1m7cxhi                      UAE     45-64
## 3622 tour_id596bompe                    KENYA     45-64
## 3623 tour_idufg7oemu UNITED STATES OF AMERICA     45-64
## 3624 tour_idj0l7iy3x                    SPAIN     25-44
## 3625 tour_id3v31qlab           UNITED KINGDOM     45-64
## 3627 tour_id30vpks5m           UNITED KINGDOM     45-64
## 3628 tour_idueh4isiw UNITED STATES OF AMERICA     45-64
## 3629 tour_idtgvtcvrb                    KOREA     45-64
## 3630 tour_id09i1mryo                    ITALY     25-44
## 3631 tour_id06hrz5bh                  GERMANY     18-24
## 3632 tour_idpr7c5035                    ITALY     25-44
## 3633 tour_iddh9du2gq                AUSTRALIA       65+
## 3634 tour_idlfmt3xb0                  GERMANY     45-64
## 3635 tour_id2jewrx8w                    ITALY     18-24
## 3637 tour_idg51l54ak                   RUSSIA     45-64
## 3638 tour_id0r0xfyf1 UNITED STATES OF AMERICA     45-64
## 3639 tour_idkfh5g5ou                    ITALY     25-44
## 3640 tour_id1jm26vov                    INDIA       65+
## 3641 tour_idy2iig963                    ITALY     45-64
## 3642 tour_id35rumwtw                   POLAND       <18
## 3643 tour_idomd1meou                   NORWAY     18-24
## 3644 tour_iddut8x5h4 UNITED STATES OF AMERICA     45-64
## 3645 tour_id3gvyrinm                  GERMANY     45-64
## 3646 tour_idkqo43226           UNITED KINGDOM       65+
## 3647 tour_idvrvap9pp                      UAE       <18
## 3648 tour_idw81euum0 UNITED STATES OF AMERICA     45-64
## 3649 tour_idapvm08wm                    JAPAN     18-24
## 3650 tour_idobckl8z4                 SCOTLAND     45-64
## 3652 tour_ida8nm66yl           UNITED KINGDOM     25-44
## 3653 tour_id0q8gotqd                 ZIMBABWE     25-44
## 3654 tour_ids8cci6r6                   ZAMBIA     45-64
## 3655 tour_idxb2gdmzx             SOUTH AFRICA     25-44
## 3656 tour_idgddizwuo                    ITALY     45-64
## 3657 tour_id9wiobnsp UNITED STATES OF AMERICA     45-64
## 3658 tour_id8n4gmw8e                   FRANCE     25-44
## 3659 tour_ide3m0hs1y                  FINLAND     45-64
## 3660 tour_idt2top5d7                AUSTRALIA     25-44
## 3661 tour_idf68fuek3                   FRANCE     25-44
## 3662 tour_idou08u8sv                      UAE     25-44
## 3663 tour_idksen2kv1                    ITALY     45-64
## 3664 tour_iditee6nko                   FRANCE     25-44
## 3665 tour_idhcuqleng                    KENYA     25-44
## 3667 tour_id37qfpllv              NETHERLANDS     45-64
## 3668 tour_idui7xljii                    KENYA     45-64
## 3670 tour_idq3yxl9uv                    KENYA     25-44
## 3671 tour_idwek8z9xa                 THAILAND     25-44
## 3672 tour_idrmrhj3l3                MAURITIUS     25-44
## 3673 tour_idbnd4wxp4                      UAE     25-44
## 3674 tour_idvdgk5cos UNITED STATES OF AMERICA     25-44
## 3675 tour_idl49xm1y7                    INDIA     25-44
## 3676 tour_idc20l94w0                SWAZILAND     18-24
## 3677 tour_idaoqk855d           UNITED KINGDOM     45-64
## 3678 tour_id0jjysy7t                    ITALY       65+
## 3679 tour_idiktt6vyl                  GERMANY     25-44
## 3680 tour_id5nrlx758                    ITALY     25-44
## 3681 tour_idon9ff3jp                   MEXICO       65+
## 3682 tour_id53kqjqxd                   FRANCE     25-44
## 3683 tour_idm0xg10ln                   CANADA     45-64
## 3684 tour_idwpno1vjp                   FRANCE     25-44
## 3685 tour_idezd592zf                AUSTRALIA       65+
## 3686 tour_idhou1d9cp           UNITED KINGDOM     45-64
## 3687 tour_idvrjq1k04                   FRANCE     25-44
## 3688 tour_idzdmwlkv5                   NORWAY       65+
## 3689 tour_id6o5hsrt3                  GERMANY     25-44
## 3690 tour_idozn9d9o5              NETHERLANDS     18-24
## 3691 tour_idl6lgvaw6                    KENYA     25-44
## 3692 tour_idcqzm46gj              NETHERLANDS     45-64
## 3694 tour_idj9jhhdx3             SOUTH AFRICA     25-44
## 3695 tour_idlg7mc23i                    ITALY     45-64
## 3696 tour_id2z5xlutd                    SPAIN     18-24
## 3697 tour_idbnxb2qx0                   FRANCE     45-64
## 3698 tour_iduzwkdvxj           UNITED KINGDOM     45-64
## 3699 tour_idvjeveu2g                   CANADA     25-44
## 3700 tour_idmpfvu2qg                   UGANDA     25-44
## 3701 tour_idpqczoqc1                   UGANDA       65+
## 3702 tour_id6lcwu61d     UNITED ARAB EMIRATES     18-24
## 3703 tour_iddsqfeb0v UNITED STATES OF AMERICA       65+
## 3704 tour_id6uzkusg7              NETHERLANDS     45-64
## 3706 tour_idp3ntqjb3           UNITED KINGDOM     45-64
## 3707 tour_id1q5w79hl UNITED STATES OF AMERICA     25-44
## 3708 tour_idlc6jw31y UNITED STATES OF AMERICA     45-64
## 3709 tour_idhe2tbeau           UNITED KINGDOM     45-64
## 3710 tour_idlhrpqf2f                   CANADA     45-64
## 3711 tour_idtyrmm8hf               SWIZERLAND     18-24
## 3712 tour_id59cks40i                  AUSTRIA       65+
## 3713 tour_idth7o7p6j           UNITED KINGDOM     25-44
## 3714 tour_id6aqpfhhq UNITED STATES OF AMERICA     25-44
## 3715 tour_id4o7c8opm                    SPAIN     25-44
## 3716 tour_id5bjc09zl                  GERMANY     25-44
## 3717 tour_id704gil47           UNITED KINGDOM     18-24
## 3718 tour_id75rbxuj7           UNITED KINGDOM     25-44
## 3719 tour_idm0uw4j0j                 SCOTLAND     45-64
## 3720 tour_id4gk8hdgk                    SPAIN     25-44
## 3721 tour_idgjoqjy5d           UNITED KINGDOM     45-64
## 3722 tour_idgg3hn8oh                    JAPAN       65+
## 3723 tour_id1o94mv8j                    ITALY     45-64
## 3724 tour_idc8ckmdcn                  GERMANY     25-44
## 3725 tour_idewksq3kn                   RWANDA     25-44
## 3726 tour_id4aybcd80                  GERMANY     25-44
## 3727 tour_idyyaaov72           UNITED KINGDOM     25-44
## 3728 tour_ido47jo0rq           UNITED KINGDOM     18-24
## 3729 tour_iduzmj14kp UNITED STATES OF AMERICA     45-64
## 3730 tour_idfwyxpmfo                    KENYA     25-44
## 3731 tour_idsaic1spo                   CANADA       65+
## 3732 tour_iddw3kn028           UNITED KINGDOM     25-44
## 3733 tour_idjppttko4                AUSTRALIA       65+
## 3734 tour_idahmx6v4z                   POLAND     18-24
## 3736 tour_id37l7s9ni                    KENYA     45-64
## 3737 tour_idlgvvdcpn UNITED STATES OF AMERICA       65+
## 3738 tour_idtmafwa4v             SOUTH AFRICA     18-24
## 3739 tour_ids9qnz265                   GAMBIA     25-44
## 3740 tour_idu0ti6rhk UNITED STATES OF AMERICA     25-44
## 3741 tour_idxiflhsxx                   UGANDA     25-44
## 3742 tour_idnpreyiba                    ITALY     25-44
## 3743 tour_idk2e1cpb3 UNITED STATES OF AMERICA     25-44
## 3744 tour_id249bp3ra                  FINLAND     45-64
## 3745 tour_idfckmu0nt                  AUSTRIA     25-44
## 3746 tour_idzzgav42m                  GERMANY     25-44
## 3747 tour_idvzzfaurp              NETHERLANDS     45-64
## 3748 tour_id9olvnwla                   FRANCE     45-64
## 3749 tour_id8t0lkv7w           UNITED KINGDOM     18-24
## 3750 tour_id0y4fpkr8           UNITED KINGDOM     25-44
## 3751 tour_idd2q3dt8j UNITED STATES OF AMERICA       65+
## 3752 tour_id3pw3azm9           UNITED KINGDOM     18-24
## 3753 tour_idxyeq6133             SOUTH AFRICA     25-44
## 3754 tour_idcoivpwve                AUSTRALIA     45-64
## 3755 tour_id44br3jd2                   CANADA     25-44
## 3756 tour_idow9k38l6 UNITED STATES OF AMERICA     25-44
## 3757 tour_idl7lznl9x           UNITED KINGDOM     45-64
## 3758 tour_idni8nqq82                 ZIMBABWE     25-44
## 3759 tour_idciysgv26 UNITED STATES OF AMERICA     25-44
## 3760 tour_idp5nojqc3                  GERMANY     45-64
## 3761 tour_idzoldgis9              NETHERLANDS     25-44
## 3762 tour_id8n2ymd95                 PAKISTAN     45-64
## 3763 tour_idrxmgskxl UNITED STATES OF AMERICA       65+
## 3764 tour_idxeoplh0h           UNITED KINGDOM     18-24
## 3765 tour_id1p2etiw9                    ITALY     25-44
## 3766 tour_id5ewc1fro                  GERMANY     25-44
## 3767 tour_idwk2ppr6d                   ZAMBIA     25-44
## 3768 tour_id60eldjhm                AUSTRALIA     45-64
## 3769 tour_idmg8znmm3                    KENYA     25-44
## 3770 tour_idiwbf6jkv           UNITED KINGDOM     25-44
## 3771 tour_idaeayd42j                    ITALY     25-44
## 3774 tour_idq97ul13n           UNITED KINGDOM     25-44
## 3775 tour_idaeby38g9                   NORWAY     25-44
## 3776 tour_id93qb5xy3 UNITED STATES OF AMERICA     45-64
## 3777 tour_idaegpr6f0           UNITED KINGDOM     18-24
## 3778 tour_id8y3w40h8             SOUTH AFRICA     25-44
## 3779 tour_idt2llyhs0                  AUSTRIA     45-64
## 3780 tour_ida3mhpex0 UNITED STATES OF AMERICA       65+
## 3781 tour_id8iddgr5n UNITED STATES OF AMERICA     45-64
## 3782 tour_idfuts6yyt           UNITED KINGDOM     25-44
## 3783 tour_idjfz08ss2                    INDIA     45-64
## 3784 tour_idlnsgl1ps                    ITALY     45-64
## 3785 tour_idatb7b6rc                    CONGO     25-44
## 3786 tour_id60rzn1s8                   NORWAY       65+
## 3787 tour_idqeo9gq73                   NORWAY     25-44
## 3788 tour_idgyq89dg8                  BELGIUM     18-24
## 3789 tour_idkhgtcbbh                   ZAMBIA     25-44
## 3790 tour_ideq9bezvc                   FRANCE     25-44
## 3791 tour_idttwo1q82                AUSTRALIA       65+
## 3792 tour_id8b1fevcs                   NORWAY       65+
## 3793 tour_idpb4p7ar6                 ZIMBABWE     25-44
## 3794 tour_id7i9x4cst                  GERMANY     25-44
## 3795 tour_id3jxzawt8               SWIZERLAND     45-64
## 3796 tour_idxuts8ph6           UNITED KINGDOM     18-24
## 3797 tour_id7ni3dqxm           UNITED KINGDOM     18-24
## 3798 tour_idcjzhdeha                  BURUNDI     18-24
## 3800 tour_idbl3raols                  NAMIBIA     25-44
## 3801 tour_id7ovb58f4           UNITED KINGDOM     45-64
## 3802 tour_ido8u13sbp               SWIZERLAND     45-64
## 3803 tour_ido66pn38i                  BELGIUM     45-64
## 3804 tour_id6ttxvssq                    INDIA     25-44
## 3806 tour_idqkp2t8l4           UNITED KINGDOM     18-24
## 3807 tour_idtqazuy3r                   SWEDEN     25-44
## 3808 tour_ide77a4qnt             SOUTH AFRICA     45-64
## 3809 tour_idvdhc0h7w     UNITED ARAB EMIRATES     25-44
## 3810 tour_idqugixiun           UNITED KINGDOM     25-44
## 3811 tour_idkk79y6up                  GERMANY     25-44
## 3812 tour_idqbdvh715             SOUTH AFRICA     18-24
## 3813 tour_id30vta4qu UNITED STATES OF AMERICA     45-64
## 3814 tour_id9urpa2wl                    ITALY     25-44
## 3815 tour_id753wmulq           UNITED KINGDOM     45-64
## 3816 tour_idb8r8vu8v             SOUTH AFRICA     25-44
## 3817 tour_idbfiqq65r UNITED STATES OF AMERICA     18-24
## 3818 tour_id2dtz3dz6 UNITED STATES OF AMERICA     25-44
## 3819 tour_idl909btp2                  GERMANY     45-64
## 3820 tour_id4lwvo91u                   ZAMBIA     45-64
## 3821 tour_idiav3adjb                AUSTRALIA       65+
## 3822 tour_idjnmu3uq2                  DENMARK     18-24
## 3823 tour_id2yaqhsg8           UNITED KINGDOM     25-44
## 3824 tour_idd3iazvy2                   CANADA     18-24
## 3825 tour_idgxr81nlv                 ZIMBABWE     25-44
## 3826 tour_idogxvvhns                   SWEDEN       65+
## 3827 tour_idnxup48q1                  GERMANY     45-64
## 3828 tour_idmdl8o9xc                   MEXICO     25-44
## 3829 tour_idn9y6ckga                  GERMANY     45-64
## 3830 tour_idgraiq6xr                    ITALY     25-44
## 3831 tour_id5bv1c9ma UNITED STATES OF AMERICA       65+
## 3832 tour_idzbd6279u                   UGANDA     25-44
## 3833 tour_idgzq88may                    ITALY     45-64
## 3834 tour_id3gkbdk17                AUSTRALIA       65+
## 3835 tour_id3fu7ryzz             SOUTH AFRICA     45-64
## 3836 tour_idine0oera               SWIZERLAND     45-64
## 3837 tour_idp6sx0s7q UNITED STATES OF AMERICA     25-44
## 3838 tour_id72c3kucn                AUSTRALIA       65+
## 3839 tour_id33br10e0             SOUTH AFRICA     25-44
## 3840 tour_ido59lek3j             SOUTH AFRICA     18-24
## 3841 tour_idaztn4w28           UNITED KINGDOM       65+
## 3842 tour_id6pbl9wzq                   FRANCE     45-64
## 3843 tour_idlhkr96fu                  AUSTRIA     18-24
## 3844 tour_idmhf4b88z           CZECH REPUBLIC     18-24
## 3846 tour_idn6rmm7xf UNITED STATES OF AMERICA     25-44
## 3847 tour_idlla6bqto                   FRANCE       65+
## 3848 tour_id7oagfaoe                   ZAMBIA     45-64
## 3849 tour_idv9gmyxe1           UNITED KINGDOM     18-24
## 3850 tour_id60smcesr                   CANADA     45-64
## 3851 tour_idoc2qyfs3                    ITALY     45-64
## 3852 tour_idwd9fijuq                    ITALY     25-44
## 3853 tour_idi55mbjxg                  GERMANY     45-64
## 3854 tour_idusv7dwd3             SOUTH AFRICA     25-44
## 3855 tour_id1utbmfzv                   BRAZIL     45-64
## 3856 tour_idsscsu8b6                    SPAIN     25-44
## 3857 tour_idfzshb6zq           UNITED KINGDOM     45-64
## 3858 tour_id0fbagvg0                   POLAND     25-44
## 3859 tour_idmub6rh0n UNITED STATES OF AMERICA     25-44
## 3860 tour_idrbh0nkz1                   CANADA     25-44
## 3861 tour_iddmh20uuo                   CANADA     25-44
## 3862 tour_id9tjb6uhs                   UGANDA     25-44
## 3863 tour_idq1fgxtf6 UNITED STATES OF AMERICA     45-64
## 3864 tour_id5zdqvn6n                    KENYA     25-44
## 3865 tour_idg7vftf10                AUSTRALIA     45-64
## 3866 tour_idr5ikjmee UNITED STATES OF AMERICA     45-64
## 3867 tour_id7tahaspv                  DENMARK     25-44
## 3868 tour_idzskqgeqy                    ITALY     45-64
## 3869 tour_idyg1calm8                   ZAMBIA     25-44
## 3870 tour_idwj5g4l4w UNITED STATES OF AMERICA     18-24
## 3871 tour_idq5xx08xv UNITED STATES OF AMERICA     25-44
## 3872 tour_ids4t812bw                    KENYA     45-64
## 3873 tour_idtbdusk5a UNITED STATES OF AMERICA       65+
## 3874 tour_id97qte19y           UNITED KINGDOM     25-44
## 3875 tour_idyyo0dd2n           UNITED KINGDOM     25-44
## 3876 tour_idjx9w2szp                   CANADA     18-24
## 3877 tour_id3du4mcn2                    INDIA     45-64
## 3878 tour_ids8znvy6n                  IRELAND     45-64
## 3879 tour_id7n79jacw UNITED STATES OF AMERICA     25-44
## 3880 tour_id6a3cmxxo                AUSTRALIA     18-24
## 3881 tour_idr0n9jkh5 UNITED STATES OF AMERICA       65+
## 3882 tour_idkdzhv89n              NETHERLANDS     45-64
## 3883 tour_idcg2te981 UNITED STATES OF AMERICA       65+
## 3884 tour_idmj7z7en4                    KOREA     25-44
## 3885 tour_ididnbi44s                  BELGIUM     18-24
## 3886 tour_iduzrfv6qv           UNITED KINGDOM     18-24
## 3887 tour_idqvygqrpm                    ITALY     45-64
## 3888 tour_id488ddryo UNITED STATES OF AMERICA       65+
## 3889 tour_id0mwblbkp                  GERMANY     25-44
## 3890 tour_id6qeebxpk           UNITED KINGDOM     25-44
## 3891 tour_id022s9d6n UNITED STATES OF AMERICA     45-64
## 3892 tour_idzsjpb4rh                   ZAMBIA     45-64
## 3893 tour_id1oghe7kt              NETHERLANDS     45-64
## 3894 tour_idw15s617r UNITED STATES OF AMERICA     45-64
## 3895 tour_idy0c4jh27                   ZAMBIA     25-44
## 3896 tour_id84qpdqir                    SPAIN     18-24
## 3897 tour_ids9ftr5rp                    KENYA     45-64
## 3898 tour_idrajfzcch                   FRANCE     25-44
## 3899 tour_iduy7csqox                  GERMANY     45-64
## 3900 tour_id92n4sg3j              NETHERLANDS     45-64
## 3902 tour_id7xnmx9yj                    ITALY     25-44
## 3903 tour_idpsk4qimg UNITED STATES OF AMERICA       65+
## 3904 tour_ida9v7tbdi                    ITALY     45-64
## 3905 tour_id65kxat1s                    JAPAN       65+
## 3906 tour_idtb6srtjy                   FRANCE     25-44
## 3907 tour_iduqrqnii5                  GERMANY       65+
## 3908 tour_id991vkuwi              NETHERLANDS       65+
## 3909 tour_idxkcc9xt6                    ITALY     45-64
## 3910 tour_idr1xrkc1i                    KENYA     25-44
## 3911 tour_idod0xd24k           UNITED KINGDOM     45-64
## 3912 tour_id9f2bidur                  DENMARK     25-44
## 3913 tour_idmftkuvhh                   FRANCE     45-64
## 3914 tour_idw9wvlvgb                 ZIMBABWE     25-44
## 3915 tour_idceiekwma UNITED STATES OF AMERICA     45-64
## 3916 tour_ids8erlnoh                    ITALY     25-44
## 3917 tour_idktu85659 UNITED STATES OF AMERICA     45-64
## 3918 tour_id3j3o9qyy               SWIZERLAND     25-44
## 3919 tour_idddyjsr7i           UNITED KINGDOM     25-44
## 3920 tour_iddh2wyqt3                   ZAMBIA     25-44
## 3921 tour_idg25pjiws                   ZAMBIA     25-44
## 3922 tour_idcljldppm                   CANADA     25-44
## 3923 tour_id29r7rxq7 UNITED STATES OF AMERICA       65+
## 3924 tour_idsbhongmm                  DENMARK     25-44
## 3925 tour_idxg9vypik                    INDIA     25-44
## 3926 tour_idgxo86pr4           UNITED KINGDOM     45-64
## 3927 tour_idjzldawt3                  DENMARK     45-64
## 3928 tour_idzrqye5bh                    INDIA     25-44
## 3929 tour_ide8umdexo                 PORTUGAL       <18
## 3930 tour_idaia0673f                 ZIMBABWE     25-44
## 3931 tour_idzo3thjf5 UNITED STATES OF AMERICA     25-44
## 3932 tour_id4v1joji4 UNITED STATES OF AMERICA     25-44
## 3933 tour_id7fv32q32 UNITED STATES OF AMERICA     18-24
## 3934 tour_ide6672s0i                    SPAIN     45-64
## 3935 tour_idz4wjymfb                    KENYA     45-64
## 3936 tour_idsvt9z67h                    CHINA     25-44
## 3937 tour_idyg6myyk1 UNITED STATES OF AMERICA       65+
## 3939 tour_iduq9eisah                    ITALY     45-64
## 3940 tour_idlh2aqgpq UNITED STATES OF AMERICA     45-64
## 3941 tour_idq86yjng2                 TANZANIA     25-44
## 3943 tour_idbys7qruk                  ROMANIA     18-24
## 3944 tour_idxdyisda1           UNITED KINGDOM     25-44
## 3945 tour_idvp596llm                   RWANDA     25-44
## 3946 tour_id3lago1pl                  GERMANY     45-64
## 3947 tour_id0v34q9ud                    ITALY     25-44
## 3949 tour_idwm2yayj0                AUSTRALIA     25-44
## 3950 tour_idfh5zab5c                AUSTRALIA     25-44
## 3952 tour_idd6ce0g4u                   SWEDEN     25-44
## 3953 tour_id3b1qec8b                 ZIMBABWE     25-44
## 3954 tour_idjxz2089j                  GERMANY     45-64
## 3955 tour_idbaudj5k0           UNITED KINGDOM     25-44
## 3957 tour_idfgn7wdxa UNITED STATES OF AMERICA     45-64
## 3958 tour_idkcf9ia97                    KENYA     45-64
## 3959 tour_idpyhs0hsm UNITED STATES OF AMERICA     45-64
## 3960 tour_idcr4ml6sp             SOUTH AFRICA     45-64
## 3961 tour_idzt31r6tr                    ITALY     25-44
## 3962 tour_id2ivbukv2                 ZIMBABWE     45-64
## 3963 tour_id91w0wp00                   CANADA       65+
## 3964 tour_idrfkuext3                   UGANDA     18-24
## 3965 tour_iddv6eslrp           UNITED KINGDOM       <18
## 3966 tour_idoxtaa22j                   FRANCE     45-64
## 3967 tour_idsiiemrqn                  BELGIUM     25-44
## 3968 tour_id1y74m41q                   UGANDA     45-64
## 3969 tour_id5duywn25 UNITED STATES OF AMERICA     45-64
## 3970 tour_id78x3uvcg UNITED STATES OF AMERICA     45-64
## 3971 tour_idds9fz50g UNITED STATES OF AMERICA     25-44
## 3972 tour_idpdp4e8cm           UNITED KINGDOM     25-44
## 3973 tour_id77wy7tta                   FRANCE     45-64
## 3974 tour_idhwynvv46                 ZIMBABWE     25-44
## 3975 tour_iduwhymw54                  BELGIUM     18-24
## 3976 tour_idexh8nycv                  BELGIUM     25-44
## 3978 tour_id4ej3b5fs               SEYCHELLES     25-44
## 3979 tour_idae0zoyt7                    ITALY     45-64
## 3980 tour_id36qw8256                  GERMANY     45-64
## 3981 tour_id3ilpsfr9             SOUTH AFRICA     45-64
## 3982 tour_id6wn9f9pk                 ZIMBABWE     25-44
## 3983 tour_idtogw0rdh                   FRANCE     25-44
## 3984 tour_idvyuuhxr7 UNITED STATES OF AMERICA       65+
## 3985 tour_idqt03f3wd                  GERMANY     25-44
## 3986 tour_idtujya4w5           UNITED KINGDOM     25-44
## 3987 tour_idamuofqq8                    SPAIN     45-64
## 3988 tour_idw0zynjbu                  BURUNDI     18-24
## 3989 tour_ids8kr8m8e           UNITED KINGDOM     25-44
## 3990 tour_id3dg6q8os             SOUTH AFRICA     45-64
## 3991 tour_idfvl71bbl                    ITALY     45-64
## 3992 tour_id2zurvvih UNITED STATES OF AMERICA     45-64
## 3993 tour_idcoa6o18u UNITED STATES OF AMERICA     25-44
## 3994 tour_id4yvjgw28                    ITALY     25-44
## 3995 tour_ids10sor8m                    ITALY     25-44
## 3996 tour_id2ho70h2r           UNITED KINGDOM     45-64
## 3997 tour_id34sb6j6f                   FRANCE     25-44
## 3998 tour_idz9db86yr                 ZIMBABWE     25-44
## 3999 tour_id2epwvaod                 BULGARIA     45-64
## 4000 tour_idjynjlpay                   FRANCE     25-44
## 4001 tour_idr588outh                    INDIA     18-24
## 4002 tour_idy2qi6dvr                  BURUNDI     25-44
## 4003 tour_ida7og3vf8                  GERMANY     45-64
## 4004 tour_idfn2gpqct             SOUTH AFRICA     25-44
## 4005 tour_id5l1kheys                    ITALY     25-44
## 4006 tour_idk8r0rol6                    INDIA     25-44
## 4007 tour_idde6mz7fj               SWIZERLAND     25-44
## 4008 tour_idng4u03xr UNITED STATES OF AMERICA     25-44
## 4009 tour_id3gys27yn                   ECUADO     25-44
## 4010 tour_idoxpjnrv4           UNITED KINGDOM     18-24
## 4011 tour_id25vt73kt UNITED STATES OF AMERICA     25-44
## 4012 tour_id33qj4yjc                   CANADA     45-64
## 4013 tour_iddhp7xxkd                AUSTRALIA     45-64
## 4014 tour_idrsrahrv3           UNITED KINGDOM     25-44
## 4015 tour_idjyll1uc3                      DRC     18-24
## 4016 tour_ids0irz55a             SOUTH AFRICA     25-44
## 4017 tour_id0jx9c5dc                   GREECE     18-24
## 4018 tour_idintx7oyo UNITED STATES OF AMERICA       65+
## 4019 tour_idck1cg9jf UNITED STATES OF AMERICA     45-64
## 4020 tour_iddz7plt1o                  GERMANY     45-64
## 4021 tour_idoq92ay9g                     OMAN     25-44
## 4022 tour_id09bpozvg UNITED STATES OF AMERICA     45-64
## 4023 tour_idobu7hu7y                   ISRAEL     45-64
## 4024 tour_idrep5i920             SOUTH AFRICA     45-64
## 4025 tour_idg1to5wrk UNITED STATES OF AMERICA     45-64
## 4026 tour_idk91khsmp           UNITED KINGDOM     45-64
## 4027 tour_idbg1g4epa                    INDIA     25-44
## 4028 tour_idqpfrnxl7                    KENYA     25-44
## 4029 tour_idbzd36san           UNITED KINGDOM     45-64
## 4030 tour_id3zxkdphg                    INDIA     45-64
## 4031 tour_idpexmhw3m UNITED STATES OF AMERICA     45-64
## 4032 tour_idq6u9fklh                    ITALY     25-44
## 4033 tour_iduv705y9z             SOUTH AFRICA     18-24
## 4034 tour_idlzrphojo                   ZAMBIA     25-44
## 4035 tour_id7elgyf0x           UNITED KINGDOM     45-64
## 4036 tour_idc0cw8lf4           UNITED KINGDOM     25-44
## 4037 tour_id0tyf0szm                   SWEDEN     45-64
## 4038 tour_idl91vgu5t                  GERMANY     25-44
## 4039 tour_id2ly4k0ir               SWIZERLAND     25-44
## 4040 tour_idio2hl7ed                 ZIMBABWE     18-24
## 4041 tour_idkhp8fa3v                AUSTRALIA       65+
## 4042 tour_iddqsvb9pi                   CANADA     25-44
## 4043 tour_id9o1gxj5m                   ISRAEL     18-24
## 4044 tour_idujr8du2e                  BELGIUM     25-44
## 4046 tour_idvndn5ddx                  BELGIUM     45-64
## 4047 tour_idv3tkmhkk                  GERMANY     25-44
## 4048 tour_idrwdvdp8e                   CANADA     18-24
## 4049 tour_idzu3pn2em                    SPAIN     25-44
## 4050 tour_idsnmb0tzs UNITED STATES OF AMERICA       65+
## 4051 tour_idz4f45k26                   FRANCE     45-64
## 4052 tour_idpvsp7ggb               SWIZERLAND     18-24
## 4053 tour_idok1fis6r           UNITED KINGDOM     45-64
## 4054 tour_idltjs2qv4                   ZAMBIA     25-44
## 4055 tour_ids5avbfk0                    ITALY     45-64
## 4056 tour_idptkwl1g5             SOUTH AFRICA     25-44
## 4057 tour_idaqo340vp                   ZAMBIA     25-44
## 4058 tour_idk660k0wl                    CHINA     25-44
## 4061 tour_id8uh3c4ei                  FINLAND       65+
## 4062 tour_idxichiq8u                    KENYA     45-64
## 4063 tour_ido9p63dnh           UNITED KINGDOM     45-64
## 4064 tour_id1f2rhuj3                   UGANDA     25-44
## 4065 tour_id62g5rqr9                   FRANCE     45-64
## 4067 tour_idudr18d3w                    ITALY     18-24
## 4068 tour_idmx71tr8k                    KENYA     25-44
## 4069 tour_idc2okk952           UNITED KINGDOM     45-64
## 4070 tour_ido48pgv6r                    SPAIN     25-44
## 4071 tour_idl3rtfcbv UNITED STATES OF AMERICA       65+
## 4072 tour_id7wg4pty0                    ITALY     25-44
## 4073 tour_idatt3395g                    SPAIN     25-44
## 4074 tour_id2tflh4j4                    INDIA     25-44
## 4075 tour_idztgrzl6s                    ITALY     18-24
## 4076 tour_idjyicw7q0 UNITED STATES OF AMERICA     18-24
## 4077 tour_id48dwsjlu                  IRELAND     25-44
## 4078 tour_idg3b1oe7b           UNITED KINGDOM     25-44
## 4079 tour_iduqy3sigu           UNITED KINGDOM     25-44
## 4080 tour_idtjbt2de4 UNITED STATES OF AMERICA     45-64
## 4081 tour_idr8h4brsb                    KOREA       65+
## 4082 tour_idvsy27yjm           UNITED KINGDOM     18-24
## 4083 tour_iduygnsxj9                   UGANDA     25-44
## 4084 tour_idfirn1a5n UNITED STATES OF AMERICA     45-64
## 4085 tour_idivwmtj83 UNITED STATES OF AMERICA     45-64
## 4086 tour_id43sxp2hg                   SOMALI     25-44
## 4087 tour_id8a41k2cr           UNITED KINGDOM       65+
## 4088 tour_id5yz3jkhm UNITED STATES OF AMERICA     45-64
## 4089 tour_idwpgxki6k                      UAE     25-44
## 4090 tour_id57vhsyu7                    ITALY     25-44
## 4091 tour_idzf1wzsyr                   MEXICO       65+
## 4092 tour_id7l72axbh                    KENYA     25-44
## 4094 tour_idd5rbzr9h                  GERMANY     45-64
## 4095 tour_idvkwiu61m                  BELGIUM     18-24
## 4096 tour_ido4re6brb                    KOREA     25-44
## 4097 tour_idt094mimf                  AUSTRIA       65+
## 4098 tour_id31kfhfra                 ZIMBABWE     25-44
## 4099 tour_idaxs7fiul                   ZAMBIA     25-44
## 4100 tour_idj5x6sda5              NETHERLANDS     25-44
## 4101 tour_id33m91uox           UNITED KINGDOM     45-64
## 4102 tour_id61yq2r3x                  GERMANY     25-44
## 4103 tour_idcpr2sphy UNITED STATES OF AMERICA     45-64
## 4104 tour_idpj8n90up                    SPAIN     25-44
## 4105 tour_idbmu6mcyq                     OMAN     25-44
## 4106 tour_idccx2d4hl                   CANADA     25-44
## 4107 tour_idtudrdy1r                   FRANCE     45-64
## 4108 tour_id2asz84fl             SOUTH AFRICA     45-64
## 4109 tour_idivw7rl8f UNITED STATES OF AMERICA     25-44
## 4111 tour_idhv2mbiq4                      UAE     18-24
## 4112 tour_id7a4o1r6h                   UGANDA     45-64
## 4113 tour_idv254jb5e                   FRANCE     45-64
## 4114 tour_idipcw2ji0 UNITED STATES OF AMERICA     25-44
## 4115 tour_idinxp907w                    KENYA     25-44
## 4116 tour_idxnn99lwc UNITED STATES OF AMERICA     25-44
## 4117 tour_idgtbj9953                    ITALY     45-64
## 4118 tour_id8xsp5lt3                      UAE     45-64
## 4119 tour_id28qbrsfl                  GERMANY     25-44
## 4121 tour_idlfyzufe4                AUSTRALIA       65+
## 4122 tour_idskp2zh7c UNITED STATES OF AMERICA     25-44
## 4123 tour_idtqvglif5                   POLAND     25-44
## 4124 tour_idek50qvjd                   UGANDA     25-44
## 4126 tour_idxhe8t2he                  GERMANY     18-24
## 4127 tour_idsiv6ehor              NEW ZEALAND     45-64
## 4130 tour_id7of66x2v                    CHINA     45-64
## 4131 tour_idx1neo2lf           UNITED KINGDOM     25-44
## 4133 tour_id4sb75gxq                    ITALY     45-64
## 4134 tour_idejlm3jh8                AUSTRALIA     25-44
## 4135 tour_idd9raeie8             SOUTH AFRICA     25-44
## 4136 tour_id95crlcuj                  GERMANY     25-44
## 4137 tour_ida8y05djh                   FRANCE       65+
## 4138 tour_idrlpu681r               SWIZERLAND     45-64
## 4139 tour_id9xi6y0dg                    KENYA     25-44
## 4140 tour_id7dqqmi9s                  GERMANY     45-64
## 4141 tour_idlf69injr UNITED STATES OF AMERICA       65+
## 4142 tour_idd58duevu                    ITALY     18-24
## 4143 tour_id94e50n8j              NETHERLANDS     25-44
## 4144 tour_id31zlc09g                    SPAIN     25-44
## 4145 tour_idcooailym                  GERMANY       65+
## 4146 tour_id5e6y7abn                   ZAMBIA     45-64
## 4147 tour_idmr75n4fd                   UKRAIN     18-24
## 4148 tour_idta3dtf2j                   ZAMBIA     25-44
## 4149 tour_id3bn4e75w              NETHERLANDS     25-44
## 4150 tour_idh4x63k7r                AUSTRALIA     25-44
## 4151 tour_idmnqilo90                    ITALY     25-44
## 4152 tour_idx2je35jr                   LATVIA     25-44
## 4153 tour_idzo1okx69 UNITED STATES OF AMERICA     25-44
## 4154 tour_id3tiwsexa              NETHERLANDS     18-24
## 4155 tour_idpxoo13ir                 ZIMBABWE     25-44
## 4156 tour_idxf9o7wha                ARGENTINA     45-64
## 4157 tour_id9z2ofz1x                    KENYA     18-24
## 4158 tour_idof98zlx2                AUSTRALIA     18-24
## 4159 tour_idiq4u3phz UNITED STATES OF AMERICA     45-64
## 4160 tour_idngbxb0lv                   SWEDEN     18-24
## 4161 tour_idm586rffx                    CHINA     25-44
## 4162 tour_idwka0k5qe UNITED STATES OF AMERICA       65+
## 4163 tour_idz2l48j9r                   UGANDA     25-44
## 4164 tour_idp6lyrhl0                   SWEDEN     45-64
## 4165 tour_idqxqibyza                  DENMARK     45-64
## 4166 tour_idv070m2x6           UNITED KINGDOM     45-64
## 4167 tour_idcv741lve                AUSTRALIA     45-64
## 4168 tour_iddnti9m4z                  GERMANY     25-44
## 4169 tour_iddy7lweq9           UNITED KINGDOM     25-44
## 4170 tour_idsrx4zf6s                   RWANDA     25-44
## 4171 tour_idtx36s03o                    JAPAN       65+
## 4172 tour_id9ipxqc8a                   FRANCE     25-44
## 4173 tour_idnt9oy4tl                   ZAMBIA     45-64
## 4174 tour_idaspr2kzd                AUSTRALIA     25-44
## 4175 tour_id0wjlsl60                    ITALY     25-44
## 4176 tour_idddmgvg91 UNITED STATES OF AMERICA       65+
## 4177 tour_idnoxtq4qc UNITED STATES OF AMERICA       65+
## 4178 tour_idrmca8pkf                    JAPAN     45-64
## 4179 tour_idhcxgl5il             SOUTH AFRICA     25-44
## 4180 tour_id9y9v5r2j                  GERMANY     25-44
## 4181 tour_idfn2d9y96           UNITED KINGDOM     18-24
## 4182 tour_idwlmgrr5u                    KENYA     25-44
## 4183 tour_id93rgjn6u                  GERMANY     25-44
## 4184 tour_id5uzcsxo4                    ITALY     45-64
## 4185 tour_idmy7jjt3q                   CANADA     25-44
## 4186 tour_idsx9n2gq1                 PAKISTAN     18-24
## 4187 tour_idhzzjlfhh                  GERMANY     45-64
## 4188 tour_idt8lkq75d                   NORWAY     18-24
## 4189 tour_idnwovp800                    ITALY     25-44
## 4190 tour_id200f3ulk                   RWANDA     25-44
## 4191 tour_idom8zj84g           UNITED KINGDOM     45-64
## 4192 tour_idpupvew2e                  GERMANY     45-64
## 4193 tour_idlahrnfqu                   UGANDA     25-44
## 4194 tour_id6jgwimar                   RUSSIA     45-64
## 4195 tour_idhcf0bi0s                   FRANCE     25-44
## 4196 tour_idn4qbi8k2           UNITED KINGDOM     45-64
## 4197 tour_idx5zu8uva                    INDIA     25-44
## 4198 tour_idx5atwru6                  BURUNDI     18-24
## 4199 tour_id4lgejpmg                    CHINA     25-44
## 4200 tour_id16ta4zzw                   ZAMBIA     25-44
## 4201 tour_idc2w58q0v                 ZIMBABWE     18-24
## 4202 tour_id72p2sdg2                   UGANDA       <18
## 4203 tour_idqy9j47f5 UNITED STATES OF AMERICA     18-24
## 4204 tour_idij2qcznf                 MALAYSIA     25-44
## 4205 tour_idu3xlaqs2                    QATAR     45-64
## 4206 tour_idg6kugxpq                 ZIMBABWE     25-44
## 4207 tour_idpgdbpi9t UNITED STATES OF AMERICA     25-44
## 4209 tour_idk6n1hn5f                    KENYA     25-44
## 4211 tour_id4h3fdiu5                    SPAIN     45-64
## 4212 tour_idlwwr4bkj                    CHINA     45-64
## 4213 tour_idd18jj0e6           UNITED KINGDOM     18-24
## 4214 tour_id8pbty1ma UNITED STATES OF AMERICA     45-64
## 4215 tour_idkw0t5nit UNITED STATES OF AMERICA     25-44
## 4216 tour_idzbkcz9ra           UNITED KINGDOM     45-64
## 4217 tour_id2nayqtud           UNITED KINGDOM     18-24
## 4218 tour_idffgtsh8f UNITED STATES OF AMERICA     45-64
## 4220 tour_id9xdiw73l                  GERMANY     45-64
## 4221 tour_idpiigyr7h                    SPAIN     25-44
## 4222 tour_idc3ro50v7                   ZAMBIA     45-64
## 4223 tour_idsmi7sjwy                    INDIA     25-44
## 4224 tour_idlsxmpgup                  BURUNDI     18-24
## 4225 tour_idak8yzqcn                      UAE     25-44
## 4226 tour_idc4b9bw6d                   MALAWI     45-64
## 4227 tour_idm4mbk82l                   POLAND     25-44
## 4228 tour_id3xe0djzz                  GERMANY     45-64
## 4229 tour_ids0f2gc22 UNITED STATES OF AMERICA     45-64
## 4230 tour_idk19p6a1g                   UGANDA     25-44
## 4232 tour_idcsyvvzie                   CANADA     25-44
## 4233 tour_idd04vf6iz           UNITED KINGDOM     25-44
## 4234 tour_id94zoa7ut UNITED STATES OF AMERICA     45-64
## 4235 tour_idgrd8a0di UNITED STATES OF AMERICA     25-44
## 4236 tour_id9v0y5d4s                   FRANCE     25-44
## 4237 tour_id3g364qpl                AUSTRALIA     25-44
## 4238 tour_idpuqxkat1                    ITALY     45-64
## 4239 tour_idoxkhrps5                   FRANCE     25-44
## 4240 tour_idlitakc6m           UNITED KINGDOM     18-24
## 4241 tour_idywzd1bdk           UNITED KINGDOM     25-44
## 4242 tour_id2uhqmjrk                 ZIMBABWE     25-44
## 4243 tour_idqgyuzntq                  IRELAND       <18
## 4244 tour_id8jrwko4c UNITED STATES OF AMERICA     25-44
## 4245 tour_idz0cjeujw              NETHERLANDS     25-44
## 4246 tour_idknr0thex           UNITED KINGDOM     45-64
## 4247 tour_idhvwdgy82             SOUTH AFRICA     25-44
## 4248 tour_idpicj051p                  GERMANY     45-64
## 4249 tour_idl7494jbt               SWIZERLAND       65+
## 4250 tour_idy67x0v83                    CONGO     25-44
## 4251 tour_idf4e7fw38                     OMAN     25-44
## 4252 tour_ido8oj18w7 UNITED STATES OF AMERICA     45-64
## 4253 tour_idtjg4rmya                 ZIMBABWE     45-64
## 4254 tour_idycw66rvu                    ITALY     45-64
## 4255 tour_idxp8k9ov7 UNITED STATES OF AMERICA     25-44
## 4257 tour_iduey5ccfy                    INDIA     25-44
## 4258 tour_idfsuh9vc7                  GERMANY     45-64
## 4259 tour_idoyk1kdqz UNITED STATES OF AMERICA     25-44
## 4260 tour_id1hbxcmtt                    JAPAN     25-44
## 4261 tour_idzrp6mqra                   FRANCE     25-44
## 4262 tour_id2vt4raj3 UNITED STATES OF AMERICA     45-64
## 4263 tour_id9qja3rk0                   CANADA     25-44
## 4264 tour_idjq9kxatl                   RUSSIA     25-44
## 4265 tour_idabp5e7g6 UNITED STATES OF AMERICA     45-64
## 4266 tour_idrhfwiet3                  GERMANY     18-24
## 4267 tour_idvythnutn                   UGANDA     25-44
## 4268 tour_id09pzohqk                  GERMANY     25-44
## 4269 tour_id96d5itrt           UNITED KINGDOM     25-44
## 4270 tour_idx325hffl                   FRANCE     25-44
## 4271 tour_iduyerhoop           UNITED KINGDOM     25-44
## 4272 tour_idoz6yszbp                  GERMANY     45-64
## 4273 tour_idvu3qf0g1 UNITED STATES OF AMERICA     45-64
## 4275 tour_idna01epo3                 MALAYSIA     25-44
## 4276 tour_idyxn7zqfs               SWIZERLAND     25-44
## 4277 tour_idgsazdqg7                  AUSTRIA     45-64
## 4278 tour_idx5iicdxd                   CANADA     45-64
## 4279 tour_id71fr0ucm UNITED STATES OF AMERICA     45-64
## 4280 tour_idv58p4ms3           UNITED KINGDOM     18-24
## 4282 tour_ide8w0c0b9                    CHINA     25-44
## 4283 tour_id96xqfsn1                   CANADA     18-24
## 4285 tour_idrbblupr2                    SPAIN     25-44
## 4286 tour_id8xjdb040                    INDIA     45-64
## 4287 tour_id230rvnaj                      UAE     45-64
## 4288 tour_id81mqsu5l               SWIZERLAND     25-44
## 4289 tour_idgxat6kaw              NETHERLANDS     45-64
## 4290 tour_idbfdrl5oe                    CHINA     45-64
## 4291 tour_id9j83h70m UNITED STATES OF AMERICA     25-44
## 4292 tour_idv90tnqrf              NETHERLANDS     18-24
## 4293 tour_id4fi2gtql                      DRC     45-64
## 4294 tour_idnw6sqjzd                   UGANDA     25-44
## 4295 tour_idqb2g9jyn UNITED STATES OF AMERICA     25-44
## 4296 tour_id33xvidnt                   CANADA     25-44
## 4297 tour_idf0j0bkf3                 PAKISTAN     25-44
## 4298 tour_idb4jxr623                 ETHIOPIA     18-24
## 4299 tour_idgqslxs8f             SOUTH AFRICA     45-64
## 4300 tour_idi8w4uzet UNITED STATES OF AMERICA       65+
## 4301 tour_idxnfeilv4                    ITALY       65+
## 4302 tour_idumy0mhai                   FRANCE     45-64
## 4303 tour_idfvp2ifz7                 ZIMBABWE     25-44
## 4304 tour_idwy8b7ix1                   FRANCE     45-64
## 4305 tour_id0l9djwsu UNITED STATES OF AMERICA     45-64
## 4306 tour_id3186ybh3                    KENYA     25-44
## 4307 tour_idv3x3jlmw                      UAE     25-44
## 4308 tour_idf82mcvxe                    KENYA     45-64
## 4309 tour_idhy041qx1                 ZIMBABWE     25-44
## 4310 tour_id9w6m7e6c           UNITED KINGDOM     18-24
## 4311 tour_idcsudhn3z UNITED STATES OF AMERICA     45-64
## 4312 tour_id8q9rw18v           UNITED KINGDOM     18-24
## 4313 tour_iddr1x9obx                   CANADA     25-44
## 4314 tour_idmyv23alm                   ZAMBIA     25-44
## 4315 tour_idir7ozi9x                  AUSTRIA     25-44
## 4316 tour_id0f2ztql1                   POLAND     25-44
## 4317 tour_id0anu3iic                   ZAMBIA     25-44
## 4318 tour_ida0e17sb1                AUSTRALIA     45-64
## 4319 tour_iddb74yjeg           UNITED KINGDOM     25-44
## 4320 tour_ide221u2sy                    CHINA     25-44
## 4321 tour_idal9pwvhd UNITED STATES OF AMERICA     25-44
## 4322 tour_id5qhtgib6 UNITED STATES OF AMERICA     45-64
## 4323 tour_idg8tm9p2g                   FRANCE     25-44
## 4324 tour_id7m6uo8aa UNITED STATES OF AMERICA     25-44
## 4325 tour_idyao1blp3                    ITALY     25-44
## 4326 tour_idbqoy0mnd           UNITED KINGDOM     18-24
## 4327 tour_idiwucatgn                   RWANDA     18-24
## 4328 tour_idd6vrq9ky UNITED STATES OF AMERICA     45-64
## 4329 tour_idl2v3j1sk UNITED STATES OF AMERICA     25-44
## 4330 tour_idhk7lzvda           UNITED KINGDOM     25-44
## 4331 tour_idn8ynb1qf                   CANADA     25-44
## 4332 tour_id4uhnk7jn                    KENYA     45-64
## 4333 tour_idwsdwmoqj                  AUSTRIA     25-44
## 4334 tour_idnl8tof1p                  GERMANY     18-24
## 4335 tour_id989yuun6                   SWEDEN     25-44
## 4336 tour_idp1luo4uy                  IRELAND     25-44
## 4337 tour_idj8hn7ok6                   ISRAEL     18-24
## 4338 tour_id6su87msv                   ZAMBIA     25-44
## 4339 tour_idz0841gd6           UNITED KINGDOM     18-24
## 4340 tour_idb3c75nhv             SOUTH AFRICA     45-64
## 4341 tour_id2yc2q77n                    SPAIN     25-44
## 4342 tour_idqk4bb36u           UNITED KINGDOM     25-44
## 4343 tour_idhrwhlo2y UNITED STATES OF AMERICA       65+
## 4344 tour_idny8hb6ty                   ZAMBIA     25-44
## 4345 tour_idpnajg6n8                      UAE     25-44
## 4346 tour_iddpcxwqsy                 ZIMBABWE     25-44
## 4347 tour_idg4fdev2x                  GERMANY     45-64
## 4348 tour_idihvv0rpr                    KENYA     25-44
## 4349 tour_idf7hjgepg                   UGANDA     25-44
## 4350 tour_id8txrvz1x                 ZIMBABWE     25-44
## 4351 tour_ideze60qqk                     OMAN     25-44
## 4352 tour_idzoczzz5e                    ITALY     45-64
## 4353 tour_idvulkw58n           UNITED KINGDOM     25-44
## 4354 tour_id4rtorqr6                 ZIMBABWE     25-44
## 4355 tour_idkaneeqj9                   FRANCE     25-44
## 4356 tour_idk1t3y6gk                    INDIA     25-44
## 4357 tour_idwq19ggoo                   RWANDA     18-24
## 4358 tour_idflhqtxy8                   CANADA     25-44
## 4359 tour_id788zcv2p                   UGANDA     45-64
## 4360 tour_idr3x34i5a                    ITALY     25-44
## 4361 tour_idmy1q2erk                   FRANCE     45-64
## 4362 tour_idz1rvt3ba UNITED STATES OF AMERICA     25-44
## 4363 tour_idbaa6851c                    INDIA     25-44
## 4364 tour_idladyvlho                 PAKISTAN     25-44
## 4365 tour_idh9rwa9sm                  BURUNDI     45-64
## 4366 tour_id8jgpnyry             SOUTH AFRICA     25-44
## 4367 tour_idd8j7nwye                  IRELAND     18-24
## 4368 tour_idui170duq                     OMAN     45-64
## 4369 tour_idgao7ieyf                    ITALY     25-44
## 4370 tour_id2q6cfvw5                    SPAIN     45-64
## 4371 tour_idsmegputg                 ETHIOPIA     45-64
## 4372 tour_idweqvvfci                AUSTRALIA     18-24
## 4373 tour_idx7fhzsvd                    INDIA     25-44
## 4374 tour_id5zu23efz                    JAPAN     25-44
## 4375 tour_id0boek8jj                  BURUNDI     18-24
## 4376 tour_idjmc3nxrb UNITED STATES OF AMERICA     45-64
## 4377 tour_id8cf9zxwf                   FRANCE     45-64
## 4378 tour_idz5xcme28             SOUTH AFRICA     45-64
## 4379 tour_id6giq5gda                   ZAMBIA     25-44
## 4380 tour_idfmbul7pb                  GERMANY     25-44
## 4381 tour_idiqtsl2zv                   ZAMBIA     18-24
## 4383 tour_idsbyhxvdd             SOUTH AFRICA     45-64
## 4384 tour_idj13bcqnn UNITED STATES OF AMERICA     45-64
## 4385 tour_idtx6fbbhr                   ISRAEL     45-64
## 4386 tour_idpxmcbdwe                      UAE     25-44
## 4387 tour_idne1x1yz3                    CHINA     25-44
## 4388 tour_id98t9uvcv UNITED STATES OF AMERICA     25-44
## 4389 tour_idrch0mvsc                    SPAIN     25-44
## 4390 tour_idj9gdv9jm                    ITALY     45-64
## 4391 tour_idpkekd4qu                    ITALY     45-64
## 4392 tour_idc2cn4obd               SWIZERLAND     45-64
## 4393 tour_idq9549475                  GERMANY     25-44
## 4394 tour_idp0luqsbl                    SPAIN     25-44
## 4395 tour_idoqr6unzw                 MALAYSIA     25-44
## 4396 tour_idaj3bz1ns                AUSTRALIA     18-24
## 4397 tour_idfor5hou3 UNITED STATES OF AMERICA       65+
## 4398 tour_id7th51t3q UNITED STATES OF AMERICA       65+
## 4400 tour_id88sandvu                    ITALY     18-24
## 4401 tour_id97bwqohu UNITED STATES OF AMERICA     45-64
## 4402 tour_idqif2w3j0                   FRANCE     45-64
## 4403 tour_id66pukfbi                   FRANCE     45-64
## 4404 tour_idx6hgpbvm                   RWANDA     25-44
## 4405 tour_idaggmnfet                AUSTRALIA     45-64
## 4406 tour_idqhqd0lkq                      UAE     25-44
## 4407 tour_idf1cls3rf           UNITED KINGDOM     45-64
## 4408 tour_idsuval0s7           UNITED KINGDOM     18-24
## 4409 tour_id91jdx41a UNITED STATES OF AMERICA     25-44
## 4410 tour_idmlelk5ut                   CANADA       65+
## 4411 tour_id2tivrnvg                  AUSTRIA     45-64
## 4412 tour_idqua8fe2g                    ITALY     25-44
## 4413 tour_idflf2624a              NETHERLANDS     18-24
## 4414 tour_idq8f11285                  GERMANY     25-44
## 4415 tour_idzwkwjwq3           UNITED KINGDOM     25-44
## 4416 tour_idsmhblc0h           UNITED KINGDOM     45-64
## 4417 tour_idijljotsw                   CANADA     45-64
## 4419 tour_id30je1h73                 ZIMBABWE     18-24
## 4420 tour_id1iejjow0                   CANADA     45-64
## 4421 tour_idtouig27q                   CANADA       65+
## 4422 tour_idyh5z3cj7                   CANADA     45-64
## 4423 tour_id0p6ithc2                   FRANCE     45-64
## 4424 tour_id0f0446sy           UNITED KINGDOM     25-44
## 4425 tour_idc91fr1vt UNITED STATES OF AMERICA       65+
## 4426 tour_id7bebaazo               SWIZERLAND     45-64
## 4427 tour_idrp6yajsf                    ITALY     45-64
## 4428 tour_iduao754bo                   UGANDA     25-44
## 4429 tour_ideu38jofx                    ITALY     45-64
## 4430 tour_id4486wncl               SWIZERLAND     25-44
## 4431 tour_idpv62k4fh           UNITED KINGDOM       65+
## 4432 tour_idxgi7o2jz                    JAPAN       65+
## 4433 tour_id0cfdqrn3 UNITED STATES OF AMERICA     25-44
## 4434 tour_id7k4fw6ft                    ITALY     25-44
## 4435 tour_idaji67gq9                 ZIMBABWE     25-44
## 4436 tour_idmji0svwe                    ITALY     45-64
## 4437 tour_idlcz9mejf                      UAE     25-44
## 4438 tour_idxyk0c8ki                    INDIA     25-44
## 4439 tour_id3a3jccv3                   FRANCE     25-44
## 4440 tour_id2wxd4t6j                  GERMANY     25-44
## 4441 tour_id7y12x8na                    SPAIN     25-44
## 4442 tour_idbvnowpum                   ISRAEL     45-64
## 4443 tour_id987j1kl8                   ZAMBIA     25-44
## 4444 tour_idg1fr71ye           UNITED KINGDOM     25-44
## 4445 tour_idd981uoai                    INDIA     45-64
## 4446 tour_idqc5owwes UNITED STATES OF AMERICA     25-44
## 4447 tour_idhiola9gm                  IRELAND     25-44
## 4448 tour_idx8hgukb1                    ITALY     25-44
## 4449 tour_idj8br60p9                    CHINA     45-64
## 4450 tour_idvi7hf8fa                  BURUNDI     25-44
## 4451 tour_id7ho6c7kr                   SWEDEN     25-44
## 4452 tour_idofzk3i60 UNITED STATES OF AMERICA     45-64
## 4453 tour_idbbkoogdk                 PORTUGAL     25-44
## 4454 tour_idst2p6lvl                    ITALY     25-44
## 4455 tour_idi0vi2h3m UNITED STATES OF AMERICA     25-44
## 4456 tour_id7qh173tt                    KENYA     25-44
## 4457 tour_idvkwgbv0v UNITED STATES OF AMERICA     18-24
## 4458 tour_id5j21ulfv                 ZIMBABWE     25-44
## 4459 tour_idxfefaje0 UNITED STATES OF AMERICA       65+
## 4460 tour_idasr2nl19                  GERMANY     45-64
## 4461 tour_idavt3ftht                    ITALY     25-44
## 4462 tour_ids2wbl11p                AUSTRALIA       65+
## 4463 tour_idei9fyb5f UNITED STATES OF AMERICA     45-64
## 4464 tour_idxc7nkjbu                   UGANDA     45-64
## 4465 tour_idotmvnuso                AUSTRALIA     45-64
## 4466 tour_idnxlro3wv           UNITED KINGDOM     45-64
## 4467 tour_ididx45pjt               SWIZERLAND     25-44
## 4468 tour_id5bwsxsud                    KENYA     25-44
## 4469 tour_id5w1txh34           UNITED KINGDOM     45-64
## 4471 tour_idvzaxizmy                    ITALY     25-44
## 4472 tour_idffxndtrx                    SPAIN     25-44
## 4473 tour_id0ng2zvsr                    ITALY       65+
## 4475 tour_idnt4ibz3s                AUSTRALIA     25-44
## 4476 tour_idzmp609jm                   UGANDA     25-44
## 4477 tour_idisxs30v3                   SWEDEN     45-64
## 4478 tour_id6jbkkbkd                    CHINA     18-24
## 4479 tour_idl7hw8gkv                AUSTRALIA     45-64
## 4480 tour_id7l8niqdy                    KENYA     25-44
## 4481 tour_idl7rnldbz                 ZIMBABWE     25-44
## 4482 tour_idwhcypqu4                   RWANDA     25-44
## 4483 tour_id0m4yc3lv                    INDIA     45-64
## 4485 tour_id5a2fqrm3                  BURUNDI     18-24
## 4486 tour_id6xrpw4hk                 ZIMBABWE     25-44
## 4487 tour_idu16uszi2                    KENYA     25-44
## 4488 tour_idy841efbz             SOUTH AFRICA     45-64
## 4489 tour_idkferz7mx                    ITALY     45-64
## 4490 tour_idory7xy8q                    CHINA     25-44
## 4491 tour_id3gl3t3qp                   POLAND     45-64
## 4492 tour_idc8d7vrcc                   CANADA     25-44
## 4493 tour_id7r8n3pze                    ITALY     45-64
## 4494 tour_idwmiew6am                   UGANDA     45-64
## 4495 tour_idmh6qphpp             SOUTH AFRICA     25-44
## 4496 tour_id6fqa3jad               MOZAMBIQUE     25-44
## 4497 tour_idc5fbtytj                   FRANCE     25-44
## 4498 tour_idhj619rei                 ZIMBABWE     25-44
## 4499 tour_id8a96r1wa                  AUSTRIA     45-64
## 4500 tour_ideiztav52                    ITALY     45-64
## 4501 tour_idcao1dfs8                  GERMANY     25-44
## 4502 tour_idn5vzg3i8                    ITALY     25-44
## 4504 tour_ide4dpqg5w                      UAE     25-44
## 4505 tour_idp3u9uvwd                    CHINA     25-44
## 4506 tour_idmikn3i8b                AUSTRALIA     18-24
## 4507 tour_ide9tchd1y           UNITED KINGDOM     25-44
## 4508 tour_idf2i9oc7q UNITED STATES OF AMERICA     45-64
## 4509 tour_idtg8ypiax UNITED STATES OF AMERICA     25-44
## 4510 tour_id8hul086t                   CANADA     45-64
## 4511 tour_idpon3pybw                 ZIMBABWE     25-44
## 4512 tour_id3o6n5gnd                   FRANCE     45-64
## 4513 tour_idy9usrgei                    ITALY     45-64
## 4514 tour_iddz8nzkdi                   ISRAEL     45-64
## 4515 tour_idpkmh3z5c                    KENYA     25-44
## 4516 tour_idic6q4djh                  GERMANY     45-64
## 4517 tour_id3xuywakg                     OMAN     45-64
## 4518 tour_ids9ccqu2k                    ITALY     25-44
## 4519 tour_idozxv52ma           UNITED KINGDOM     45-64
## 4520 tour_idrmm8sbdj                    ITALY     45-64
## 4521 tour_ide1jq3h4y               MOZAMBIQUE     25-44
## 4522 tour_id54jj4738                   CANADA     25-44
## 4523 tour_idf3188by4                    ITALY     25-44
## 4524 tour_id23x0k2b8                   NORWAY     45-64
## 4525 tour_ids2987x5f           UNITED KINGDOM     45-64
## 4526 tour_idjv0w32az UNITED STATES OF AMERICA     25-44
## 4528 tour_id77yk9n60           UNITED KINGDOM     18-24
## 4529 tour_id8qu7r9l0                AUSTRALIA       65+
## 4530 tour_idbwipmi3q                   ZAMBIA     25-44
## 4531 tour_ide9av2gg8                   FRANCE     25-44
## 4532 tour_idk9s21816 UNITED STATES OF AMERICA     45-64
## 4533 tour_idmzryr7qe                    KENYA     45-64
## 4534 tour_idpsf0baim                   TAIWAN     45-64
## 4535 tour_id9n0cxmao                   GREECE     25-44
## 4536 tour_idi9y5qsk9               LUXEMBOURG     45-64
## 4537 tour_idgqqocqa5                    ITALY     25-44
## 4538 tour_id9c6v70us UNITED STATES OF AMERICA     25-44
## 4539 tour_id44l6pzna                    ITALY     25-44
## 4540 tour_id1k3ya7rl                 ETHIOPIA     45-64
## 4541 tour_idoxhbzc6n                 ZIMBABWE     25-44
## 4542 tour_idn1bsr2eo                   ZAMBIA     25-44
## 4543 tour_idy7dasiow                AUSTRALIA     18-24
## 4545 tour_id7dw0bb1h                  NIGERIA     25-44
## 4546 tour_idtqk8lz14 UNITED STATES OF AMERICA     45-64
## 4547 tour_idf57yogt8                    SPAIN     25-44
## 4548 tour_idb3m9mymw                   UGANDA     25-44
## 4549 tour_id2mh2tzgr             SOUTH AFRICA     25-44
## 4550 tour_idjsm17fpy                  GERMANY     18-24
## 4551 tour_id704cjy1j UNITED STATES OF AMERICA     25-44
## 4552 tour_id34vcpd4k                    ITALY     45-64
## 4553 tour_idf4yttxig                  DENMARK     45-64
## 4554 tour_id7xl6pzkj                   UGANDA     18-24
## 4555 tour_id12nnyyt9                    ITALY     18-24
## 4556 tour_idufnkewsf                    ITALY     45-64
## 4557 tour_idpdk0fqa6                    ITALY     25-44
## 4558 tour_idlvuxi90p                AUSTRALIA     45-64
## 4559 tour_id5uofb3lh                AUSTRALIA     45-64
## 4560 tour_id5nfhekcc                    SPAIN     25-44
## 4561 tour_idvvgpyh1s                    KENYA     45-64
## 4562 tour_idnjhcl4jy                     OMAN     25-44
## 4563 tour_iduzxyvnah             SOUTH AFRICA     45-64
## 4564 tour_idcivv1oyp                   SWEDEN       65+
## 4565 tour_idbyres5we                   FRANCE     45-64
## 4566 tour_id6m46x9nr                  AUSTRIA     25-44
## 4567 tour_idpal3pw8n                    ITALY     25-44
## 4568 tour_idlj36k4rg UNITED STATES OF AMERICA     45-64
## 4569 tour_ido2jp13f2                    SPAIN     25-44
## 4570 tour_idqc8ao1sv                    KENYA     45-64
## 4571 tour_idlos3fpuv                  BURUNDI     18-24
## 4572 tour_id8jpw9hxc                    KENYA     25-44
## 4573 tour_id5oaw5oyb           UNITED KINGDOM       65+
## 4574 tour_id83rqhwqc                AUSTRALIA     45-64
## 4575 tour_idxviprdm0                    SPAIN     45-64
## 4577 tour_idwgsofchv             SOUTH AFRICA     45-64
## 4578 tour_idyhpm9ovt                AUSTRALIA     45-64
## 4579 tour_idzwom17ll UNITED STATES OF AMERICA     45-64
## 4580 tour_idkdjlrbg6                   ZAMBIA     25-44
## 4581 tour_id6j95fwtd                      UAE     45-64
## 4582 tour_idotkwms4g                    KENYA     45-64
## 4583 tour_idcs43henm                    INDIA     18-24
## 4584 tour_idez55uxa9                   ZAMBIA     25-44
## 4585 tour_id5r975tda                   FRANCE     45-64
## 4586 tour_ideex31f1y                   UGANDA     25-44
## 4587 tour_id9expkw9h                   CANADA     25-44
## 4588 tour_idlbnoqcuk                   RUSSIA     25-44
## 4589 tour_idyzmv3bhh                AUSTRALIA     45-64
## 4590 tour_idsotivehb                   RWANDA     25-44
## 4591 tour_idxdn1lfys                  AUSTRIA     45-64
## 4592 tour_id9hxqye2m                    KENYA     45-64
## 4593 tour_id0stabv09                AUSTRALIA       65+
## 4594 tour_idjx2rm5gv                   FRANCE     25-44
## 4595 tour_idoq4lbhe4                   FRANCE     45-64
## 4596 tour_idfczholpe                    KENYA     25-44
## 4597 tour_idm58zp8zb           UNITED KINGDOM     25-44
## 4598 tour_id4thi0etu              NETHERLANDS     25-44
## 4599 tour_idtb3oylji                   ZAMBIA     25-44
## 4600 tour_idvd5bp5wv           UNITED KINGDOM     18-24
## 4601 tour_iddacv2dkf UNITED STATES OF AMERICA     45-64
## 4602 tour_idal9ejujj UNITED STATES OF AMERICA     18-24
## 4603 tour_idbfho5wgt           UNITED KINGDOM     18-24
## 4604 tour_idjj2xvfpr UNITED STATES OF AMERICA       65+
## 4605 tour_id8mk5itzx                    ITALY     25-44
## 4606 tour_idzfrurerf                   UGANDA     25-44
## 4607 tour_idz2279vpv                  GERMANY     25-44
## 4608 tour_id7ivoxf8d UNITED STATES OF AMERICA     25-44
## 4609 tour_idhwai7wae                    SPAIN     25-44
## 4610 tour_idj2xeleut              NETHERLANDS     45-64
## 4611 tour_id9gx9wyko                  GERMANY     18-24
## 4612 tour_idtvpi14s4                  GERMANY     45-64
## 4615 tour_id31eh639e               SWIZERLAND     45-64
## 4616 tour_idmsclpykr UNITED STATES OF AMERICA       65+
## 4617 tour_idmmqq82mr                  FINLAND     25-44
## 4618 tour_idh071riad              NETHERLANDS     45-64
## 4619 tour_idjrw6h0g6 UNITED STATES OF AMERICA     45-64
## 4620 tour_idl2tuplfb           UNITED KINGDOM     25-44
## 4621 tour_id8hf2hrlj                   ZAMBIA     45-64
## 4622 tour_idnb9tlggm                   ZAMBIA     18-24
## 4623 tour_idampo29ot           UNITED KINGDOM     25-44
## 4624 tour_idbfrcyb1p                    ITALY     25-44
## 4625 tour_idejnluvz8                  BELGIUM     45-64
## 4626 tour_id9m7fr666                   ZAMBIA     25-44
## 4627 tour_idt4o2so5r              NETHERLANDS       65+
## 4628 tour_iduksve0k0                  IRELAND     25-44
## 4629 tour_id1j1jlw0n                    INDIA     45-64
## 4630 tour_idva66orit UNITED STATES OF AMERICA       65+
## 4631 tour_idramuck00                   CANADA     45-64
## 4633 tour_idp81qzp1r                   ZAMBIA     25-44
## 4634 tour_idgda0qy2r                  GERMANY     45-64
## 4635 tour_idmumnyd2q                   ZAMBIA     45-64
## 4636 tour_idy4wmdylm                    INDIA       65+
## 4637 tour_idrsafepjs                    INDIA     25-44
## 4638 tour_id609k517y                    SPAIN       65+
## 4639 tour_idxce0ds9r                    JAPAN     45-64
## 4640 tour_id1x238gll                   CANADA     25-44
## 4641 tour_id0foorc87                    CHINA     25-44
## 4642 tour_idzy39cluh UNITED STATES OF AMERICA       65+
## 4643 tour_idz26bzftq                AUSTRALIA     45-64
## 4644 tour_iduf3t90n7                    SPAIN     25-44
## 4645 tour_idj9w8ld7s           UNITED KINGDOM     25-44
## 4646 tour_idwd6m6ggi             SOUTH AFRICA     45-64
## 4647 tour_idk3q54ead                      UAE     25-44
## 4648 tour_idmoy1jcjo UNITED STATES OF AMERICA       65+
## 4649 tour_ida8k9rafu                      UAE     25-44
## 4650 tour_idffa1x3nb                  NIGERIA     25-44
## 4651 tour_idnumvxooy                   RWANDA     25-44
## 4652 tour_idmp2u3onj UNITED STATES OF AMERICA     25-44
## 4654 tour_idpm83bl3m                MACEDONIA     25-44
## 4655 tour_id5swqut9l                  BURUNDI     18-24
## 4657 tour_idlh2v0ykk               SWIZERLAND     25-44
## 4658 tour_idfgjnzjer           UNITED KINGDOM     18-24
## 4660 tour_id6uqwsuci UNITED STATES OF AMERICA       65+
## 4661 tour_idnipkt8tv                   SERBIA     25-44
## 4662 tour_idjuasoerq             SOUTH AFRICA     25-44
## 4663 tour_id3l5d19gb UNITED STATES OF AMERICA     25-44
## 4664 tour_idjz6vzfui UNITED STATES OF AMERICA     25-44
## 4665 tour_idu58kijxj                   MEXICO     45-64
## 4666 tour_id06ghlumu UNITED STATES OF AMERICA       65+
## 4667 tour_idiyznq7ec UNITED STATES OF AMERICA       65+
## 4670 tour_idv2qb15ee               SWIZERLAND     25-44
## 4671 tour_idy5g02p1c                    JAPAN     45-64
## 4672 tour_id2021rypv UNITED STATES OF AMERICA     25-44
## 4673 tour_idbowgs001 UNITED STATES OF AMERICA     25-44
## 4674 tour_id3fcxwy2d UNITED STATES OF AMERICA       65+
## 4675 tour_iddc8jx7ih           UNITED KINGDOM       65+
## 4676 tour_idzj1mmdsk           UNITED KINGDOM     45-64
## 4677 tour_idvkut717o                 TANZANIA     18-24
## 4678 tour_iden0r3co5                  BELGIUM     45-64
## 4679 tour_id1p9n6kyq UNITED STATES OF AMERICA     18-24
## 4680 tour_idqbugtq46                    INDIA     25-44
## 4681 tour_idpup7zbcr                   ZAMBIA     25-44
## 4682 tour_idspk7tju9                  ALGERIA     45-64
## 4683 tour_idbabev4w0                   UGANDA     25-44
## 4684 tour_idimhbkqwc                   NORWAY       65+
## 4685 tour_id5modm7jy                 ZIMBABWE     25-44
## 4687 tour_idc7fvahns                    ITALY     25-44
## 4688 tour_idpec0r4th                   FRANCE       65+
## 4689 tour_idnko1ywzc UNITED STATES OF AMERICA       65+
## 4690 tour_id5l21055t                  GERMANY     45-64
## 4691 tour_idxe6n46yk                   ZAMBIA     25-44
## 4692 tour_id44hb8rvi UNITED STATES OF AMERICA       65+
## 4693 tour_idxsor0nra                  GERMANY     45-64
## 4694 tour_id7i1i59we                 ZIMBABWE     25-44
## 4695 tour_id9kheu1kj                  AUSTRIA     45-64
## 4696 tour_idqlz5zi4z                    ITALY     25-44
## 4697 tour_idp95p50hx UNITED STATES OF AMERICA     45-64
## 4698 tour_idzxye7pbm                 ZIMBABWE     45-64
## 4699 tour_id8ojewhli                 ZIMBABWE     18-24
## 4700 tour_id4qig6fue                 ZIMBABWE     25-44
## 4701 tour_idnhnb7w5x                    ITALY     25-44
## 4703 tour_id2jip3gau           UNITED KINGDOM     25-44
## 4704 tour_id3ptnp399              NEW ZEALAND     45-64
## 4705 tour_idxsu2ayir           UNITED KINGDOM       65+
## 4706 tour_id2d0hnidr                 ZIMBABWE     25-44
## 4707 tour_idoe2dgcfw                    ITALY     45-64
## 4708 tour_idve19gwfw                 ZIMBABWE     25-44
## 4709 tour_idzqx24v1x                   UGANDA     25-44
## 4710 tour_ide76l2ii3                  GERMANY     18-24
## 4712 tour_idm3jooa43                   NORWAY     25-44
## 4713 tour_idao6u2ivr                  DENMARK       65+
## 4714 tour_idgm5lgv2z                 ZIMBABWE     25-44
## 4715 tour_idywjir81c                    ITALY     25-44
## 4716 tour_id1aien24d                    KENYA     25-44
## 4717 tour_idzqgiitnm                    JAPAN     45-64
## 4718 tour_idfxgohm7b UNITED STATES OF AMERICA     25-44
## 4719 tour_idd2hh83ag                   COMORO     25-44
## 4720 tour_id3oqsefbo                    ITALY     45-64
## 4721 tour_idhk67yo59 UNITED STATES OF AMERICA       65+
## 4722 tour_idoo7t7yy4           UNITED KINGDOM       65+
## 4723 tour_idhi6x53yz             SOUTH AFRICA     25-44
## 4724 tour_id5nazltpt                   UGANDA     25-44
## 4725 tour_idsi0t52h1 UNITED STATES OF AMERICA     45-64
## 4727 tour_idz8440rr5                    ITALY     25-44
## 4728 tour_id8ca30q6d                    INDIA     25-44
## 4729 tour_id4e9yd8hn                    ITALY     45-64
## 4731 tour_idh8wutrqs                  LESOTHO     25-44
## 4732 tour_idx5j1cig3           UNITED KINGDOM     25-44
## 4733 tour_idx3y90ezt                    ITALY     25-44
## 4734 tour_idu5xj0n8d                   ISRAEL     45-64
## 4735 tour_id47243y4r UNITED STATES OF AMERICA     25-44
## 4736 tour_idx6oa842y               SWIZERLAND     25-44
## 4737 tour_idhfgguinp                AUSTRALIA       65+
## 4738 tour_ididjab9mk             SOUTH AFRICA     45-64
## 4739 tour_idiq2zlyhu                    KOREA     45-64
## 4740 tour_idopxpvots                      UAE       <18
## 4741 tour_idpdrnfw3h           UNITED KINGDOM     25-44
## 4742 tour_idhlmwf4xu             SOUTH AFRICA       65+
## 4743 tour_id8gyt792t           UNITED KINGDOM     18-24
## 4744 tour_idy5lzbyb5                  GERMANY     45-64
## 4745 tour_idma55jkph UNITED STATES OF AMERICA     25-44
## 4746 tour_id39p0lfh1                   ISRAEL     25-44
## 4748 tour_idq3jw41d8           UNITED KINGDOM     18-24
## 4749 tour_idulef40a1 UNITED STATES OF AMERICA     25-44
## 4750 tour_id63d5ywd0                  GERMANY     25-44
## 4751 tour_idclsoqp4g                  GERMANY     25-44
## 4752 tour_idytrdblla                    KENYA     25-44
## 4754 tour_idhxr9e03i                    INDIA     25-44
## 4755 tour_id6kr1t6vu                AUSTRALIA     18-24
## 4756 tour_idjn41g2ke                  BELGIUM       65+
## 4757 tour_idr61nzk6a                  GERMANY     45-64
## 4759 tour_idlcrhxgeg           UNITED KINGDOM     25-44
## 4760 tour_idhisn2vt3                SWAZILAND     18-24
## 4761 tour_id978nbzox                  GERMANY     18-24
## 4762 tour_id0igfeaga                   SWEDEN       65+
## 4763 tour_idwvmeznc2                   ZAMBIA     25-44
## 4764 tour_idfzz25yha UNITED STATES OF AMERICA     25-44
## 4765 tour_idih1ex95w                    KENYA     25-44
## 4766 tour_idktaquvsi                   CANADA     25-44
## 4767 tour_idae76cxb8              NETHERLANDS     25-44
## 4768 tour_idzm81a9tz                    JAPAN     25-44
## 4769 tour_idnesd3vy4                   RWANDA     18-24
## 4770 tour_idnd1n8fxu           UNITED KINGDOM     45-64
## 4771 tour_idntu6mljp UNITED STATES OF AMERICA     45-64
## 4773 tour_idx5hr98u8                   FRANCE     45-64
## 4774 tour_idf693ll5p                  IRELAND     25-44
## 4775 tour_id4z9diia7                  GERMANY     18-24
## 4776 tour_idxig605m3                  GERMANY     45-64
## 4777 tour_id7b7qkpc6                    ITALY     45-64
## 4778 tour_id6m8pvmkj                    ITALY     25-44
## 4779 tour_idpnq997hl                  GERMANY       65+
## 4780 tour_idqwu9268v              NETHERLANDS     25-44
## 4781 tour_id3wy1mltw                   FRANCE     18-24
## 4782 tour_idk3c97fe2             SOUTH AFRICA     18-24
## 4783 tour_idsohm2thr                   ZAMBIA     18-24
## 4784 tour_idyb5nk6wo UNITED STATES OF AMERICA     45-64
## 4785 tour_idoe8i5gnm                    ITALY     25-44
## 4787 tour_idlhxx151s                    INDIA     25-44
## 4788 tour_id16owaqlg                AUSTRALIA       65+
## 4789 tour_idzru3m0p4                   UGANDA     25-44
## 4790 tour_idormxxt4s                    KENYA     45-64
## 4791 tour_id2q879di3                AUSTRALIA     25-44
## 4792 tour_id1imluz97              SAUD ARABIA     18-24
## 4793 tour_id6ehn1qgx                  BURUNDI     18-24
## 4794 tour_id6xtmlgs0                  GERMANY     25-44
## 4795 tour_idmrbxnb4e                  BELGIUM     45-64
## 4796 tour_idrr0ns1ch             SOUTH AFRICA     25-44
## 4797 tour_id0svo16cn                AUSTRALIA     25-44
## 4798 tour_ido3yd5k0a                   ZAMBIA     18-24
## 4799 tour_idg0f0wxdk           UNITED KINGDOM     25-44
## 4800 tour_idah513rsm                    ITALY     45-64
## 4801 tour_idpss6m8kk                    INDIA     45-64
## 4802 tour_id3lzwgxth                   FRANCE     25-44
## 4803 tour_idb4lah8lw                  DENMARK     25-44
## 4804 tour_idlp8sieqj                    KENYA     45-64
## 4805 tour_ideaddot57 UNITED STATES OF AMERICA       65+
## 4806 tour_idkjnnct5v                   RWANDA     45-64
## 4807 tour_id7mxmc8gd                    KENYA     25-44
## 4808 tour_id53cwljbt           UNITED KINGDOM     45-64
## 4809 tour_id5m55wyw2                   RWANDA     25-44
## 4810 tour_idvqpbfgb0                 ZIMBABWE     25-44
## 4811 tour_id1ioeukva                    ITALY     18-24
## 4812 tour_id7kli2yt8                    ITALY     25-44
## 4813 tour_idzzid40ho                   ISRAEL     25-44
## 4815 tour_id3n3u6rdo                  GERMANY     45-64
## 4817 tour_idsev95icg                AUSTRALIA       65+
## 4818 tour_idd159vze9               SWIZERLAND     18-24
## 4820 tour_id51haq0vk UNITED STATES OF AMERICA     25-44
## 4821 tour_idz0cs5hzd UNITED STATES OF AMERICA       65+
## 4822 tour_idl2pjn1n2                    ITALY     25-44
## 4823 tour_idq2kauykr           UNITED KINGDOM     25-44
## 4824 tour_idda1w5nyb                   UGANDA     25-44
## 4825 tour_id6xfvm11l                    ITALY     18-24
## 4826 tour_id9u1479n2              SAUD ARABIA     45-64
## 4827 tour_iddvvo0q9a           UNITED KINGDOM     18-24
## 4828 tour_ido3eb9zen UNITED STATES OF AMERICA       65+
## 4829 tour_idfewj0tg6                    SPAIN       65+
## 4830 tour_idvbum8nvw           UNITED KINGDOM     25-44
## 4831 tour_idf2pcb8ta                    CHINA     25-44
## 4832 tour_idxewa6bo4                 THAILAND     25-44
## 4833 tour_id31yae2a4                    ITALY     18-24
## 4834 tour_id7ny83fvd     UNITED ARAB EMIRATES     45-64
## 4835 tour_id39hmfo2k             SOUTH AFRICA     45-64
## 4836 tour_idchpvjdt0                     OMAN     25-44
## 4837 tour_idnb4ri0ri                  GERMANY     25-44
## 4838 tour_idd7viko18             SOUTH AFRICA     25-44
## 4839 tour_idide8n0iy              NETHERLANDS     25-44
## 4840 tour_idwz4pomk5                    KENYA     45-64
## 4841 tour_iddtcb6uci                  BURUNDI     18-24
## 4842 tour_idl3apky1a               SWIZERLAND     25-44
## 4843 tour_iduzw28u8w                   FRANCE     45-64
## 4844 tour_idpyjkgic3                      UAE     45-64
## 4845 tour_id2tii2d6k                   SWEDEN     25-44
## 4846 tour_iddylb70v9                    ITALY     45-64
## 4847 tour_idvjgx01vp                    ITALY       65+
## 4848 tour_id9ox6yded                   FRANCE     25-44
## 4849 tour_idu8exs1ga                  GERMANY     25-44
## 4850 tour_id3gyak6lj                    KENYA     25-44
## 4851 tour_idj0g43p3c                   RWANDA     25-44
## 4852 tour_idgtvfiach               MOZAMBIQUE     25-44
## 4853 tour_ida46getvn                   SWEDEN     18-24
## 4854 tour_id9r8k5il6                    ITALY     25-44
## 4855 tour_idonp4b14x                   UGANDA     25-44
##                       travel_with total_female total_male
## 1                   With Children            0          2
## 2                     With Spouse            1          1
## 3                     With Spouse            1          1
## 4        With Spouse and Children            3          1
## 5                           Alone            0          1
## 6                     With Spouse            1          1
## 7                     With Spouse            1          1
## 8                           Alone            0          1
## 9                           Alone            1          0
## 10                    With Spouse            1          1
## 11                          Alone            0          1
## 12       With Spouse and Children            2          1
## 13       With Spouse and Children            3          1
## 14                    With Spouse            1          1
## 15                          Alone            0          1
## 16                          Alone            0          1
## 17                          Alone            0          1
## 18                    With Spouse            1          1
## 19                          Alone            1          0
## 20                          Alone            0          1
## 21                          Alone            1          0
## 22                          Alone            1          0
## 23                          Alone            1          0
## 24                          Alone            1          0
## 26   With Other Friends/Relatives            1          1
## 27                          Alone            0          1
## 28                          Alone            0          1
## 29                    With Spouse            1          1
## 30   With Other Friends/Relatives            2          2
## 31                    With Spouse            1          1
## 32   With Other Friends/Relatives            2          1
## 33   With Other Friends/Relatives            4          8
## 34                          Alone            0          1
## 35                    With Spouse            1          1
## 36                    With Spouse            1          1
## 37                          Alone            0          1
## 38                    With Spouse            1          1
## 39                          Alone            0          1
## 40   With Other Friends/Relatives            2          2
## 41                          Alone            0          1
## 42                    With Spouse            1          1
## 43                          Alone            0          1
## 44                          Alone            0          1
## 45                    With Spouse            1          1
## 46                          Alone            0          1
## 47                          Alone            0          1
## 48                  With Children            1          1
## 49                          Alone            0          1
## 50                          Alone            1          0
## 51                    With Spouse            1          1
## 52   With Other Friends/Relatives            2          0
## 53       With Spouse and Children            2          1
## 54                          Alone            1          0
## 55                          Alone            0          1
## 56                          Alone            1          0
## 57                          Alone            1          0
## 58                          Alone            1          0
## 59                    With Spouse            1          1
## 60                          Alone            0          1
## 61   With Other Friends/Relatives            0          2
## 62       With Spouse and Children            2          1
## 63                    With Spouse            1          1
## 64       With Spouse and Children            2          2
## 65                    With Spouse            1          1
## 66   With Other Friends/Relatives            4          1
## 67   With Other Friends/Relatives            1          2
## 68                          Alone            0          1
## 69                    With Spouse            1          1
## 70   With Other Friends/Relatives            1          1
## 71                  With Children            1          2
## 72   With Other Friends/Relatives            1          2
## 73   With Other Friends/Relatives            2          2
## 74   With Other Friends/Relatives            1          1
## 75                          Alone            1          0
## 76   With Other Friends/Relatives            3          0
## 77                    With Spouse            1          1
## 78                  With Children            1          1
## 79                          Alone            0          1
## 80                          Alone            0          1
## 81                          Alone            0          1
## 83                  With Children            1          1
## 84                          Alone            0          1
## 85   With Other Friends/Relatives            3          4
## 86   With Other Friends/Relatives            2          5
## 87       With Spouse and Children            2          2
## 88                    With Spouse            1          1
## 89                  With Children            1          1
## 90                          Alone            0          1
## 91   With Other Friends/Relatives            1          8
## 92                    With Spouse            1          1
## 93                          Alone            0          1
## 94                          Alone            0          1
## 96                          Alone            0          1
## 97                          Alone            1          0
## 98                    With Spouse            1          1
## 99                          Alone            1          0
## 100      With Spouse and Children            1          3
## 101                 With Children           49         44
## 102                   With Spouse            1          1
## 103                         Alone            1          0
## 104                         Alone            0          1
## 105                   With Spouse            1          1
## 106  With Other Friends/Relatives            1          3
## 107  With Other Friends/Relatives            1          0
## 108                   With Spouse            1          1
## 109                   With Spouse            1          1
## 110                         Alone            1          0
## 111      With Spouse and Children            4          1
## 112                         Alone            0          1
## 113                         Alone            0          1
## 114                 With Children            1          1
## 115                   With Spouse            2          0
## 117  With Other Friends/Relatives            0          2
## 118                   With Spouse            1          1
## 119                         Alone            1          0
## 120                         Alone            0          1
## 121                         Alone            0          1
## 123                         Alone            1          0
## 124                         Alone            0          1
## 125                         Alone            1          0
## 126  With Other Friends/Relatives            2          1
## 127                         Alone            1          0
## 128                         Alone            0          1
## 129                   With Spouse            1          1
## 130                 With Children            0          2
## 131                         Alone            0          1
## 132                         Alone            1          0
## 133                         Alone            1          0
## 134  With Other Friends/Relatives            1          2
## 135      With Spouse and Children            1          3
## 136  With Other Friends/Relatives            5          7
## 138                         Alone            0          1
## 139                   With Spouse            1          1
## 140                   With Spouse            1          1
## 141                   With Spouse            1          1
## 142                         Alone            0          1
## 143                   With Spouse            1          1
## 144                         Alone            1          0
## 145                         Alone            0          1
## 146                         Alone            0          1
## 147  With Other Friends/Relatives            2          0
## 148  With Other Friends/Relatives            2          5
## 149  With Other Friends/Relatives            3          2
## 150                         Alone            1          0
## 151                         Alone            1          0
## 152                         Alone            1          0
## 153                   With Spouse            1          1
## 154                         Alone            0          1
## 155                         Alone            0          1
## 156                   With Spouse            1          1
## 157                   With Spouse            1          1
## 158                         Alone            0          1
## 159      With Spouse and Children            3          0
## 160                         Alone            1          0
## 161                         Alone            1          0
## 162                         Alone            0          1
## 163                   With Spouse            1          1
## 164  With Other Friends/Relatives            1          2
## 165  With Other Friends/Relatives            2          1
## 166  With Other Friends/Relatives            3          0
## 167  With Other Friends/Relatives            3          0
## 168                   With Spouse            1          1
## 169                         Alone            0          1
## 170                         Alone            0          1
## 171                         Alone            0          1
## 173                   With Spouse            1          1
## 174  With Other Friends/Relatives            0          1
## 175      With Spouse and Children            4          4
## 176                 With Children            1          1
## 177                         Alone            0          1
## 178                         Alone            1          0
## 179                   With Spouse            1          1
## 180                         Alone            0          1
## 181                   With Spouse            1          1
## 182                         Alone            1          0
## 183                         Alone            0          1
## 184  With Other Friends/Relatives            2          0
## 185                         Alone            1          0
## 186  With Other Friends/Relatives            0          2
## 187                         Alone            1          0
## 188                         Alone            0          1
## 189                         Alone            1          0
## 190                   With Spouse            1          1
## 191      With Spouse and Children            2          1
## 192                         Alone            1          0
## 193                         Alone            1          0
## 194                   With Spouse            1          1
## 195                   With Spouse            1          1
## 196                         Alone            0          1
## 197                   With Spouse            1          1
## 198                   With Spouse            1          1
## 199                   With Spouse            1          1
## 200                   With Spouse            1          1
## 201                         Alone            0          1
## 202                   With Spouse            1          1
## 203  With Other Friends/Relatives            1          1
## 204                         Alone            0          1
## 205                         Alone            1          0
## 206                   With Spouse            1          1
## 207  With Other Friends/Relatives            3          1
## 208                         Alone            0          1
## 209  With Other Friends/Relatives            2          0
## 210                         Alone            0          1
## 211                         Alone            0          1
## 212  With Other Friends/Relatives            1          0
## 213                   With Spouse            1          1
## 214                         Alone            0          1
## 215                         Alone            1          0
## 216  With Other Friends/Relatives            2          2
## 217                   With Spouse            1          1
## 218  With Other Friends/Relatives            2          1
## 219                   With Spouse            1          1
## 220                   With Spouse            1          1
## 221      With Spouse and Children            2          1
## 222                 With Children            1          2
## 223                   With Spouse            1          1
## 224                 With Children            2          2
## 225  With Other Friends/Relatives            2          0
## 226                         Alone            0          1
## 228                         Alone            0          1
## 229      With Spouse and Children            1          2
## 230                         Alone            1          0
## 231      With Spouse and Children            1          2
## 232                         Alone            1          0
## 233                         Alone            0          1
## 234                         Alone            1          0
## 235                         Alone            1          0
## 237      With Spouse and Children            2          3
## 238                   With Spouse            1          1
## 239                         Alone            1          0
## 241                         Alone            0          1
## 242                   With Spouse            1          1
## 243                         Alone            0          1
## 244                         Alone            0          1
## 245                         Alone            1          0
## 246  With Other Friends/Relatives            0          3
## 247                   With Spouse            1          1
## 248                   With Spouse            1          1
## 249                   With Spouse            1          1
## 250                   With Spouse            1          1
## 251                         Alone            0          1
## 252  With Other Friends/Relatives            2          0
## 253      With Spouse and Children            4          2
## 254                   With Spouse            1          1
## 255      With Spouse and Children            1          2
## 256                   With Spouse            1          1
## 257                   With Spouse            1          1
## 258                   With Spouse            2          1
## 259  With Other Friends/Relatives            1          0
## 260                         Alone            1          0
## 261                   With Spouse            1          1
## 262                   With Spouse            1          1
## 264      With Spouse and Children            2          2
## 265  With Other Friends/Relatives            1          1
## 266                   With Spouse            1          1
## 267                 With Children            2          0
## 268  With Other Friends/Relatives            2          2
## 269  With Other Friends/Relatives            4          1
## 270                         Alone            1          0
## 271                   With Spouse            1          1
## 272  With Other Friends/Relatives            1          1
## 273      With Spouse and Children            2          2
## 274      With Spouse and Children            1          2
## 275                         Alone            0          1
## 276                         Alone            0          1
## 277                         Alone            0          1
## 278                         Alone            0          1
## 279                         Alone            0          1
## 280  With Other Friends/Relatives            2          1
## 282                   With Spouse            1          1
## 283                   With Spouse            1          1
## 284                   With Spouse            1          1
## 285                         Alone            0          1
## 286                         Alone            0          1
## 287                   With Spouse            1          1
## 288                         Alone            1          0
## 289                         Alone            1          0
## 290                         Alone            0          1
## 291                         Alone            0          1
## 292                         Alone            1          0
## 293                         Alone            1          0
## 294                         Alone            0          1
## 295  With Other Friends/Relatives            2          2
## 296  With Other Friends/Relatives            2          0
## 297                         Alone            1          0
## 298                         Alone            0          1
## 299                         Alone            0          1
## 300  With Other Friends/Relatives            0          2
## 302                         Alone            0          1
## 303                   With Spouse            1          1
## 305      With Spouse and Children            2          3
## 306                         Alone            0          1
## 307                         Alone            0          1
## 308                         Alone            0          1
## 309  With Other Friends/Relatives            1          1
## 310                         Alone            0          1
## 311                   With Spouse            1          1
## 312      With Spouse and Children            3          2
## 313                         Alone            1          0
## 314                 With Children            1          1
## 315      With Spouse and Children            1          2
## 316                         Alone            0          1
## 320                         Alone            0          1
## 321                   With Spouse            1          1
## 322  With Other Friends/Relatives            1          1
## 323                         Alone            1          0
## 324                 With Children            0          3
## 325                         Alone            1          0
## 326                         Alone            0          1
## 327  With Other Friends/Relatives            1          1
## 328                   With Spouse            1          1
## 329                         Alone            1          0
## 330                         Alone            0          1
## 331                         Alone            0          1
## 332  With Other Friends/Relatives            5          5
## 333                   With Spouse            1          1
## 334                         Alone            0          1
## 335  With Other Friends/Relatives            1          2
## 336                         Alone            1          0
## 337      With Spouse and Children            1          2
## 338                   With Spouse            1          1
## 339                         Alone            0          1
## 340                         Alone            1          0
## 341                   With Spouse            1          1
## 342                   With Spouse            1          1
## 343                         Alone            0          1
## 344      With Spouse and Children            2          2
## 345  With Other Friends/Relatives            0          2
## 346                   With Spouse            1          1
## 347                   With Spouse            1          1
## 348      With Spouse and Children            2          1
## 349                         Alone            0          1
## 350                   With Spouse            1          1
## 351                   With Spouse            1          1
## 352                         Alone            0          1
## 354                         Alone            0          1
## 355                         Alone            0          1
## 356                   With Spouse            1          1
## 357                   With Spouse            1          1
## 358                   With Spouse            1          1
## 359                   With Spouse            1          1
## 360  With Other Friends/Relatives            0          2
## 361                   With Spouse            1          1
## 362      With Spouse and Children            1          2
## 363                   With Spouse            1          1
## 364      With Spouse and Children            1          3
## 365  With Other Friends/Relatives            0          2
## 366                         Alone            0          1
## 367                         Alone            0          1
## 368                         Alone            1          0
## 369                   With Spouse            1          1
## 370      With Spouse and Children            2          3
## 371                   With Spouse            1          1
## 372                         Alone            0          1
## 373                   With Spouse            1          1
## 374                         Alone            1          0
## 375  With Other Friends/Relatives            0          3
## 376                   With Spouse            1          1
## 377                   With Spouse            1          1
## 378  With Other Friends/Relatives            1          1
## 379                         Alone            0          1
## 380      With Spouse and Children            1          2
## 381                         Alone            1          0
## 382                         Alone            1          0
## 383                         Alone            0          1
## 384                         Alone            1          0
## 385                         Alone            0          1
## 386  With Other Friends/Relatives            1          1
## 387  With Other Friends/Relatives            0          2
## 388                         Alone            1          0
## 389                         Alone            0          1
## 390  With Other Friends/Relatives            6          6
## 391                         Alone            0          1
## 392  With Other Friends/Relatives            0          2
## 393  With Other Friends/Relatives            2          0
## 394                         Alone            0          1
## 396                         Alone            1          0
## 397                         Alone            0          1
## 398  With Other Friends/Relatives            1          3
## 399                   With Spouse            1          1
## 400                         Alone            0          1
## 401                   With Spouse            1          1
## 402                         Alone            1          0
## 403                   With Spouse            1          1
## 404                         Alone            1          0
## 405                         Alone            1          0
## 406                 With Children            2          0
## 407                   With Spouse            0          1
## 408                         Alone            0          1
## 409                   With Spouse            1          1
## 410                         Alone            1          0
## 411                         Alone            0          1
## 412                         Alone            0          1
## 413                   With Spouse            1          1
## 414                         Alone            0          1
## 415  With Other Friends/Relatives            0          2
## 416  With Other Friends/Relatives            5          6
## 417                         Alone            1          0
## 418  With Other Friends/Relatives            1          1
## 419                         Alone            0          1
## 420  With Other Friends/Relatives            2          0
## 422                   With Spouse            1          1
## 423                         Alone            0          1
## 424  With Other Friends/Relatives            5          5
## 426                         Alone            0          1
## 427  With Other Friends/Relatives            2          0
## 428  With Other Friends/Relatives            1          0
## 429                   With Spouse            0          1
## 430                         Alone            0          1
## 431                   With Spouse            1          1
## 432  With Other Friends/Relatives            4          0
## 433                         Alone            0          1
## 435                 With Children            2          0
## 436                         Alone            0          1
## 437                         Alone            0          1
## 439                         Alone            0          1
## 440                   With Spouse            1          1
## 441                   With Spouse            0          2
## 442                         Alone            0          1
## 443                   With Spouse            1          1
## 444  With Other Friends/Relatives            0          2
## 445                   With Spouse            1          1
## 446                   With Spouse            5          3
## 447                         Alone            1          0
## 448                 With Children            1          1
## 449                         Alone            1          0
## 450                   With Spouse            1          1
## 451                   With Spouse            1          1
## 452                         Alone            0          1
## 453  With Other Friends/Relatives            1          1
## 454                         Alone            0          1
## 456                         Alone            0          1
## 457                         Alone            0          1
## 458                   With Spouse            1          1
## 459                         Alone            1          0
## 460  With Other Friends/Relatives            1          1
## 461                         Alone            0          1
## 462                   With Spouse            1          1
## 463  With Other Friends/Relatives            2          1
## 464                   With Spouse            1          1
## 465                   With Spouse            1          1
## 466                         Alone            0          1
## 467                         Alone            1          0
## 468  With Other Friends/Relatives            0          3
## 469                         Alone            1          0
## 470  With Other Friends/Relatives            1          4
## 471                         Alone            0          1
## 472                         Alone            0          1
## 473                   With Spouse            1          1
## 474  With Other Friends/Relatives            3          0
## 475                   With Spouse            1          1
## 476  With Other Friends/Relatives            2          0
## 477                   With Spouse            1          1
## 478                   With Spouse            1          1
## 479  With Other Friends/Relatives            0          2
## 480                   With Spouse            1          1
## 481                         Alone            1          0
## 482                         Alone            0          1
## 483                   With Spouse            1          1
## 484  With Other Friends/Relatives            1          0
## 485                         Alone            0          1
## 486                   With Spouse            1          1
## 487  With Other Friends/Relatives            2          1
## 488                 With Children            1          1
## 489                         Alone            1          4
## 490                         Alone            0          1
## 491                         Alone            1          0
## 492                   With Spouse            1          1
## 493  With Other Friends/Relatives            0          3
## 494  With Other Friends/Relatives            1          1
## 495      With Spouse and Children            2          2
## 497      With Spouse and Children            2          2
## 498                   With Spouse            1          1
## 499                   With Spouse            1          1
## 500                         Alone            1          0
## 501                         Alone            0          1
## 502                   With Spouse            1          1
## 503  With Other Friends/Relatives            1          1
## 504                         Alone            1          0
## 505                         Alone            0          1
## 506                         Alone            0          1
## 507                         Alone            1          0
## 508  With Other Friends/Relatives            2          0
## 509  With Other Friends/Relatives            2          5
## 510                         Alone            1          0
## 511                   With Spouse            1          1
## 512  With Other Friends/Relatives            1          1
## 513  With Other Friends/Relatives            1          0
## 514                         Alone            1          0
## 515                   With Spouse            1          1
## 516                   With Spouse            1          1
## 517                   With Spouse            1          1
## 518  With Other Friends/Relatives            1          1
## 519                         Alone            0          1
## 520                         Alone            0          1
## 521      With Spouse and Children            3          1
## 522                   With Spouse            1          1
## 523                         Alone            1          0
## 524                         Alone            0          1
## 526                         Alone            0          1
## 527                         Alone            0          1
## 528                         Alone            1          0
## 529                   With Spouse            1          1
## 530  With Other Friends/Relatives            7          7
## 531                   With Spouse            1          1
## 532                         Alone            0          1
## 533                   With Spouse            1          1
## 534                         Alone            0          1
## 535                         Alone            0          1
## 536                         Alone            1          1
## 537                   With Spouse            1          1
## 538                   With Spouse            1          1
## 539                         Alone            1          0
## 540  With Other Friends/Relatives            2          3
## 541                         Alone            1          0
## 542                         Alone            0          1
## 543                         Alone            1          0
## 544                         Alone            0          1
## 545                   With Spouse            1          1
## 546  With Other Friends/Relatives            2          0
## 547                         Alone            1          0
## 548                         Alone            1          0
## 549                 With Children            0          2
## 550                         Alone            1          0
## 551                         Alone            1          0
## 552                   With Spouse            1          1
## 553                   With Spouse            1          1
## 554                         Alone            1          0
## 555                         Alone            1          0
## 556                   With Spouse            1          1
## 557                         Alone            0          1
## 558                         Alone            0          1
## 559                   With Spouse            1          1
## 560                   With Spouse            1          1
## 561  With Other Friends/Relatives            3          2
## 562                         Alone            1          0
## 563                   With Spouse            1          1
## 564                   With Spouse            1          1
## 565                   With Spouse            1          1
## 566                         Alone            0          1
## 567                   With Spouse            1          1
## 568                         Alone            0          1
## 570                         Alone            1          0
## 571                         Alone            0          1
## 572                   With Spouse            1          1
## 573                   With Spouse            1          1
## 574                         Alone            0          1
## 575  With Other Friends/Relatives            2          2
## 576      With Spouse and Children            2          1
## 577                         Alone            1          0
## 578                         Alone            1          0
## 579                         Alone            0          1
## 581                   With Spouse            1          1
## 582                         Alone            0          1
## 583                         Alone            1          0
## 584                         Alone            0          1
## 585                         Alone            0          1
## 586                   With Spouse            1          1
## 587                   With Spouse            1          1
## 588                         Alone            0          1
## 589                         Alone            0          1
## 590                         Alone            1          0
## 591      With Spouse and Children            4          1
## 592                   With Spouse            1          1
## 593  With Other Friends/Relatives            2          0
## 594      With Spouse and Children            2          1
## 595                         Alone            0          1
## 596                         Alone            0          1
## 597                         Alone            0          1
## 598  With Other Friends/Relatives            2          0
## 599                         Alone            0          1
## 600  With Other Friends/Relatives            0          1
## 601                   With Spouse            1          1
## 602                   With Spouse            1          1
## 603  With Other Friends/Relatives            1          3
## 604  With Other Friends/Relatives            0          2
## 605                         Alone            1          0
## 606                         Alone            0          1
## 607  With Other Friends/Relatives           10          6
## 608                   With Spouse            1          1
## 609                   With Spouse            1          1
## 611  With Other Friends/Relatives            1          3
## 612  With Other Friends/Relatives            1          1
## 613                         Alone            0          1
## 614  With Other Friends/Relatives            1          1
## 615                         Alone            1          0
## 616                   With Spouse            1          1
## 617                         Alone            0          1
## 618                         Alone            0          1
## 619  With Other Friends/Relatives            2          0
## 620  With Other Friends/Relatives            2          6
## 621                   With Spouse            1          1
## 622                 With Children            1          1
## 624      With Spouse and Children            1          4
## 625                         Alone            0          1
## 626                         Alone            1          0
## 627                         Alone            0          1
## 628  With Other Friends/Relatives            2          0
## 629                   With Spouse            1          1
## 631                         Alone            0          1
## 632                         Alone            1          0
## 633                   With Spouse            1          1
## 634                         Alone            0          1
## 635                         Alone            0          1
## 636                   With Spouse            1          1
## 638                   With Spouse            1          1
## 639  With Other Friends/Relatives            2          0
## 640                         Alone            0          1
## 641                         Alone            0          1
## 642  With Other Friends/Relatives            0          5
## 643                         Alone            1          0
## 644  With Other Friends/Relatives            5          0
## 645                   With Spouse            1          1
## 646  With Other Friends/Relatives            2          0
## 647                   With Spouse            1          1
## 648  With Other Friends/Relatives            0          5
## 649                   With Spouse            1          1
## 650                         Alone            1          0
## 651                         Alone            0          1
## 652                         Alone            0          1
## 653                   With Spouse            1          1
## 654                         Alone            1          0
## 655                   With Spouse            1          1
## 656      With Spouse and Children            3          1
## 657                   With Spouse            1          1
## 658      With Spouse and Children            3          2
## 659  With Other Friends/Relatives            2          0
## 660                         Alone            0          1
## 661                   With Spouse            1          1
## 662  With Other Friends/Relatives            2          0
## 663  With Other Friends/Relatives            4          0
## 664                         Alone            1          0
## 665                   With Spouse            1          1
## 666                         Alone            0          1
## 667                   With Spouse            1          1
## 669                         Alone            1          0
## 670      With Spouse and Children            2          1
## 671                         Alone            1          0
## 672                   With Spouse            1          1
## 673  With Other Friends/Relatives            1          1
## 674                   With Spouse            1          1
## 675                         Alone            1          0
## 676      With Spouse and Children            1          3
## 677      With Spouse and Children            2          3
## 678                         Alone            0          1
## 679  With Other Friends/Relatives            0          2
## 680                         Alone            0          1
## 681                   With Spouse            1          1
## 682                         Alone            0          1
## 683                         Alone            0          1
## 684  With Other Friends/Relatives            0          2
## 685                   With Spouse            1          1
## 686                         Alone            0          1
## 688  With Other Friends/Relatives           13         14
## 690                         Alone            1          0
## 691                 With Children            1          3
## 692                   With Spouse            1          1
## 693                         Alone            1          0
## 694                   With Spouse            1          1
## 695                   With Spouse            1          1
## 696                   With Spouse            2          0
## 697                   With Spouse            1          1
## 698                   With Spouse            1          1
## 699                         Alone            0          1
## 700                   With Spouse            1          1
## 701                   With Spouse            1          1
## 702  With Other Friends/Relatives            1          1
## 703  With Other Friends/Relatives            2          2
## 704                         Alone            0          1
## 705  With Other Friends/Relatives            2          0
## 706                 With Children            3          0
## 707  With Other Friends/Relatives            1          2
## 708                 With Children            1          1
## 709                   With Spouse            1          1
## 710                         Alone            0          1
## 711                         Alone            1          0
## 712  With Other Friends/Relatives            2          1
## 713                         Alone            1          0
## 714  With Other Friends/Relatives            4          4
## 715                         Alone            0          1
## 716                   With Spouse            1          1
## 717                         Alone            0          1
## 718      With Spouse and Children            3          3
## 719  With Other Friends/Relatives            2          0
## 720                   With Spouse            1          1
## 721                   With Spouse            1          1
## 722  With Other Friends/Relatives            2          0
## 723      With Spouse and Children            5          7
## 724                         Alone            1          0
## 725                   With Spouse            1          1
## 726                   With Spouse            1          1
## 727                         Alone            0          1
## 728                         Alone            0          1
## 729                   With Spouse            1          1
## 731                         Alone            1          0
## 732                   With Spouse            0          1
## 733                         Alone            1          0
## 734  With Other Friends/Relatives            1          3
## 735  With Other Friends/Relatives            3          3
## 737                         Alone            1          0
## 738                   With Spouse            1          1
## 739                         Alone            1          0
## 741                         Alone            1          0
## 742                   With Spouse            0          1
## 743                         Alone            0          1
## 744                         Alone            0          1
## 745  With Other Friends/Relatives            2          0
## 746                   With Spouse            1          1
## 747                   With Spouse            1          1
## 748                   With Spouse            1          1
## 749                   With Spouse            1          1
## 750                         Alone            0          1
## 751                   With Spouse            1          1
## 752                         Alone            0          1
## 753      With Spouse and Children            2          2
## 754                   With Spouse            1          1
## 755                         Alone            0          1
## 756  With Other Friends/Relatives            0          2
## 757  With Other Friends/Relatives            4          2
## 758                         Alone            0          1
## 759                   With Spouse            1          1
## 760                         Alone            1          0
## 761                         Alone            0          1
## 762                         Alone            1          0
## 763                         Alone            1          0
## 764                         Alone            0          1
## 765  With Other Friends/Relatives            2          0
## 766                         Alone            0          1
## 767                   With Spouse            1          1
## 768                   With Spouse            1          1
## 769                         Alone            0          1
## 770                         Alone            1          0
## 771                         Alone            0          1
## 772                         Alone            1          0
## 773                         Alone            1          0
## 774                         Alone            1          0
## 775                         Alone            1          0
## 776                   With Spouse            1          1
## 777                         Alone            0          1
## 778      With Spouse and Children            3          1
## 779                 With Children            2          2
## 780                   With Spouse            1          1
## 781                 With Children            1          1
## 782                         Alone            0          1
## 783                   With Spouse            1          1
## 784                   With Spouse            1          1
## 785                   With Spouse            1          1
## 786                   With Spouse            1          1
## 787  With Other Friends/Relatives            6          6
## 788                   With Spouse            1          1
## 789                   With Spouse            1          1
## 790                   With Spouse            1          1
## 791                         Alone            1          0
## 792                   With Spouse            1          1
## 793                         Alone            1          0
## 794                   With Spouse            1          1
## 795                         Alone            0          1
## 797  With Other Friends/Relatives            2          2
## 798                   With Spouse            1          1
## 799                   With Spouse            1          1
## 800  With Other Friends/Relatives            2          0
## 801                   With Spouse            0          1
## 802                         Alone            1          0
## 803  With Other Friends/Relatives            4          6
## 804      With Spouse and Children            1          2
## 805                         Alone            0          1
## 806  With Other Friends/Relatives            3          3
## 807                         Alone            0          1
## 808                         Alone            0          1
## 809  With Other Friends/Relatives            3          0
## 810                   With Spouse            1          1
## 811                         Alone            0          1
## 812                   With Spouse            1          1
## 814                         Alone            0          1
## 815                         Alone            0          1
## 816                         Alone            0          1
## 817                   With Spouse            1          1
## 818                         Alone            0          1
## 820                   With Spouse            1          1
## 821                   With Spouse            1          1
## 822                   With Spouse            0          1
## 823                   With Spouse            1          1
## 824                         Alone            1          0
## 825                         Alone            0          1
## 826                   With Spouse            1          1
## 827                         Alone            1          0
## 828                   With Spouse            1          1
## 829                         Alone            1          0
## 831  With Other Friends/Relatives            2          1
## 832                         Alone            1          0
## 833  With Other Friends/Relatives            0          2
## 834                         Alone            0          1
## 835                 With Children            1          1
## 836                 With Children            1          2
## 837                         Alone            0          1
## 838                 With Children            2          1
## 839  With Other Friends/Relatives            1          1
## 841                 With Children            1          1
## 842                         Alone            0          1
## 845                         Alone            1          1
## 846                         Alone            1          0
## 847  With Other Friends/Relatives            4          4
## 848                         Alone            0          1
## 849                   With Spouse            1          1
## 850                   With Spouse            1          1
## 851                         Alone            0          1
## 852      With Spouse and Children            2          2
## 853                         Alone            0          1
## 854                         Alone            0          1
## 855                   With Spouse            1          1
## 856  With Other Friends/Relatives            1          1
## 857                         Alone            0          1
## 858                         Alone            0          1
## 859  With Other Friends/Relatives            2          0
## 860                         Alone            1          0
## 861  With Other Friends/Relatives            2          0
## 862                         Alone            0          1
## 863                   With Spouse            1          1
## 864                         Alone            0          1
## 865                   With Spouse            1          1
## 866                         Alone            0          1
## 867                 With Children            1          1
## 868  With Other Friends/Relatives            1          1
## 869                         Alone            0          1
## 870                         Alone            1          0
## 871                         Alone            1          0
## 872      With Spouse and Children            2          1
## 873                   With Spouse            1          1
## 874                   With Spouse            1          1
## 875                   With Spouse            1          1
## 876                         Alone            0          1
## 877                 With Children            2          0
## 878                         Alone            1          0
## 879                   With Spouse            1          1
## 880                         Alone            1          1
## 881                         Alone            0          1
## 882      With Spouse and Children            1          2
## 883                         Alone            0          1
## 885                   With Spouse            1          1
## 886                   With Spouse            1          1
## 887                 With Children            2          1
## 889                         Alone            0          1
## 890  With Other Friends/Relatives            1          1
## 891  With Other Friends/Relatives            2          0
## 892  With Other Friends/Relatives            0          2
## 893  With Other Friends/Relatives            0          2
## 894                   With Spouse            1          1
## 895                         Alone            1          0
## 896                   With Spouse            1          1
## 897  With Other Friends/Relatives            1          0
## 898  With Other Friends/Relatives            6          4
## 899                         Alone            0          1
## 900                         Alone            0          1
## 902                         Alone            0          1
## 903                   With Spouse            1          1
## 904                   With Spouse            1          1
## 905                         Alone            0          1
## 906                   With Spouse            1          1
## 907                         Alone            0          1
## 908  With Other Friends/Relatives            2          0
## 909      With Spouse and Children            3          2
## 910                         Alone            0          1
## 911      With Spouse and Children            1          4
## 912  With Other Friends/Relatives            3          5
## 913                   With Spouse            1          1
## 914                   With Spouse            1          1
## 915                         Alone            0          1
## 916                         Alone            1          0
## 917  With Other Friends/Relatives            2          0
## 918                         Alone            0          1
## 919                         Alone            1          0
## 920                         Alone            1          0
## 921                   With Spouse            1          1
## 922      With Spouse and Children            1          2
## 923                         Alone            0          1
## 924  With Other Friends/Relatives            2          1
## 925                   With Spouse            1          1
## 926                         Alone            0          1
## 927  With Other Friends/Relatives           14         10
## 928                   With Spouse            1          1
## 929                   With Spouse            1          1
## 930                         Alone            0          1
## 931                         Alone            0          1
## 932                         Alone            0          1
## 933                         Alone            1          0
## 934                   With Spouse            1          1
## 935                         Alone            0          1
## 936                         Alone            1          0
## 937                         Alone            0          1
## 938  With Other Friends/Relatives            1          1
## 939                         Alone            0          1
## 940  With Other Friends/Relatives            0          2
## 941  With Other Friends/Relatives            1          0
## 942                         Alone            0          1
## 943                   With Spouse            1          1
## 945  With Other Friends/Relatives            2          0
## 946                         Alone            0          1
## 947                   With Spouse            1          1
## 948                         Alone            0          1
## 950                   With Spouse            1          1
## 951                   With Spouse            1          1
## 952                         Alone            0          1
## 953  With Other Friends/Relatives            8          1
## 954                   With Spouse            1          1
## 955                         Alone            1          0
## 956  With Other Friends/Relatives            0          2
## 957                         Alone            0          1
## 958                         Alone            0          1
## 959                   With Spouse            1          1
## 960  With Other Friends/Relatives            1          1
## 961                         Alone            0          1
## 962  With Other Friends/Relatives            3          4
## 963                         Alone            0          1
## 964  With Other Friends/Relatives            3          0
## 965                         Alone            0          1
## 966      With Spouse and Children            3          2
## 967                   With Spouse            1          1
## 968                         Alone            0          1
## 969  With Other Friends/Relatives            1          1
## 970                   With Spouse            1          1
## 971      With Spouse and Children            2          1
## 972                         Alone            1          0
## 973                         Alone            0          1
## 974                   With Spouse            1          1
## 975  With Other Friends/Relatives            1          1
## 976                         Alone            0          1
## 977                   With Spouse            1          1
## 978                   With Spouse            1          1
## 979      With Spouse and Children            2          1
## 980  With Other Friends/Relatives            1          1
## 981      With Spouse and Children            1          0
## 982                         Alone            1          0
## 983      With Spouse and Children            4          3
## 985                         Alone            1          0
## 986                   With Spouse            1          1
## 987                   With Spouse            1          0
## 989  With Other Friends/Relatives            2          0
## 990      With Spouse and Children            4          3
## 991  With Other Friends/Relatives            0          3
## 992  With Other Friends/Relatives            0          2
## 993                   With Spouse            1          1
## 994  With Other Friends/Relatives            2          0
## 995                         Alone            0          1
## 996      With Spouse and Children            2          3
## 997  With Other Friends/Relatives            1          1
## 998                         Alone            1          0
## 999                         Alone            1          0
## 1000 With Other Friends/Relatives            1          0
## 1001     With Spouse and Children            2          2
## 1002                  With Spouse            1          1
## 1003                  With Spouse            1          1
## 1004 With Other Friends/Relatives            1          1
## 1005                        Alone            0          1
## 1006 With Other Friends/Relatives            0          2
## 1007                  With Spouse            1          1
## 1008                        Alone            0          1
## 1009                  With Spouse            1          1
## 1010 With Other Friends/Relatives            2          0
## 1011 With Other Friends/Relatives            2          2
## 1012                        Alone            1          0
## 1013 With Other Friends/Relatives            3          3
## 1014                        Alone            0          1
## 1016                  With Spouse            1          1
## 1017                  With Spouse            1          1
## 1018 With Other Friends/Relatives            2          0
## 1019                        Alone            0          1
## 1020     With Spouse and Children            2          2
## 1021                        Alone            0          1
## 1022 With Other Friends/Relatives            1          1
## 1023     With Spouse and Children            1          3
## 1024 With Other Friends/Relatives            3          1
## 1026                        Alone            0          1
## 1027                        Alone            0          1
## 1028                  With Spouse            1          1
## 1029                        Alone            0          1
## 1030                        Alone            1          0
## 1032                        Alone            1          0
## 1033                        Alone            0          1
## 1034                        Alone            0          1
## 1035                        Alone            0          1
## 1036                        Alone            0          1
## 1037                  With Spouse            1          1
## 1038     With Spouse and Children            3          3
## 1040                        Alone            1          0
## 1041 With Other Friends/Relatives            2          0
## 1042     With Spouse and Children            3          1
## 1043                        Alone            0          1
## 1044                        Alone            1          0
## 1045                        Alone            1          0
## 1046                With Children            2          0
## 1047                  With Spouse            1          1
## 1048                  With Spouse            1          1
## 1049                        Alone            1          0
## 1050 With Other Friends/Relatives            1          1
## 1051                  With Spouse            1          1
## 1052 With Other Friends/Relatives            2          2
## 1054 With Other Friends/Relatives            2          0
## 1055                        Alone            0          1
## 1056                        Alone            0          1
## 1057                        Alone            0          1
## 1058                  With Spouse            1          1
## 1059                  With Spouse            1          1
## 1060                        Alone            0          1
## 1061                        Alone            1          0
## 1062 With Other Friends/Relatives            0          2
## 1063 With Other Friends/Relatives            2          0
## 1065                        Alone            1          0
## 1066                  With Spouse            1          1
## 1067                        Alone            0          1
## 1068                  With Spouse            1          1
## 1069                        Alone            0          1
## 1070                  With Spouse            1          1
## 1071 With Other Friends/Relatives            2          0
## 1072                  With Spouse            1          0
## 1073                        Alone            0          1
## 1074 With Other Friends/Relatives            1          0
## 1075     With Spouse and Children            2          2
## 1076                        Alone            1          0
## 1077     With Spouse and Children            2          2
## 1078                        Alone            1          0
## 1079 With Other Friends/Relatives            1          3
## 1080                        Alone            1          0
## 1081                        Alone            1          0
## 1082                  With Spouse            1          1
## 1083                  With Spouse            1          1
## 1084                  With Spouse            1          1
## 1085                        Alone            1          0
## 1087                  With Spouse            1          1
## 1088                  With Spouse            1          1
## 1091                  With Spouse            1          1
## 1092                        Alone            0          1
## 1093                        Alone            0          1
## 1094                        Alone            0          1
## 1095                        Alone            1          0
## 1096                        Alone            1          0
## 1098                        Alone            1          0
## 1099                  With Spouse            1          1
## 1100                        Alone            0          1
## 1101                  With Spouse            1          1
## 1102                        Alone            1          0
## 1103                  With Spouse            1          1
## 1104                        Alone            0          1
## 1105                        Alone            1          0
## 1106                        Alone            1          0
## 1108                        Alone            0          1
## 1109                  With Spouse            1          1
## 1110 With Other Friends/Relatives            1          1
## 1111                        Alone            0          1
## 1112                  With Spouse            1          1
## 1113                  With Spouse            1          1
## 1114 With Other Friends/Relatives            3          0
## 1115                  With Spouse            0          1
## 1116                        Alone            1          0
## 1117                  With Spouse            1          1
## 1118                  With Spouse            1          1
## 1120 With Other Friends/Relatives            0          2
## 1121 With Other Friends/Relatives            2          2
## 1122                        Alone            1          0
## 1123 With Other Friends/Relatives            1          1
## 1124                        Alone            0          1
## 1125                        Alone            1          0
## 1126                        Alone            1          0
## 1127                        Alone            0          1
## 1128 With Other Friends/Relatives            2          0
## 1129 With Other Friends/Relatives            2          0
## 1130                  With Spouse            1          1
## 1131 With Other Friends/Relatives            2          0
## 1132 With Other Friends/Relatives            1          1
## 1133                        Alone            0          1
## 1134                  With Spouse            2          1
## 1135                        Alone            0          1
## 1136                        Alone            0          1
## 1137                        Alone            0          1
## 1138                  With Spouse            1          1
## 1139                  With Spouse            1          1
## 1140                  With Spouse            1          1
## 1141                        Alone            1          0
## 1142 With Other Friends/Relatives            2          0
## 1143 With Other Friends/Relatives            0          2
## 1144     With Spouse and Children            3          1
## 1146                With Children            2          2
## 1147 With Other Friends/Relatives            0          2
## 1148                        Alone            1          0
## 1149                  With Spouse            1          1
## 1150                        Alone            0          1
## 1151 With Other Friends/Relatives            3          1
## 1152                        Alone            0          1
## 1153                        Alone            1          0
## 1154                        Alone            1          0
## 1155                        Alone            0          1
## 1156     With Spouse and Children            3          2
## 1157                        Alone            0          1
## 1158                        Alone            0          1
## 1159                  With Spouse            1          1
## 1160                  With Spouse            1          1
## 1161 With Other Friends/Relatives            5          7
## 1162                  With Spouse            1          1
## 1163                  With Spouse            1          1
## 1164                  With Spouse            1          1
## 1165     With Spouse and Children            1          3
## 1166                        Alone            1          0
## 1167     With Spouse and Children            2          1
## 1168                        Alone            0          1
## 1169                        Alone            0          1
## 1170                        Alone            0          1
## 1172                        Alone            0          1
## 1173                        Alone            0          1
## 1175                        Alone            0          1
## 1177                        Alone            0          1
## 1178                  With Spouse            2          0
## 1179                With Children            1          2
## 1180 With Other Friends/Relatives            2          0
## 1181 With Other Friends/Relatives            2          0
## 1182                        Alone            0          1
## 1184 With Other Friends/Relatives            4          2
## 1185                        Alone            0          1
## 1186                  With Spouse            1          1
## 1187                        Alone            0          1
## 1189                        Alone            0          1
## 1190                        Alone            4          0
## 1191 With Other Friends/Relatives            2          0
## 1192 With Other Friends/Relatives            6          2
## 1193                        Alone            0          1
## 1194 With Other Friends/Relatives            3          1
## 1196                  With Spouse            1          1
## 1197                        Alone            0          1
## 1198     With Spouse and Children            2          1
## 1199 With Other Friends/Relatives            2          0
## 1200                  With Spouse            1          1
## 1201                        Alone            0          1
## 1202                        Alone            0          1
## 1203 With Other Friends/Relatives            1          1
## 1204                        Alone            0          1
## 1205                        Alone            0          1
## 1206     With Spouse and Children            1          1
## 1207                        Alone            0          1
## 1208     With Spouse and Children            2          2
## 1209                        Alone            1          0
## 1210                        Alone            1          0
## 1211     With Spouse and Children            3          1
## 1212                        Alone            1          0
## 1213                        Alone            0          1
## 1214                        Alone            1          0
## 1215 With Other Friends/Relatives            1          1
## 1216                        Alone            0          1
## 1217                        Alone            1          0
## 1218                        Alone            0          1
## 1221                        Alone            0          1
## 1223     With Spouse and Children            1          2
## 1224     With Spouse and Children            2          1
## 1225     With Spouse and Children            2          2
## 1227                        Alone            0          1
## 1228                        Alone            0          1
## 1229                        Alone            0          1
## 1230                  With Spouse            1          1
## 1231                  With Spouse            1          1
## 1232                        Alone            0          1
## 1233                  With Spouse            1          1
## 1234                        Alone            0          1
## 1235 With Other Friends/Relatives            0          2
## 1236 With Other Friends/Relatives            3          2
## 1237 With Other Friends/Relatives            0          2
## 1238                        Alone            0          1
## 1239                  With Spouse            1          1
## 1240 With Other Friends/Relatives            1          1
## 1241                        Alone            1          0
## 1242                        Alone            1          0
## 1243                        Alone            0          1
## 1244 With Other Friends/Relatives            1          2
## 1246                        Alone            1          0
## 1247                  With Spouse            1          1
## 1248                        Alone            0          1
## 1249 With Other Friends/Relatives            4          4
## 1250                  With Spouse            1          1
## 1251                        Alone            0          1
## 1252                  With Spouse            1          1
## 1253                        Alone            0          1
## 1254                        Alone            1          0
## 1255                        Alone            1          0
## 1256                        Alone            1          0
## 1257 With Other Friends/Relatives            0          2
## 1259                With Children            1          1
## 1260                  With Spouse            1          1
## 1261 With Other Friends/Relatives            2          0
## 1262                With Children            2          1
## 1263 With Other Friends/Relatives            2          0
## 1264                        Alone            1          0
## 1265                        Alone            1          0
## 1266                        Alone            0          1
## 1267 With Other Friends/Relatives            2          3
## 1268                        Alone            0          1
## 1269 With Other Friends/Relatives            1          1
## 1270 With Other Friends/Relatives            0          2
## 1271                        Alone            1          0
## 1272                        Alone            1          0
## 1273 With Other Friends/Relatives            0          4
## 1275                  With Spouse            1          1
## 1276                        Alone            1          0
## 1277     With Spouse and Children            3          1
## 1278 With Other Friends/Relatives            4          0
## 1279     With Spouse and Children            2          2
## 1280                        Alone            0          1
## 1281 With Other Friends/Relatives            1          1
## 1282                  With Spouse            1          1
## 1283 With Other Friends/Relatives            1          1
## 1284                        Alone            0          1
## 1285                  With Spouse            1          1
## 1286                  With Spouse            1          1
## 1287                  With Spouse            1          1
## 1288                  With Spouse            1          1
## 1289                  With Spouse            1          1
## 1290 With Other Friends/Relatives            1          4
## 1291                  With Spouse            1          1
## 1292     With Spouse and Children            2          2
## 1293 With Other Friends/Relatives            2          0
## 1294 With Other Friends/Relatives            2          0
## 1295 With Other Friends/Relatives            0          2
## 1296 With Other Friends/Relatives            2          0
## 1298                        Alone            0          1
## 1299                  With Spouse            1          1
## 1300                  With Spouse            1          1
## 1301                        Alone            0          1
## 1302                        Alone            1          0
## 1303                        Alone            0          1
## 1304 With Other Friends/Relatives            2          0
## 1305                        Alone            0          1
## 1306 With Other Friends/Relatives            2          2
## 1307                  With Spouse            1          1
## 1308                        Alone            1          0
## 1309                  With Spouse            1          1
## 1310     With Spouse and Children            4          2
## 1311                        Alone            1          0
## 1312                        Alone            0          1
## 1313                  With Spouse            1          1
## 1314                        Alone            0          1
## 1315                With Children            2          2
## 1316                        Alone            0          1
## 1317 With Other Friends/Relatives            2          0
## 1318                        Alone            0          1
## 1319                  With Spouse            1          1
## 1320                        Alone            0          1
## 1321                  With Spouse            1          1
## 1322     With Spouse and Children            2          1
## 1323                  With Spouse            1          1
## 1324                        Alone            0          1
## 1326 With Other Friends/Relatives            1          1
## 1327                        Alone            1          0
## 1328                        Alone            1          0
## 1330                        Alone            1          0
## 1331                        Alone            0          1
## 1332                  With Spouse            1          1
## 1333                  With Spouse            1          1
## 1334 With Other Friends/Relatives            4          0
## 1335                        Alone            0          1
## 1336 With Other Friends/Relatives            2          0
## 1337                        Alone            1          0
## 1338                        Alone            1          0
## 1339                  With Spouse            1          1
## 1340                        Alone            1          0
## 1341                        Alone            0          1
## 1342                        Alone            1          0
## 1343 With Other Friends/Relatives            1          1
## 1345                        Alone            0          1
## 1346                        Alone            0          1
## 1347                        Alone            0          1
## 1348 With Other Friends/Relatives            3          0
## 1349                  With Spouse            1          1
## 1350                  With Spouse            1          1
## 1351                        Alone            0          1
## 1352 With Other Friends/Relatives            2          2
## 1354                        Alone            0          1
## 1355 With Other Friends/Relatives            4          0
## 1356                  With Spouse            1          1
## 1357                  With Spouse            1          1
## 1358 With Other Friends/Relatives           15         12
## 1359                        Alone            1          0
## 1360 With Other Friends/Relatives            1          1
## 1361     With Spouse and Children            1          3
## 1362                        Alone            1          0
## 1363 With Other Friends/Relatives            2          0
## 1364                  With Spouse            1          1
## 1365                        Alone            1          0
## 1366                        Alone            0          1
## 1367 With Other Friends/Relatives            1          1
## 1368     With Spouse and Children            2          2
## 1369     With Spouse and Children            3          1
## 1370                  With Spouse            1          1
## 1371                        Alone            0          1
## 1372                        Alone            1          0
## 1373                  With Spouse            1          1
## 1374                  With Spouse            1          1
## 1375                  With Spouse            1          1
## 1376                        Alone            1          0
## 1377                        Alone            0          1
## 1379                        Alone            0          1
## 1380                        Alone            0          1
## 1381                  With Spouse            1          1
## 1382 With Other Friends/Relatives            2          0
## 1383 With Other Friends/Relatives            1          1
## 1385 With Other Friends/Relatives            4          0
## 1386                        Alone            0          1
## 1387                        Alone            0          1
## 1388                  With Spouse            1          1
## 1389                        Alone            0          1
## 1390                        Alone            1          0
## 1391                        Alone            0          1
## 1392                        Alone            1          0
## 1393                        Alone            1          0
## 1394                        Alone            0          1
## 1395                  With Spouse            1          1
## 1396 With Other Friends/Relatives            4          1
## 1397 With Other Friends/Relatives            1          1
## 1398                  With Spouse            1          1
## 1400                        Alone            1          0
## 1401 With Other Friends/Relatives            0          1
## 1402                        Alone            0          1
## 1403                  With Spouse            1          1
## 1404                        Alone            0          1
## 1405                        Alone            0          1
## 1406 With Other Friends/Relatives            2          1
## 1407                  With Spouse            1          1
## 1408                        Alone            0          1
## 1409                        Alone            0          1
## 1410                        Alone            0          1
## 1411     With Spouse and Children            2          2
## 1412     With Spouse and Children            3          1
## 1413     With Spouse and Children            2          2
## 1414                        Alone            1          0
## 1415     With Spouse and Children            1          2
## 1416                        Alone            0          1
## 1417 With Other Friends/Relatives            4          0
## 1418 With Other Friends/Relatives            2          1
## 1420 With Other Friends/Relatives            2          2
## 1421     With Spouse and Children            2          2
## 1422                  With Spouse            1          1
## 1423                  With Spouse            1          1
## 1424     With Spouse and Children            2          1
## 1425                  With Spouse            1          1
## 1426                  With Spouse            1          1
## 1428                  With Spouse            1          1
## 1429                  With Spouse            1          1
## 1430                        Alone            0          1
## 1431                        Alone            1          0
## 1432                  With Spouse            1          1
## 1433                With Children            2          0
## 1434                        Alone            1          0
## 1435                        Alone            1          0
## 1436 With Other Friends/Relatives            2          1
## 1437                  With Spouse            1          1
## 1438                        Alone            1          0
## 1439                        Alone            0          1
## 1441                        Alone            0          1
## 1442                  With Spouse            1          1
## 1443 With Other Friends/Relatives            2          2
## 1444                  With Spouse            1          1
## 1445     With Spouse and Children            3          2
## 1446                        Alone            1          0
## 1447                With Children            2          0
## 1448                  With Spouse            1          1
## 1449                        Alone            1          0
## 1450                  With Spouse            1          1
## 1451                        Alone            0          1
## 1452                  With Spouse            1          1
## 1453                        Alone            1          0
## 1454                  With Spouse            1          1
## 1455                With Children            3          0
## 1456                        Alone            0          1
## 1457                  With Spouse            1          1
## 1458 With Other Friends/Relatives            2          0
## 1459                  With Spouse            1          1
## 1460 With Other Friends/Relatives            0          2
## 1461                        Alone            1          0
## 1462                  With Spouse            1          1
## 1463                  With Spouse            1          1
## 1464                        Alone            0          1
## 1465                        Alone            1          0
## 1466                  With Spouse            1          0
## 1467                        Alone            1          0
## 1468 With Other Friends/Relatives            0          2
## 1469 With Other Friends/Relatives            0          2
## 1470                        Alone            1          0
## 1471                        Alone            1          0
## 1472     With Spouse and Children            3          1
## 1473                        Alone            1          0
## 1474                  With Spouse            1          1
## 1475 With Other Friends/Relatives            1          2
## 1476                  With Spouse            1          1
## 1478                        Alone            0          1
## 1479                        Alone            0          1
## 1480                  With Spouse            1          1
## 1481                With Children            1          1
## 1482                        Alone            0          1
## 1483 With Other Friends/Relatives            6          6
## 1484 With Other Friends/Relatives            1          1
## 1485     With Spouse and Children            1          3
## 1486                        Alone            1          0
## 1487                        Alone            0          1
## 1488 With Other Friends/Relatives            1          2
## 1490                        Alone            0          1
## 1491     With Spouse and Children            4          1
## 1492                        Alone            0          1
## 1493                        Alone            1          0
## 1495                        Alone            0          1
## 1496                        Alone            1          0
## 1497                        Alone            0          1
## 1498                        Alone            0          1
## 1499                  With Spouse            1          1
## 1500     With Spouse and Children            2          1
## 1501                  With Spouse            1          1
## 1502                  With Spouse            1          1
## 1503                        Alone            0          1
## 1504                        Alone            0          1
## 1505                  With Spouse            1          1
## 1506                        Alone            1          0
## 1507 With Other Friends/Relatives            2          2
## 1508                  With Spouse            1          1
## 1509 With Other Friends/Relatives            2          0
## 1511                        Alone            0          1
## 1512     With Spouse and Children            3          2
## 1513     With Spouse and Children            3          1
## 1514                        Alone            1          0
## 1515                        Alone            1          0
## 1516                        Alone            0          1
## 1517                        Alone            0          1
## 1518                  With Spouse            1          1
## 1519                  With Spouse            1          1
## 1520     With Spouse and Children            2          1
## 1521 With Other Friends/Relatives            1          1
## 1522                  With Spouse            1          1
## 1523                        Alone            0          1
## 1524                        Alone            0          1
## 1525     With Spouse and Children            2          3
## 1526                        Alone            0          1
## 1527                        Alone            1          0
## 1528                        Alone            1          0
## 1529                        Alone            1          0
## 1530                  With Spouse            1          1
## 1531                        Alone            1          0
## 1532                        Alone            0          1
## 1533 With Other Friends/Relatives            0          1
## 1534                        Alone            0          1
## 1536                        Alone            0          1
## 1537                        Alone            0          1
## 1538                        Alone            0          1
## 1539                        Alone            0          1
## 1540                  With Spouse            1          1
## 1541 With Other Friends/Relatives            1          2
## 1542 With Other Friends/Relatives            3          1
## 1543                  With Spouse            1          1
## 1544     With Spouse and Children            2          2
## 1545                        Alone            1          0
## 1546 With Other Friends/Relatives            2          1
## 1547 With Other Friends/Relatives            0          2
## 1548                        Alone            0          1
## 1549     With Spouse and Children            2          2
## 1550                        Alone            1          0
## 1551                  With Spouse            1          1
## 1552                        Alone            1          0
## 1553     With Spouse and Children            2          1
## 1554                  With Spouse            1          1
## 1555 With Other Friends/Relatives            1          1
## 1556 With Other Friends/Relatives            3          4
## 1557                        Alone            1          0
## 1558 With Other Friends/Relatives            1          1
## 1559     With Spouse and Children            2          1
## 1560                        Alone            1          0
## 1561     With Spouse and Children            2          2
## 1562                  With Spouse            1          1
## 1564                With Children            1          1
## 1565                        Alone            0          1
## 1566 With Other Friends/Relatives            2          0
## 1567                        Alone            0          1
## 1568 With Other Friends/Relatives            1          1
## 1569 With Other Friends/Relatives            1          1
## 1570                        Alone            0          1
## 1571                        Alone            1          0
## 1574                  With Spouse            2          0
## 1575                        Alone            1          0
## 1576                        Alone            1          0
## 1578                With Children            1          1
## 1579                With Children            1          1
## 1580 With Other Friends/Relatives            2          0
## 1581                        Alone            1          0
## 1582                        Alone            0          1
## 1584                        Alone            1          0
## 1585                  With Spouse            1          1
## 1586                  With Spouse            1          1
## 1587 With Other Friends/Relatives            1          1
## 1588 With Other Friends/Relatives            0          2
## 1589                With Children            0          2
## 1590                  With Spouse            1          1
## 1591 With Other Friends/Relatives            2          1
## 1592                        Alone            1          0
## 1593 With Other Friends/Relatives           10          4
## 1594                  With Spouse            1          1
## 1595                        Alone            1          0
## 1596                With Children            2          2
## 1597                        Alone            0          1
## 1598                        Alone            0          1
## 1600                  With Spouse            1          1
## 1601     With Spouse and Children            3          1
## 1602 With Other Friends/Relatives            4          3
## 1603                        Alone            0          1
## 1604     With Spouse and Children            1          2
## 1605                        Alone            0          1
## 1606                  With Spouse            1          1
## 1607                        Alone            0          1
## 1608 With Other Friends/Relatives            1          1
## 1609                        Alone            1          0
## 1610                  With Spouse            1          1
## 1611                  With Spouse            1          1
## 1612                  With Spouse            1          1
## 1613 With Other Friends/Relatives            1          1
## 1614                        Alone            1          0
## 1615 With Other Friends/Relatives            2          2
## 1616 With Other Friends/Relatives            1          1
## 1617                  With Spouse            1          1
## 1618                        Alone            0          1
## 1619 With Other Friends/Relatives            2          0
## 1620 With Other Friends/Relatives            1          1
## 1621                        Alone            1          0
## 1622                        Alone            0          1
## 1624                        Alone            0          1
## 1625     With Spouse and Children            2          3
## 1626                        Alone            1          0
## 1627                        Alone            0          1
## 1629                        Alone            0          1
## 1630                  With Spouse            1          1
## 1631     With Spouse and Children            3          1
## 1633 With Other Friends/Relatives            1          1
## 1634                        Alone            1          0
## 1635                        Alone            1          1
## 1636                  With Spouse            1          1
## 1637                        Alone            0          1
## 1638                        Alone            1          0
## 1640                  With Spouse            1          1
## 1641 With Other Friends/Relatives            2          2
## 1642                  With Spouse            2          0
## 1643                  With Spouse            1          1
## 1644                        Alone            0          1
## 1645                        Alone            1          0
## 1646                        Alone            1          0
## 1647     With Spouse and Children            1          2
## 1648                With Children            1          1
## 1649                  With Spouse            1          1
## 1651                        Alone            0          1
## 1652 With Other Friends/Relatives            1          2
## 1653 With Other Friends/Relatives            7          3
## 1654 With Other Friends/Relatives            0          1
## 1655 With Other Friends/Relatives            1          1
## 1656                  With Spouse            1          1
## 1657                        Alone            1          0
## 1658     With Spouse and Children            2          1
## 1659                        Alone            1          1
## 1662                        Alone            0          1
## 1663     With Spouse and Children            1          2
## 1664                        Alone            0          1
## 1665                  With Spouse            1          1
## 1666                  With Spouse            1          1
## 1667 With Other Friends/Relatives           13         15
## 1669                        Alone            1          0
## 1670 With Other Friends/Relatives            2          0
## 1671                        Alone            0          1
## 1672                        Alone            0          1
## 1673     With Spouse and Children            2          2
## 1674                  With Spouse            1          1
## 1675                With Children            6          6
## 1676 With Other Friends/Relatives            2          2
## 1677                        Alone            1          0
## 1678                        Alone            1          0
## 1679 With Other Friends/Relatives            0          2
## 1680                  With Spouse            1          1
## 1681                  With Spouse            1          1
## 1682                        Alone            0          1
## 1683                  With Spouse            1          1
## 1684 With Other Friends/Relatives            1          4
## 1685 With Other Friends/Relatives            2          3
## 1687                  With Spouse            1          1
## 1688                        Alone            1          0
## 1689                        Alone            0          1
## 1690                        Alone            1          0
## 1691                        Alone            0          1
## 1692                  With Spouse            1          1
## 1693 With Other Friends/Relatives            5          2
## 1694                        Alone            0          1
## 1695                        Alone            0          1
## 1696                        Alone            0          1
## 1697                        Alone            1          0
## 1698                        Alone            1          0
## 1699 With Other Friends/Relatives            1          1
## 1700                        Alone            0          1
## 1701     With Spouse and Children            2          1
## 1702 With Other Friends/Relatives            2          4
## 1703                  With Spouse            1          1
## 1704                        Alone            0          1
## 1705     With Spouse and Children            2          1
## 1706 With Other Friends/Relatives            6          0
## 1707 With Other Friends/Relatives            1          1
## 1708                        Alone            1          0
## 1709                        Alone            0          1
## 1710                        Alone            0          1
## 1711                        Alone            0          1
## 1712                        Alone            0          1
## 1713                        Alone            1          0
## 1714                        Alone            0          1
## 1715     With Spouse and Children            2          2
## 1716                        Alone            0          1
## 1717                        Alone            0          1
## 1718                        Alone            1          0
## 1719                  With Spouse            1          1
## 1720                        Alone            0          1
## 1721                        Alone            1          0
## 1723 With Other Friends/Relatives            0          2
## 1724                  With Spouse            1          1
## 1725 With Other Friends/Relatives            1          1
## 1726 With Other Friends/Relatives            1          1
## 1727                        Alone            0          1
## 1728                        Alone            1          0
## 1729                  With Spouse            1          1
## 1730 With Other Friends/Relatives            1          3
## 1731                  With Spouse            1          1
## 1732                        Alone            1          0
## 1733                With Children            0          4
## 1734                        Alone            0          1
## 1735                  With Spouse            1          0
## 1736     With Spouse and Children            1          3
## 1737                        Alone            0          1
## 1738                        Alone            0          1
## 1739                  With Spouse            1          1
## 1740                        Alone            1          0
## 1741                        Alone            1          0
## 1742                        Alone            0          1
## 1743                        Alone            1          0
## 1744                        Alone            1          0
## 1745     With Spouse and Children            2          2
## 1746                        Alone            0          1
## 1747                  With Spouse            1          1
## 1748                        Alone            0          1
## 1749                  With Spouse            1          1
## 1750 With Other Friends/Relatives            1          1
## 1751                        Alone            0          1
## 1752                        Alone            0          1
## 1753                  With Spouse            1          1
## 1754 With Other Friends/Relatives            0          3
## 1756                  With Spouse            1          1
## 1757 With Other Friends/Relatives            1          1
## 1758                        Alone            1          0
## 1759     With Spouse and Children            1          1
## 1760                  With Spouse            1          1
## 1761                        Alone            0          1
## 1762     With Spouse and Children            2          1
## 1763                        Alone            0          1
## 1764                        Alone            1          0
## 1765                        Alone            0          1
## 1766                        Alone            0          1
## 1768                        Alone            0          1
## 1769                  With Spouse            1          1
## 1770 With Other Friends/Relatives            4          0
## 1771 With Other Friends/Relatives            3          2
## 1772                        Alone            1          0
## 1773                        Alone            1          0
## 1774                  With Spouse            1          1
## 1775                  With Spouse            1          1
## 1776                        Alone            0          1
## 1777 With Other Friends/Relatives            2          0
## 1778                  With Spouse            1          1
## 1779 With Other Friends/Relatives            0          2
## 1780                  With Spouse            1          1
## 1781                        Alone            0          1
## 1782                  With Spouse            1          1
## 1783                        Alone            0          1
## 1784                  With Spouse            1          1
## 1785                        Alone            0          1
## 1786 With Other Friends/Relatives            1          3
## 1787                  With Spouse            1          1
## 1788 With Other Friends/Relatives            1          1
## 1789                  With Spouse            1          1
## 1790                        Alone            0          1
## 1791                        Alone            0          1
## 1792                        Alone            0          1
## 1793     With Spouse and Children            2          3
## 1794 With Other Friends/Relatives            1          0
## 1795 With Other Friends/Relatives            2          0
## 1796     With Spouse and Children            2          2
## 1797                        Alone            0          1
## 1798 With Other Friends/Relatives            0          4
## 1799                  With Spouse            1          1
## 1801                  With Spouse            1          1
## 1802                        Alone            1          0
## 1803                        Alone            1          0
## 1804                  With Spouse            1          1
## 1805 With Other Friends/Relatives            1          0
## 1806                With Children            1          1
## 1808                  With Spouse            1          1
## 1809                  With Spouse            1          1
## 1810                  With Spouse            1          1
## 1811 With Other Friends/Relatives            1          1
## 1812 With Other Friends/Relatives            1          1
## 1813                  With Spouse            2          1
## 1814                        Alone            0          1
## 1815 With Other Friends/Relatives            2          2
## 1816                        Alone            0          1
## 1817                        Alone            0          1
## 1818                        Alone            0          1
## 1819                        Alone            0          1
## 1820                        Alone            1          0
## 1821 With Other Friends/Relatives            1          1
## 1822                  With Spouse            1          1
## 1823                        Alone            0          1
## 1824                        Alone            1          0
## 1825     With Spouse and Children            1          2
## 1826 With Other Friends/Relatives            0          2
## 1827 With Other Friends/Relatives            2          0
## 1828                  With Spouse            1          1
## 1830     With Spouse and Children            2          1
## 1831                        Alone            0          1
## 1832                        Alone            0          1
## 1833                  With Spouse            1          1
## 1834 With Other Friends/Relatives            3          0
## 1835                  With Spouse            1          1
## 1836                        Alone            1          0
## 1837                        Alone            1          2
## 1838 With Other Friends/Relatives           10          7
## 1839                        Alone            1          0
## 1840 With Other Friends/Relatives            0          2
## 1841                        Alone            1          0
## 1842                  With Spouse            1          1
## 1843                        Alone            0          1
## 1844                        Alone            0          1
## 1845                        Alone            1          0
## 1846     With Spouse and Children            2          2
## 1847                        Alone            1          0
## 1848                        Alone            1          0
## 1849                  With Spouse            1          1
## 1850                        Alone            0          1
## 1851                        Alone            0          1
## 1852                        Alone            0          1
## 1853                  With Spouse            1          0
## 1854                        Alone            1          0
## 1855                        Alone            0          1
## 1856                        Alone            1          0
## 1857                  With Spouse            1          1
## 1858     With Spouse and Children            1          2
## 1859                        Alone            0          1
## 1860                  With Spouse            1          1
## 1861                        Alone            1          0
## 1862                With Children            1          1
## 1863     With Spouse and Children            1          2
## 1864                  With Spouse            1          1
## 1865 With Other Friends/Relatives            0          1
## 1866                  With Spouse            1          1
## 1867                        Alone            1          0
## 1868                        Alone            1          0
## 1870                  With Spouse            1          1
## 1871                  With Spouse            1          1
## 1872                        Alone            0          1
## 1873                        Alone            1          0
## 1874                  With Spouse            1          1
## 1875                        Alone            0          1
## 1876                  With Spouse            1          1
## 1877     With Spouse and Children            2          3
## 1878     With Spouse and Children            2          1
## 1879                        Alone            0          1
## 1880 With Other Friends/Relatives            0          3
## 1881                        Alone            1          0
## 1882                        Alone            0          1
## 1883                  With Spouse            1          1
## 1884                  With Spouse            1          1
## 1885                  With Spouse            1          1
## 1886                        Alone            0          1
## 1887                        Alone            1          0
## 1888 With Other Friends/Relatives            2          1
## 1889 With Other Friends/Relatives            1          1
## 1890 With Other Friends/Relatives            1          1
## 1891                        Alone            0          1
## 1892                        Alone            1          0
## 1893                        Alone            1          0
## 1894 With Other Friends/Relatives            1          2
## 1895 With Other Friends/Relatives            1          0
## 1896                        Alone            0          1
## 1897                  With Spouse            1          1
## 1898                        Alone            0          1
## 1899                        Alone            1          0
## 1900                        Alone            0          1
## 1901                  With Spouse            1          2
## 1902                  With Spouse            1          1
## 1903                  With Spouse            1          1
## 1904                        Alone            1          0
## 1905                        Alone            1          0
## 1906                        Alone            1          0
## 1907                        Alone            0          1
## 1908                With Children            1          1
## 1909                        Alone            1          0
## 1912                        Alone            0          1
## 1913                        Alone            0          1
## 1914                        Alone            1          0
## 1915                  With Spouse            1          1
## 1916                With Children            1          1
## 1917                  With Spouse            1          1
## 1918                With Children            1          2
## 1919                  With Spouse            1          1
## 1920                  With Spouse            1          1
## 1921                        Alone            1          0
## 1922                  With Spouse            1          1
## 1923                        Alone            1          0
## 1924                  With Spouse            1          0
## 1925                  With Spouse            1          1
## 1926                        Alone            1          0
## 1927                  With Spouse            1          1
## 1928                  With Spouse            1          1
## 1929                        Alone            0          1
## 1931                        Alone            1          1
## 1932                  With Spouse            1          1
## 1933 With Other Friends/Relatives            0          2
## 1934                  With Spouse            1          1
## 1935                        Alone            0          1
## 1936                  With Spouse            1          1
## 1937     With Spouse and Children            2          2
## 1938                        Alone            0          1
## 1939 With Other Friends/Relatives            0          2
## 1940                  With Spouse            1          1
## 1941                  With Spouse            1          1
## 1942 With Other Friends/Relatives            1          1
## 1943                  With Spouse            1          1
## 1945                  With Spouse            1          1
## 1946                  With Spouse            1          1
## 1947                  With Spouse            1          1
## 1948                  With Spouse            1          1
## 1949                  With Spouse            1          1
## 1950     With Spouse and Children            3          1
## 1951                        Alone            1          0
## 1952                        Alone            1          0
## 1953 With Other Friends/Relatives            1          1
## 1954                        Alone            1          0
## 1955                        Alone            0          1
## 1956                  With Spouse            1          1
## 1957                        Alone            0          1
## 1958                  With Spouse            1          1
## 1959                  With Spouse            1          1
## 1960                        Alone            0          1
## 1961                  With Spouse            1          1
## 1962                        Alone            0          1
## 1963                  With Spouse            1          1
## 1964 With Other Friends/Relatives            2          0
## 1965     With Spouse and Children            2          4
## 1966 With Other Friends/Relatives            2          0
## 1967                        Alone            1          0
## 1968     With Spouse and Children            1          3
## 1969 With Other Friends/Relatives            3          8
## 1970                        Alone            0          1
## 1972                        Alone            0          1
## 1973 With Other Friends/Relatives            1          3
## 1974                        Alone            0          1
## 1975                  With Spouse            1          1
## 1976                  With Spouse            1          1
## 1977                  With Spouse            1          1
## 1978                        Alone            1          0
## 1979                        Alone            0          1
## 1980                  With Spouse            1          1
## 1981                        Alone            0          1
## 1982     With Spouse and Children            2          2
## 1983 With Other Friends/Relatives            2          2
## 1984                        Alone            0          1
## 1985                With Children            1          1
## 1986 With Other Friends/Relatives            1          1
## 1987                        Alone            1          0
## 1988                        Alone            1          0
## 1990                        Alone            0          1
## 1992                        Alone            0          1
## 1993                        Alone            0          1
## 1994                  With Spouse            1          1
## 1995                        Alone            0          1
## 1996 With Other Friends/Relatives            0          1
## 1998                  With Spouse            1          1
## 1999                        Alone            1          0
## 2000                        Alone            0          1
## 2001                  With Spouse            1          1
## 2002                        Alone            0          1
## 2003                        Alone            0          1
## 2004                        Alone            1          0
## 2005                        Alone            1          0
## 2006                  With Spouse            1          1
## 2007                        Alone            0          1
## 2008     With Spouse and Children            3          1
## 2009                        Alone            1          0
## 2010 With Other Friends/Relatives            2          0
## 2011                  With Spouse            1          1
## 2014     With Spouse and Children            2          1
## 2015                  With Spouse            1          1
## 2016                  With Spouse            1          1
## 2018                        Alone            0          1
## 2019                  With Spouse            1          1
## 2020 With Other Friends/Relatives            2          0
## 2021                        Alone            0          1
## 2022 With Other Friends/Relatives            2          0
## 2023 With Other Friends/Relatives            0          5
## 2024                  With Spouse            1          1
## 2025                  With Spouse            1          1
## 2026                        Alone            0          1
## 2027                  With Spouse            1          1
## 2028                        Alone            0          1
## 2029                        Alone            0          1
## 2030 With Other Friends/Relatives            0          2
## 2031                  With Spouse            1          1
## 2032                        Alone            0          1
## 2033     With Spouse and Children            2          1
## 2034 With Other Friends/Relatives           10          3
## 2036                        Alone            0          1
## 2037     With Spouse and Children            2          1
## 2038                        Alone            0          1
## 2039                        Alone            1          0
## 2040                        Alone            1          0
## 2041                  With Spouse            1          1
## 2042                        Alone            0          1
## 2043                  With Spouse            1          1
## 2044                        Alone            1          0
## 2045                        Alone            0          1
## 2046                        Alone            0          1
## 2048                        Alone            0          1
## 2049                        Alone            0          1
## 2050                  With Spouse            1          1
## 2052                        Alone            0          1
## 2053                        Alone            0          1
## 2054                        Alone            0          1
## 2055                        Alone            1          0
## 2057                  With Spouse            1          1
## 2058                        Alone            0          1
## 2059                  With Spouse            1          1
## 2060                        Alone            0          1
## 2061                        Alone            0          1
## 2062                  With Spouse            2          1
## 2063     With Spouse and Children            2          2
## 2064                        Alone            0          1
## 2065 With Other Friends/Relatives            1          1
## 2066                        Alone            0          1
## 2067                        Alone            1          0
## 2069     With Spouse and Children            1          3
## 2070                  With Spouse            1          1
## 2071                        Alone            1          0
## 2072 With Other Friends/Relatives            2          1
## 2074 With Other Friends/Relatives            3          0
## 2075                        Alone            0          1
## 2076                        Alone            0          1
## 2077                        Alone            0          1
## 2078     With Spouse and Children            2          1
## 2079 With Other Friends/Relatives            5         24
## 2080                        Alone            0          1
## 2081 With Other Friends/Relatives            2          5
## 2082                        Alone            0          1
## 2083                        Alone            0          1
## 2084                  With Spouse            1          1
## 2085     With Spouse and Children            3          2
## 2086                  With Spouse            1          1
## 2087                        Alone            0          1
## 2088                  With Spouse            1          1
## 2089                  With Spouse            1          1
## 2090 With Other Friends/Relatives            1          3
## 2091 With Other Friends/Relatives            0          3
## 2092                        Alone            1          0
## 2093 With Other Friends/Relatives            2          0
## 2094                        Alone            1          0
## 2095                  With Spouse            1          1
## 2096 With Other Friends/Relatives            3          0
## 2097                  With Spouse            1          1
## 2098                        Alone            1          0
## 2099                        Alone            0          1
## 2100                        Alone            0          1
## 2101                        Alone            0          1
## 2102                        Alone            1          0
## 2103 With Other Friends/Relatives            5          2
## 2104                        Alone            0          1
## 2105                  With Spouse            1          1
## 2107 With Other Friends/Relatives            3          1
## 2108                        Alone            1          0
## 2110                  With Spouse            1          1
## 2111                        Alone            1          0
## 2112                  With Spouse            1          1
## 2113                        Alone            0          1
## 2114                        Alone            0          1
## 2116                        Alone            0          1
## 2117                        Alone            0          1
## 2118                        Alone            1          0
## 2119                        Alone            0          1
## 2120                  With Spouse            1          1
## 2121                With Children            2          1
## 2122 With Other Friends/Relatives            1          1
## 2123 With Other Friends/Relatives            0          2
## 2124 With Other Friends/Relatives            2          2
## 2125 With Other Friends/Relatives            1          1
## 2126                  With Spouse            1          1
## 2127                  With Spouse            1          1
## 2128                        Alone            1          0
## 2129                        Alone            0          1
## 2130                  With Spouse            1          1
## 2131                        Alone            1          0
## 2132                  With Spouse            1          1
## 2133                  With Spouse            1          1
## 2134 With Other Friends/Relatives            2          0
## 2135                        Alone            1          0
## 2136                        Alone            0          1
## 2137                  With Spouse            1          1
## 2138 With Other Friends/Relatives            3          1
## 2139                  With Spouse            1          1
## 2140     With Spouse and Children            1          2
## 2141                With Children            4          1
## 2143                        Alone            0          1
## 2144                  With Spouse            1          1
## 2145     With Spouse and Children            2          1
## 2146                With Children            3          1
## 2147                        Alone            0          1
## 2148                        Alone            1          0
## 2149                  With Spouse            1          1
## 2150                        Alone            1          0
## 2151                        Alone            0          1
## 2152                        Alone            1          0
## 2153                  With Spouse            1          1
## 2154     With Spouse and Children            1          2
## 2155                        Alone            0          1
## 2156                        Alone            0          1
## 2157                        Alone            0          1
## 2158                        Alone            0          1
## 2159                With Children            1          2
## 2160                        Alone            1          0
## 2161                  With Spouse            1          1
## 2162                        Alone            0          1
## 2163 With Other Friends/Relatives            2          0
## 2164                  With Spouse            1          1
## 2165                        Alone            0          1
## 2166                  With Spouse            1          1
## 2167 With Other Friends/Relatives            2          2
## 2168                  With Spouse            1          1
## 2169 With Other Friends/Relatives            1          2
## 2170                        Alone            0          1
## 2171                  With Spouse            1          1
## 2172                        Alone            0          1
## 2173                        Alone            0          1
## 2174                  With Spouse            1          1
## 2175                        Alone            1          0
## 2176                        Alone            0          1
## 2177                  With Spouse            1          1
## 2178                        Alone            0          1
## 2179 With Other Friends/Relatives            0          2
## 2180                        Alone            0          1
## 2181                        Alone            1          0
## 2182                With Children            0          2
## 2183                        Alone            0          1
## 2184                        Alone            0          1
## 2185                        Alone            0          1
## 2186 With Other Friends/Relatives            2          2
## 2187                        Alone            0          1
## 2188 With Other Friends/Relatives            1          1
## 2189                        Alone            0          1
## 2191                        Alone            0          1
## 2192                  With Spouse            1          1
## 2193 With Other Friends/Relatives            2          0
## 2194                With Children            1          1
## 2195                        Alone            0          1
## 2196                        Alone            0          1
## 2197                        Alone            0          1
## 2198                        Alone            0          1
## 2199                  With Spouse            1          1
## 2200                  With Spouse            1          1
## 2201     With Spouse and Children            2          2
## 2202                        Alone            1          0
## 2203     With Spouse and Children            5          3
## 2204                  With Spouse            1          1
## 2205 With Other Friends/Relatives            1          1
## 2206                  With Spouse            1          1
## 2207                  With Spouse            1          1
## 2208                        Alone            1          0
## 2209                  With Spouse            1          1
## 2210                  With Spouse            1          1
## 2211                        Alone            0          2
## 2212                        Alone            6          6
## 2213                        Alone            0          1
## 2214                With Children            1          1
## 2215                  With Spouse            1          1
## 2216                        Alone            1          0
## 2217                        Alone            0          1
## 2218                  With Spouse            1          1
## 2219                        Alone            0          1
## 2220 With Other Friends/Relatives            3          1
## 2222 With Other Friends/Relatives            2          0
## 2223 With Other Friends/Relatives            1          1
## 2224 With Other Friends/Relatives            1          1
## 2225     With Spouse and Children            2          2
## 2227                  With Spouse            1          1
## 2229                  With Spouse            1          1
## 2230                        Alone            0          1
## 2231                        Alone            0          1
## 2232                        Alone            0          1
## 2233                With Children            1          1
## 2234                        Alone            0          1
## 2235     With Spouse and Children            4          2
## 2236                  With Spouse            1          1
## 2237     With Spouse and Children            1          4
## 2238                        Alone            1          0
## 2239                With Children            3          0
## 2241                        Alone            1          0
## 2242                  With Spouse            1          1
## 2243                        Alone            0          1
## 2244                        Alone            0          1
## 2245 With Other Friends/Relatives            2          0
## 2246                With Children            2          2
## 2247                        Alone            0          1
## 2248                        Alone            0          1
## 2249                        Alone            1          0
## 2250 With Other Friends/Relatives            1          3
## 2251                        Alone            1          0
## 2252                        Alone            0          1
## 2254                        Alone            0          1
## 2255                        Alone            0          1
## 2256                  With Spouse            1          1
## 2257 With Other Friends/Relatives            1          2
## 2258 With Other Friends/Relatives            1          0
## 2260                        Alone            1          0
## 2261 With Other Friends/Relatives            3          2
## 2263                  With Spouse            1          1
## 2264                        Alone            0          1
## 2265                  With Spouse            1          1
## 2266                  With Spouse            1          1
## 2267                        Alone            0          1
## 2268                  With Spouse            1          1
## 2269                        Alone            1          0
## 2270                        Alone            1          0
## 2271                        Alone            1          0
## 2272                        Alone            0          1
## 2273 With Other Friends/Relatives            1          1
## 2275                        Alone            1          0
## 2276                        Alone            1          0
## 2277                  With Spouse            1          1
## 2278                  With Spouse            1          1
## 2279 With Other Friends/Relatives            2          1
## 2280                        Alone            0          1
## 2281                        Alone            0          1
## 2282                        Alone            0          1
## 2283                        Alone            1          0
## 2284                        Alone            0          1
## 2285                        Alone            1          0
## 2286                        Alone            1          0
## 2287                        Alone            0          1
## 2288 With Other Friends/Relatives            1          1
## 2289                  With Spouse            1          1
## 2290                        Alone            0          1
## 2291                        Alone            0          1
## 2292 With Other Friends/Relatives            2          0
## 2293 With Other Friends/Relatives            1          1
## 2294                  With Spouse            1          1
## 2295                        Alone            0          1
## 2296                  With Spouse            1          1
## 2297                  With Spouse            1          1
## 2298 With Other Friends/Relatives            0          3
## 2299                  With Spouse            1          1
## 2300                  With Spouse            1          0
## 2301                  With Spouse            1          1
## 2302                        Alone            0          1
## 2303                        Alone            0          1
## 2304                        Alone            0          1
## 2305                With Children            1          1
## 2306     With Spouse and Children            3          2
## 2307                        Alone            0          1
## 2308 With Other Friends/Relatives            1          1
## 2309                        Alone            1          0
## 2310 With Other Friends/Relatives            1          1
## 2311                  With Spouse            1          1
## 2312                  With Spouse            1          1
## 2313                        Alone            0          1
## 2315                  With Spouse            1          1
## 2316                        Alone            0          1
## 2317                        Alone            0          1
## 2318                  With Spouse            1          1
## 2319                  With Spouse            1          0
## 2320                  With Spouse            1          1
## 2321                        Alone            0          1
## 2322                        Alone            0          1
## 2323                  With Spouse            1          1
## 2324                        Alone            0          1
## 2325 With Other Friends/Relatives            1          1
## 2326                  With Spouse            1          1
## 2327                        Alone            1          0
## 2328                With Children            1          1
## 2329 With Other Friends/Relatives            1          0
## 2330                        Alone            0          1
## 2331                  With Spouse            1          1
## 2332                        Alone            2          0
## 2333 With Other Friends/Relatives            0          2
## 2334                        Alone            0          1
## 2335     With Spouse and Children            3          2
## 2336     With Spouse and Children            2          2
## 2337     With Spouse and Children            1          2
## 2338 With Other Friends/Relatives            1          1
## 2339                        Alone            0          1
## 2341 With Other Friends/Relatives            2          6
## 2342 With Other Friends/Relatives            1          1
## 2343 With Other Friends/Relatives            2          2
## 2344 With Other Friends/Relatives            2          1
## 2345                        Alone            1          0
## 2347                  With Spouse            1          1
## 2348                        Alone            1          0
## 2349                        Alone            0          1
## 2350                        Alone            0          1
## 2351                        Alone            0          1
## 2352 With Other Friends/Relatives            2          1
## 2353                        Alone            0          1
## 2354 With Other Friends/Relatives            1          1
## 2355                        Alone            0          1
## 2356                        Alone            0          1
## 2357                  With Spouse            0          1
## 2358 With Other Friends/Relatives            4          0
## 2359                        Alone            1          0
## 2360                        Alone            1          0
## 2361 With Other Friends/Relatives            2          1
## 2362                        Alone            0          1
## 2363                  With Spouse            1          1
## 2364                With Children            1          2
## 2365                        Alone            0          1
## 2366                        Alone            1          0
## 2367                        Alone            0          1
## 2368 With Other Friends/Relatives            0          2
## 2369 With Other Friends/Relatives            2          0
## 2370 With Other Friends/Relatives            3          2
## 2371     With Spouse and Children            2          2
## 2372                  With Spouse            1          1
## 2373                  With Spouse            1          1
## 2375 With Other Friends/Relatives            1          1
## 2376                  With Spouse            1          1
## 2377                  With Spouse            1          1
## 2378 With Other Friends/Relatives            3          2
## 2379                        Alone            1          0
## 2380                        Alone            0          1
## 2381                        Alone            1          0
## 2383                        Alone            1          0
## 2384                        Alone            0          1
## 2385                  With Spouse            1          1
## 2386                        Alone            0          1
## 2387     With Spouse and Children            2          1
## 2388     With Spouse and Children            3          1
## 2389                        Alone            1          0
## 2390                        Alone            0          1
## 2391                        Alone            0          1
## 2392                  With Spouse            1          1
## 2394                  With Spouse            1          1
## 2395     With Spouse and Children            1          2
## 2396                  With Spouse            1          1
## 2398 With Other Friends/Relatives            1          1
## 2400 With Other Friends/Relatives            1          0
## 2401                With Children            1          1
## 2402                        Alone            0          1
## 2403     With Spouse and Children            1          3
## 2404                        Alone            0          1
## 2405                        Alone            1          0
## 2406                  With Spouse            1          1
## 2407                        Alone            0          1
## 2408                        Alone            0          1
## 2409                  With Spouse            1          1
## 2410                  With Spouse            1          1
## 2411     With Spouse and Children            2          1
## 2412 With Other Friends/Relatives            2          0
## 2413                  With Spouse            1          1
## 2414                  With Spouse            1          1
## 2415                        Alone            1          0
## 2416     With Spouse and Children            1          2
## 2417                        Alone            0          1
## 2418                  With Spouse            1          0
## 2419                With Children            1          1
## 2420 With Other Friends/Relatives            0          2
## 2421                        Alone            1          0
## 2422                        Alone            0          1
## 2423                  With Spouse            1          1
## 2424                  With Spouse            1          1
## 2425                  With Spouse            1          1
## 2427 With Other Friends/Relatives            0          4
## 2428     With Spouse and Children            2          2
## 2429                        Alone            0          1
## 2430                        Alone            0          1
## 2431                  With Spouse            1          1
## 2432                  With Spouse            1          1
## 2433 With Other Friends/Relatives            3          1
## 2434                  With Spouse            1          1
## 2435 With Other Friends/Relatives            1          1
## 2436                        Alone            0          1
## 2437                  With Spouse            1          1
## 2438 With Other Friends/Relatives            2          0
## 2439                        Alone            1          0
## 2440                        Alone            0          1
## 2441                  With Spouse            1          1
## 2442                        Alone            0          1
## 2443 With Other Friends/Relatives            3          1
## 2444                  With Spouse            1          2
## 2445                        Alone            0          1
## 2446                  With Spouse            1          1
## 2447                        Alone            1          0
## 2448                        Alone            1          0
## 2449                        Alone            0          1
## 2450                  With Spouse            1          1
## 2451 With Other Friends/Relatives            1          1
## 2453                  With Spouse            1          1
## 2454 With Other Friends/Relatives            0          2
## 2455 With Other Friends/Relatives            2          0
## 2456 With Other Friends/Relatives            2          0
## 2457                        Alone            0          1
## 2458     With Spouse and Children            3          1
## 2459 With Other Friends/Relatives            1          1
## 2460                        Alone            0          1
## 2461                        Alone            0          1
## 2463     With Spouse and Children            2          1
## 2464                  With Spouse            1          1
## 2465                  With Spouse            1          1
## 2466                        Alone            0          1
## 2467                  With Spouse            2          0
## 2468     With Spouse and Children            1          2
## 2470                        Alone            0          1
## 2471                        Alone            1          0
## 2473                        Alone            1          0
## 2474                  With Spouse            1          1
## 2475                        Alone            1          0
## 2476                  With Spouse            1          1
## 2477                        Alone            1          0
## 2478                        Alone            0          1
## 2479 With Other Friends/Relatives           20         10
## 2480                  With Spouse            1          1
## 2483                        Alone            1          0
## 2484                  With Spouse            1          1
## 2485     With Spouse and Children            2          2
## 2486                        Alone            1          0
## 2487                        Alone            1          0
## 2488 With Other Friends/Relatives            2          2
## 2489                  With Spouse            1          1
## 2490                        Alone            0          1
## 2491                        Alone            1          0
## 2492                  With Spouse            1          1
## 2493     With Spouse and Children            1          2
## 2495 With Other Friends/Relatives            1          1
## 2496 With Other Friends/Relatives            1          1
## 2497                  With Spouse            1          1
## 2498 With Other Friends/Relatives            1          1
## 2499                  With Spouse            1          1
## 2500                        Alone            1          0
## 2501                  With Spouse            1          1
## 2502                  With Spouse            1          1
## 2503                  With Spouse            1          1
## 2504                  With Spouse            1          1
## 2505     With Spouse and Children            1          1
## 2506 With Other Friends/Relatives            1          1
## 2507                        Alone            0          1
## 2508                  With Spouse            1          1
## 2509 With Other Friends/Relatives            1          1
## 2510 With Other Friends/Relatives            2          1
## 2511                        Alone            1          0
## 2512                        Alone            0          1
## 2513                  With Spouse            1          1
## 2514                  With Spouse            1          1
## 2515                  With Spouse            1          1
## 2518 With Other Friends/Relatives            6          6
## 2519                  With Spouse            1          1
## 2520 With Other Friends/Relatives            1          1
## 2521                        Alone            0          1
## 2522 With Other Friends/Relatives            1          2
## 2523                        Alone            1          0
## 2524     With Spouse and Children            3          1
## 2525                        Alone            1          0
## 2526                        Alone            0          1
## 2527                With Children            0          2
## 2528                  With Spouse            1          1
## 2529                  With Spouse            1          1
## 2531                        Alone            1          0
## 2532                  With Spouse            1          1
## 2534                With Children            1          1
## 2535                  With Spouse            1          1
## 2536                        Alone            1          0
## 2537                        Alone            0          1
## 2538                  With Spouse            1          1
## 2539                        Alone            1          0
## 2540                        Alone            0          1
## 2541                  With Spouse            1          1
## 2542                  With Spouse            1          1
## 2543                        Alone            0          1
## 2544                        Alone            0          1
## 2545                  With Spouse            1          1
## 2546                  With Spouse            1          1
## 2547                  With Spouse            1          1
## 2548                        Alone            0          1
## 2550     With Spouse and Children            2          2
## 2551 With Other Friends/Relatives            1          2
## 2552                  With Spouse            1          1
## 2553                        Alone            0          1
## 2554 With Other Friends/Relatives            2          1
## 2555                        Alone            0          1
## 2556                  With Spouse            1          1
## 2558 With Other Friends/Relatives            0          2
## 2559                        Alone            0          1
## 2560 With Other Friends/Relatives            1          1
## 2561     With Spouse and Children            2          1
## 2562                        Alone            0          1
## 2563                  With Spouse            1          1
## 2564                        Alone            1          0
## 2565                  With Spouse            1          1
## 2566                        Alone            0          1
## 2567                  With Spouse            1          1
## 2568 With Other Friends/Relatives            3          2
## 2569                  With Spouse            1          1
## 2570                        Alone            0          1
## 2571                  With Spouse            1          1
## 2572 With Other Friends/Relatives            1          1
## 2573 With Other Friends/Relatives            1          1
## 2574                  With Spouse            1          1
## 2575                        Alone            0          1
## 2576                  With Spouse            1          1
## 2577 With Other Friends/Relatives            1          1
## 2578                        Alone            0          1
## 2579     With Spouse and Children            1          4
## 2580                        Alone            0          1
## 2581                  With Spouse            1          1
## 2582                        Alone            0          1
## 2583                  With Spouse            1          1
## 2584 With Other Friends/Relatives            0          6
## 2585                        Alone            1          0
## 2586                        Alone            1          0
## 2587                  With Spouse            1          0
## 2588                  With Spouse            1          1
## 2589                        Alone            0          1
## 2590     With Spouse and Children            1          2
## 2591                  With Spouse            1          1
## 2592 With Other Friends/Relatives            2          3
## 2593                        Alone            0          1
## 2594                        Alone            1          0
## 2595                        Alone            1          0
## 2596     With Spouse and Children            2          3
## 2598 With Other Friends/Relatives            2          1
## 2599                  With Spouse            1          1
## 2600                  With Spouse            1          1
## 2601                  With Spouse            1          0
## 2602     With Spouse and Children            1          3
## 2603                        Alone            0          1
## 2604                  With Spouse            0          1
## 2605                        Alone            0          1
## 2606                  With Spouse            1          1
## 2607                        Alone            0          1
## 2608 With Other Friends/Relatives            3          1
## 2609 With Other Friends/Relatives            0          2
## 2610 With Other Friends/Relatives            7          0
## 2611                        Alone            0          1
## 2612                  With Spouse            1          2
## 2613                        Alone            1          0
## 2614                  With Spouse            1          1
## 2615                        Alone            0          1
## 2616                  With Spouse            1          1
## 2617                  With Spouse            1          1
## 2618                  With Spouse            1          1
## 2619                        Alone            1          0
## 2620                        Alone            0          1
## 2621                        Alone            1          0
## 2622 With Other Friends/Relatives            2          0
## 2623                With Children            0          3
## 2624                  With Spouse            1          1
## 2625                  With Spouse            1          1
## 2626                  With Spouse            1          1
## 2627 With Other Friends/Relatives            4          3
## 2628                        Alone            0          1
## 2629                        Alone            1          0
## 2630                        Alone            0          1
## 2631 With Other Friends/Relatives            2          2
## 2632                  With Spouse            2          2
## 2633                        Alone            0          1
## 2634                        Alone            0          1
## 2635                        Alone            1          0
## 2636 With Other Friends/Relatives            1          2
## 2637                  With Spouse            1          1
## 2638                  With Spouse            1          1
## 2639                        Alone            1          0
## 2640 With Other Friends/Relatives            0          2
## 2641                  With Spouse            1          1
## 2642                  With Spouse            1          1
## 2643 With Other Friends/Relatives            1          1
## 2644                        Alone            0          1
## 2645                        Alone            1          0
## 2646                        Alone            1          0
## 2648                        Alone            1          0
## 2649                        Alone            0          1
## 2650                        Alone            1          0
## 2651                        Alone            0          1
## 2652 With Other Friends/Relatives            2          0
## 2653                  With Spouse            1          1
## 2654 With Other Friends/Relatives            0          2
## 2655                        Alone            0          1
## 2656                With Children            1          0
## 2657                  With Spouse            1          1
## 2659                  With Spouse            1          1
## 2660                        Alone            0          1
## 2661                        Alone            0          1
## 2662                        Alone            0          1
## 2665                  With Spouse            1          1
## 2666 With Other Friends/Relatives            1          1
## 2667                        Alone            0          1
## 2669                        Alone            1          0
## 2670                With Children            1          1
## 2672                        Alone            0          1
## 2673 With Other Friends/Relatives            2          0
## 2674     With Spouse and Children            2          2
## 2675                  With Spouse            1          1
## 2676                        Alone            1          0
## 2677                        Alone            1          0
## 2678                        Alone            0          1
## 2679                  With Spouse            1          1
## 2680                  With Spouse            2          1
## 2681                        Alone            1          0
## 2682                  With Spouse            1          1
## 2684 With Other Friends/Relatives            4          0
## 2685 With Other Friends/Relatives            0          2
## 2686                  With Spouse            1          1
## 2687     With Spouse and Children            2          2
## 2688                  With Spouse            1          1
## 2689                With Children            1          1
## 2690                With Children            1          1
## 2691 With Other Friends/Relatives            1          0
## 2693                        Alone            1          0
## 2695 With Other Friends/Relatives            3          0
## 2696     With Spouse and Children            1          3
## 2697                  With Spouse            1          1
## 2698 With Other Friends/Relatives            8          3
## 2699                        Alone            1          0
## 2700     With Spouse and Children            2          2
## 2701                        Alone            0          1
## 2702                        Alone            0          1
## 2703                        Alone            0          1
## 2704 With Other Friends/Relatives            1          1
## 2705                        Alone            0          1
## 2706 With Other Friends/Relatives            0          3
## 2707 With Other Friends/Relatives            0          2
## 2708                        Alone            0          1
## 2709                With Children            1          1
## 2710                  With Spouse            1          1
## 2711                        Alone            1          0
## 2713                  With Spouse            1          1
## 2714                        Alone            0          1
## 2715                        Alone            1          0
## 2716                        Alone            1          0
## 2717                        Alone            0          1
## 2718                  With Spouse            1          1
## 2720 With Other Friends/Relatives            2          0
## 2721                  With Spouse            1          1
## 2722 With Other Friends/Relatives            0          4
## 2723 With Other Friends/Relatives            1          1
## 2724                  With Spouse            1          1
## 2725                        Alone            0          1
## 2726                        Alone            0          1
## 2727                        Alone            0          1
## 2728                  With Spouse            1          1
## 2729     With Spouse and Children            1          2
## 2730                        Alone            0          1
## 2731                  With Spouse            1          1
## 2732                  With Spouse            1          1
## 2733                        Alone            1          0
## 2734                        Alone            1          0
## 2735                  With Spouse            1          1
## 2737                        Alone            0          1
## 2738     With Spouse and Children            3          1
## 2739 With Other Friends/Relatives            2          0
## 2740                  With Spouse            1          1
## 2741 With Other Friends/Relatives            2          0
## 2742                        Alone            0          1
## 2743                        Alone            1          0
## 2744                        Alone            0          1
## 2745                  With Spouse            1          1
## 2746                        Alone            0          1
## 2747                        Alone            0          1
## 2748                  With Spouse            1          1
## 2749 With Other Friends/Relatives            1          1
## 2750                        Alone            1          0
## 2751     With Spouse and Children            1          2
## 2752                        Alone            0          1
## 2753                        Alone            0          1
## 2755                        Alone            1          0
## 2756                        Alone            1          0
## 2757 With Other Friends/Relatives            2          0
## 2760     With Spouse and Children            2          2
## 2761                        Alone            0          1
## 2762                        Alone            1          0
## 2763                  With Spouse            1          1
## 2764 With Other Friends/Relatives            2          2
## 2765                        Alone            0          1
## 2766 With Other Friends/Relatives           17         10
## 2767                        Alone            0          1
## 2768                  With Spouse            1          1
## 2769                  With Spouse            1          1
## 2770                        Alone            1          0
## 2771                  With Spouse            1          1
## 2772 With Other Friends/Relatives            1          1
## 2773                  With Spouse            1          1
## 2774                        Alone            1          0
## 2775                        Alone            0          1
## 2776                        Alone            1          0
## 2777     With Spouse and Children            3          1
## 2778                        Alone            1          0
## 2779                        Alone            0          1
## 2780                        Alone            1          0
## 2781                With Children            3          1
## 2782                        Alone            1          0
## 2783                With Children            2          0
## 2784                        Alone            0          1
## 2785                  With Spouse            1          1
## 2786 With Other Friends/Relatives            2          2
## 2787                        Alone            0          1
## 2788                        Alone            0          1
## 2789                        Alone            0          1
## 2790                With Children            1          0
## 2791                  With Spouse            1          1
## 2792                  With Spouse            1          1
## 2793                        Alone            1          0
## 2794                        Alone            0          1
## 2795 With Other Friends/Relatives            0          2
## 2796                  With Spouse            1          1
## 2797                        Alone            0          1
## 2798                        Alone            0          1
## 2799                        Alone            1          0
## 2800                        Alone            0          1
## 2801                With Children            1          1
## 2802 With Other Friends/Relatives            0          1
## 2803                        Alone            1          0
## 2804     With Spouse and Children            1          2
## 2805     With Spouse and Children            1          2
## 2806 With Other Friends/Relatives            5          5
## 2807                  With Spouse            1          1
## 2808                        Alone            0          1
## 2809                        Alone            1          0
## 2810                        Alone            1          0
## 2811                        Alone            0          1
## 2813                  With Spouse            1          1
## 2814                With Children            2          1
## 2815     With Spouse and Children            5          1
## 2816                        Alone            1          0
## 2817                        Alone            0          1
## 2818     With Spouse and Children            3          1
## 2821                  With Spouse            1          1
## 2822                        Alone            1          0
## 2823                        Alone            0          1
## 2824 With Other Friends/Relatives            0          1
## 2825                  With Spouse            1          1
## 2826                        Alone            1          0
## 2827                  With Spouse            1          1
## 2828 With Other Friends/Relatives            3          3
## 2829                        Alone            1          0
## 2831                  With Spouse            1          1
## 2832                  With Spouse            1          1
## 2833                        Alone            1          0
## 2834                        Alone            1          0
## 2835                  With Spouse            1          1
## 2836                  With Spouse            1          1
## 2837     With Spouse and Children            2          2
## 2838 With Other Friends/Relatives            1          3
## 2839     With Spouse and Children            1          2
## 2840                        Alone            0          1
## 2841                        Alone            0          1
## 2842                        Alone            0          1
## 2843                        Alone            0          1
## 2844                  With Spouse            1          1
## 2845                        Alone            1          0
## 2846                  With Spouse            1          1
## 2850                  With Spouse            1          1
## 2851                  With Spouse            1          1
## 2852 With Other Friends/Relatives            0          2
## 2853     With Spouse and Children            3          1
## 2854                        Alone            0          1
## 2855 With Other Friends/Relatives            1          1
## 2856                  With Spouse            1          1
## 2857                        Alone            1          0
## 2858                  With Spouse            1          1
## 2859                        Alone            1          0
## 2860                        Alone            0          1
## 2862                        Alone            0          1
## 2863                  With Spouse            1          1
## 2864                With Children            2          1
## 2865                        Alone            0          1
## 2866     With Spouse and Children            2          1
## 2868                        Alone            0          1
## 2869                  With Spouse            1          1
## 2870                  With Spouse            1          1
## 2871                        Alone            1          0
## 2872     With Spouse and Children            2          2
## 2874                  With Spouse            0          1
## 2875                        Alone            0          1
## 2876 With Other Friends/Relatives            1          1
## 2877                        Alone            1          0
## 2878                  With Spouse            1          1
## 2879                  With Spouse            1          1
## 2880                  With Spouse            1          1
## 2881                        Alone            1          0
## 2882                        Alone            0          1
## 2883 With Other Friends/Relatives            0          2
## 2885                  With Spouse            1          1
## 2886                  With Spouse            1          1
## 2887 With Other Friends/Relatives            5          2
## 2888                With Children            1          1
## 2889 With Other Friends/Relatives            2          2
## 2890                        Alone            0          1
## 2891                  With Spouse            1          1
## 2892                  With Spouse            1          1
## 2893                        Alone            1          0
## 2894 With Other Friends/Relatives            1          1
## 2895                  With Spouse            1          1
## 2896                        Alone            0          1
## 2897 With Other Friends/Relatives            2          2
## 2898                        Alone            0          1
## 2899                        Alone            0          1
## 2900     With Spouse and Children            1          3
## 2901                  With Spouse            0          1
## 2902                  With Spouse            1          1
## 2903                        Alone            0          1
## 2904 With Other Friends/Relatives            2          0
## 2905                        Alone            0          1
## 2906                  With Spouse            1          1
## 2909                        Alone            0          1
## 2910                        Alone            0          1
## 2911                  With Spouse            1          1
## 2912 With Other Friends/Relatives            2          0
## 2913     With Spouse and Children            2          3
## 2914                        Alone            0          1
## 2915                        Alone            0          1
## 2916                  With Spouse            1          1
## 2917                        Alone            1          0
## 2918                        Alone            0          1
## 2919 With Other Friends/Relatives            5          0
## 2921 With Other Friends/Relatives            2          0
## 2922 With Other Friends/Relatives            1          1
## 2923                        Alone            0          1
## 2924                        Alone            0          1
## 2925                  With Spouse            1          1
## 2926                        Alone            0          1
## 2927                        Alone            0          1
## 2928                        Alone            1          0
## 2929     With Spouse and Children            1          2
## 2930 With Other Friends/Relatives            1          1
## 2931 With Other Friends/Relatives            2          0
## 2932                        Alone            0          1
## 2933                  With Spouse            1          1
## 2934                  With Spouse            1          1
## 2935                        Alone            0          1
## 2936                        Alone            1          0
## 2937                With Children            2          2
## 2938 With Other Friends/Relatives            0          1
## 2939                  With Spouse            0          1
## 2940     With Spouse and Children            1          2
## 2941                  With Spouse            1          1
## 2942                        Alone            0          1
## 2943 With Other Friends/Relatives            0          1
## 2944                        Alone            0          1
## 2946                        Alone            1          0
## 2947 With Other Friends/Relatives            1          1
## 2948                  With Spouse            1          1
## 2949 With Other Friends/Relatives            1          1
## 2950                  With Spouse            1          1
## 2951                        Alone            1          0
## 2952                        Alone            1          0
## 2953     With Spouse and Children            3          2
## 2954                        Alone            0          1
## 2955                  With Spouse            1          1
## 2956                        Alone            1          0
## 2957     With Spouse and Children            2          2
## 2958                        Alone            0          1
## 2959                        Alone            0          1
## 2960                        Alone            1          0
## 2961                        Alone            0          1
## 2962                        Alone            0          1
## 2964 With Other Friends/Relatives            1          1
## 2965                  With Spouse            1          1
## 2966                        Alone            1          0
## 2967                With Children            2          0
## 2968                  With Spouse            1          1
## 2969                  With Spouse            1          1
## 2970                  With Spouse            1          1
## 2971                  With Spouse            1          1
## 2972                  With Spouse            1          1
## 2973 With Other Friends/Relatives            0          1
## 2974                        Alone            0          1
## 2975 With Other Friends/Relatives            1          2
## 2976                  With Spouse            1          1
## 2977                  With Spouse            1          1
## 2978                  With Spouse            1          1
## 2980 With Other Friends/Relatives            0          2
## 2982 With Other Friends/Relatives            3          3
## 2983                        Alone            0          1
## 2984 With Other Friends/Relatives            2          0
## 2985                        Alone            0          1
## 2986                        Alone            0          1
## 2987 With Other Friends/Relatives            0          2
## 2988                        Alone            0          1
## 2989 With Other Friends/Relatives            2          0
## 2990 With Other Friends/Relatives            3          2
## 2991 With Other Friends/Relatives            1          2
## 2992                        Alone            0          1
## 2993                  With Spouse            1          1
## 2994                        Alone            1          0
## 2995     With Spouse and Children            1          4
## 2996     With Spouse and Children            2          1
## 2997 With Other Friends/Relatives            2          2
## 2998                  With Spouse            1          1
## 2999                  With Spouse            1          1
## 3000                        Alone            0          1
## 3002     With Spouse and Children            2          1
## 3003                  With Spouse            1          1
## 3004                        Alone            0          1
## 3005                  With Spouse            1          1
## 3006                        Alone            0          1
## 3007 With Other Friends/Relatives            2          0
## 3008     With Spouse and Children            2          3
## 3009                        Alone            1          0
## 3010                  With Spouse            1          1
## 3011                  With Spouse            1          1
## 3012 With Other Friends/Relatives            0          1
## 3013                  With Spouse            2          0
## 3015                        Alone            1          0
## 3016                        Alone            0          1
## 3017     With Spouse and Children            1          2
## 3018                        Alone            0          1
## 3019                        Alone            0          1
## 3020 With Other Friends/Relatives            1          3
## 3021 With Other Friends/Relatives            2          3
## 3022                  With Spouse            1          1
## 3023                        Alone            0          1
## 3024                  With Spouse            1          1
## 3025                  With Spouse            1          1
## 3027                        Alone            1          0
## 3028                  With Spouse            1          1
## 3029                        Alone            1          0
## 3030     With Spouse and Children            1          2
## 3031                  With Spouse            1          1
## 3032                        Alone            1          0
## 3033                With Children            1          1
## 3034 With Other Friends/Relatives            6          6
## 3035                  With Spouse            1          1
## 3036                        Alone            1          0
## 3037                  With Spouse            1          1
## 3038                  With Spouse            1          1
## 3039                  With Spouse            1          1
## 3040                  With Spouse            1          1
## 3041     With Spouse and Children            2          1
## 3042                  With Spouse            1          1
## 3044                        Alone            0          1
## 3045                        Alone            1          0
## 3046     With Spouse and Children            2          1
## 3047                        Alone            0          1
## 3048     With Spouse and Children            3          2
## 3049 With Other Friends/Relatives            2          0
## 3050                  With Spouse            0          1
## 3051                  With Spouse            1          1
## 3053                        Alone            0          1
## 3054                        Alone            1          0
## 3055                  With Spouse            1          1
## 3056                        Alone            0          1
## 3057                        Alone            0          1
## 3058                        Alone            0          1
## 3060                  With Spouse            1          1
## 3061                        Alone            0          1
## 3062                        Alone            1          0
## 3063                        Alone            0          1
## 3064                        Alone            0          1
## 3065                        Alone            0          1
## 3066                        Alone            1          0
## 3067                  With Spouse            1          1
## 3068 With Other Friends/Relatives            1          1
## 3069                  With Spouse            1          1
## 3070                        Alone            0          1
## 3071                        Alone            0          1
## 3072                        Alone            1          0
## 3073                  With Spouse            1          1
## 3074                  With Spouse            1          1
## 3075     With Spouse and Children            2          2
## 3076     With Spouse and Children            1          2
## 3078                  With Spouse            1          1
## 3079                        Alone            0          1
## 3080 With Other Friends/Relatives            2          0
## 3081                        Alone            0          1
## 3082 With Other Friends/Relatives            0          3
## 3084 With Other Friends/Relatives            5          2
## 3085                        Alone            0          1
## 3086                        Alone            0          1
## 3087                        Alone            1          0
## 3088                  With Spouse            1          1
## 3090                        Alone            0          1
## 3091                  With Spouse            1          1
## 3092                        Alone            0          1
## 3093                        Alone            1          0
## 3094                        Alone            1          0
## 3095                        Alone            0          1
## 3096                        Alone            0          1
## 3097                  With Spouse            1          1
## 3098                        Alone            1          0
## 3099                        Alone            1          0
## 3100                  With Spouse            1          1
## 3101                  With Spouse            1          1
## 3102     With Spouse and Children            2          2
## 3103                        Alone            0          1
## 3104                  With Spouse            1          1
## 3105                        Alone            1          0
## 3106                        Alone            1          0
## 3107                        Alone            1          0
## 3108                        Alone            1          0
## 3109 With Other Friends/Relatives            1          2
## 3110                        Alone            0          1
## 3111                  With Spouse            1          1
## 3112                        Alone            0          1
## 3113                        Alone            0          1
## 3114                  With Spouse            1          1
## 3115                  With Spouse            1          1
## 3116     With Spouse and Children            2          2
## 3117                  With Spouse            1          1
## 3118                With Children            1          1
## 3119                  With Spouse            1          1
## 3120                        Alone            0          1
## 3121     With Spouse and Children            2          1
## 3122                        Alone            0          1
## 3123                        Alone            0          1
## 3124 With Other Friends/Relatives            0          2
## 3126                        Alone            1          0
## 3127 With Other Friends/Relatives            1          1
## 3128                  With Spouse            1          1
## 3129                  With Spouse            1          1
## 3130 With Other Friends/Relatives            3          3
## 3131                  With Spouse            1          1
## 3132                        Alone            1          0
## 3133                        Alone            0          1
## 3134 With Other Friends/Relatives            0          2
## 3136     With Spouse and Children            1          2
## 3137 With Other Friends/Relatives            2          0
## 3138 With Other Friends/Relatives            2          2
## 3139                        Alone            0          1
## 3140                        Alone            0          1
## 3141                With Children            2          1
## 3142                  With Spouse            1          1
## 3143                        Alone            0          1
## 3144                        Alone            1          0
## 3145 With Other Friends/Relatives            1          0
## 3146 With Other Friends/Relatives            1          1
## 3147                  With Spouse            1          1
## 3148                        Alone            1          0
## 3149                With Children            2          3
## 3150                        Alone            1          0
## 3151                        Alone            1          0
## 3152                        Alone            0          1
## 3153                        Alone            1          0
## 3154                        Alone            0          1
## 3155                  With Spouse            1          1
## 3156     With Spouse and Children            2          2
## 3157                  With Spouse            1          1
## 3158                        Alone            1          0
## 3159                        Alone            1          0
## 3160                        Alone            0          1
## 3161 With Other Friends/Relatives            3          2
## 3162                  With Spouse            1          1
## 3163 With Other Friends/Relatives            1          1
## 3164                        Alone            1          0
## 3165     With Spouse and Children            2          2
## 3166                        Alone            0          1
## 3167                  With Spouse            1          1
## 3168                        Alone            1          0
## 3169                        Alone            0          1
## 3170                  With Spouse            1          1
## 3171                        Alone            0          1
## 3172 With Other Friends/Relatives            3          2
## 3173                  With Spouse            1          1
## 3174                  With Spouse            1          1
## 3175                  With Spouse            1          1
## 3177                        Alone            1          0
## 3178                        Alone            1          0
## 3179                        Alone            0          1
## 3180     With Spouse and Children            1          3
## 3181                  With Spouse            1          1
## 3182                        Alone            0          1
## 3183 With Other Friends/Relatives            1          2
## 3184                        Alone            1          0
## 3185                  With Spouse            1          1
## 3186 With Other Friends/Relatives            1          1
## 3187                  With Spouse            2          1
## 3188                        Alone            0          1
## 3189                        Alone            1          0
## 3190                        Alone            1          0
## 3191 With Other Friends/Relatives            2          0
## 3192                  With Spouse            2          1
## 3193                  With Spouse            1          1
## 3194 With Other Friends/Relatives            2          2
## 3195 With Other Friends/Relatives            2          0
## 3196 With Other Friends/Relatives            1          0
## 3197                  With Spouse            1          1
## 3198                  With Spouse            1          1
## 3199     With Spouse and Children            2          2
## 3200                        Alone            1          0
## 3201                  With Spouse            1          1
## 3202                        Alone            0          1
## 3203                        Alone            0          1
## 3204                  With Spouse            1          1
## 3205 With Other Friends/Relatives            3          1
## 3206                  With Spouse            1          1
## 3207                  With Spouse            1          1
## 3208                With Children            1          1
## 3210 With Other Friends/Relatives            2          1
## 3211                        Alone            0          1
## 3213                        Alone            1          0
## 3215 With Other Friends/Relatives           14          2
## 3216                        Alone            0          1
## 3217                        Alone            0          1
## 3218                        Alone            1          0
## 3219                        Alone            1          0
## 3221                        Alone            0          1
## 3222 With Other Friends/Relatives            1          1
## 3223                        Alone            0          1
## 3224                        Alone            0          1
## 3225                        Alone            1          0
## 3226 With Other Friends/Relatives           10          7
## 3227                        Alone            0          1
## 3228     With Spouse and Children            1          3
## 3229 With Other Friends/Relatives            4          3
## 3230                        Alone            1          0
## 3231 With Other Friends/Relatives            2          1
## 3232                        Alone            0          1
## 3233                        Alone            0          1
## 3234                  With Spouse            1          1
## 3235                        Alone            1          0
## 3236                        Alone            0          1
## 3238                        Alone            0          1
## 3239                  With Spouse            1          1
## 3240                  With Spouse            1          1
## 3241 With Other Friends/Relatives            0          2
## 3242                        Alone            1          0
## 3243 With Other Friends/Relatives            0          2
## 3244 With Other Friends/Relatives            1          1
## 3245                        Alone            1          0
## 3246                  With Spouse            1          1
## 3247                With Children            3          0
## 3248                        Alone            0          1
## 3249                        Alone            0          1
## 3250                        Alone            0          1
## 3251                        Alone            1          0
## 3252     With Spouse and Children            2          2
## 3253                        Alone            0          1
## 3254                        Alone            0          1
## 3255                        Alone            1          0
## 3256 With Other Friends/Relatives            1          1
## 3257                        Alone            1          0
## 3258                  With Spouse            1          1
## 3259                        Alone            0          1
## 3260                  With Spouse            1          1
## 3261                  With Spouse            1          1
## 3262                  With Spouse            1          1
## 3263     With Spouse and Children            2          2
## 3264                  With Spouse            1          1
## 3266                        Alone            1          0
## 3267 With Other Friends/Relatives            1          1
## 3268                        Alone            1          0
## 3269                  With Spouse            1          1
## 3270 With Other Friends/Relatives            1          2
## 3271                        Alone            0          1
## 3272                  With Spouse            1          1
## 3273 With Other Friends/Relatives            2          0
## 3274                        Alone            1          0
## 3275                        Alone            0          1
## 3276                  With Spouse            1          1
## 3277                  With Spouse            1          1
## 3278                        Alone            0          1
## 3279                With Children            2          0
## 3280                  With Spouse            1          1
## 3282                  With Spouse            1          1
## 3283                With Children            3          0
## 3284 With Other Friends/Relatives            0          2
## 3285     With Spouse and Children            2          2
## 3286                  With Spouse            1          1
## 3287                  With Spouse            1          1
## 3288                        Alone            0          1
## 3289                        Alone            1          0
## 3290                  With Spouse            1          1
## 3291                  With Spouse            1          1
## 3292                  With Spouse            1          1
## 3293     With Spouse and Children            2          2
## 3294                  With Spouse            1          1
## 3295                  With Spouse            1          1
## 3296                        Alone            1          0
## 3297                  With Spouse            1          1
## 3298 With Other Friends/Relatives            0          2
## 3299 With Other Friends/Relatives            2          0
## 3300                  With Spouse            1          1
## 3301 With Other Friends/Relatives            7          3
## 3302                  With Spouse            1          1
## 3303 With Other Friends/Relatives           10          3
## 3305                        Alone            0          1
## 3306                        Alone            1          0
## 3307 With Other Friends/Relatives            2          2
## 3308                  With Spouse            1          1
## 3309                  With Spouse            1          1
## 3310                        Alone            1          0
## 3312                        Alone            0          1
## 3313                  With Spouse            1          1
## 3314 With Other Friends/Relatives            6          4
## 3315     With Spouse and Children            5          3
## 3316 With Other Friends/Relatives            6          5
## 3317 With Other Friends/Relatives            0          2
## 3318                        Alone            1          0
## 3319 With Other Friends/Relatives            1          3
## 3320 With Other Friends/Relatives            2          0
## 3321                        Alone            0          1
## 3322 With Other Friends/Relatives            0          2
## 3323                  With Spouse            1          1
## 3324                        Alone            1          0
## 3325 With Other Friends/Relatives            2          2
## 3326                        Alone            0          1
## 3327                  With Spouse            1          1
## 3328                        Alone            0          1
## 3330                        Alone            0          1
## 3331                  With Spouse            1          1
## 3332 With Other Friends/Relatives            2          0
## 3334                  With Spouse            1          1
## 3335                  With Spouse            1          1
## 3336     With Spouse and Children            1          2
## 3337                        Alone            0          1
## 3338                        Alone            0          1
## 3339                        Alone            0          1
## 3340                        Alone            0          1
## 3341                  With Spouse            1          1
## 3342                        Alone            0          1
## 3343                  With Spouse            1          1
## 3344                        Alone            0          1
## 3346 With Other Friends/Relatives            2          1
## 3347                        Alone            0          1
## 3348                        Alone            1          0
## 3349                  With Spouse            1          1
## 3350                  With Spouse            1          1
## 3351                        Alone            0          1
## 3352                  With Spouse            1          1
## 3353 With Other Friends/Relatives            2          3
## 3354                  With Spouse            1          1
## 3355                  With Spouse            1          1
## 3356                        Alone            1          0
## 3357 With Other Friends/Relatives            0          2
## 3358     With Spouse and Children            3          1
## 3359                        Alone            0          1
## 3360                  With Spouse            1          1
## 3361     With Spouse and Children            4          2
## 3362                  With Spouse            1          1
## 3363 With Other Friends/Relatives            1          1
## 3364                        Alone            1          0
## 3365                  With Spouse            1          1
## 3366                        Alone            0          1
## 3367                        Alone            1          0
## 3368                        Alone            0          1
## 3369                  With Spouse            1          1
## 3370                  With Spouse            1          1
## 3371                        Alone            0          1
## 3372     With Spouse and Children            1          2
## 3373     With Spouse and Children            3          1
## 3374                  With Spouse            1          1
## 3376                        Alone            0          1
## 3377                  With Spouse            1          1
## 3378                        Alone            0          1
## 3379                        Alone            1          0
## 3380                  With Spouse            1          1
## 3381                  With Spouse            1          1
## 3382                        Alone            0          1
## 3383                  With Spouse            1          0
## 3384                        Alone            0          1
## 3385 With Other Friends/Relatives            2          0
## 3386                  With Spouse            1          1
## 3387                  With Spouse            1          1
## 3388 With Other Friends/Relatives            2          1
## 3389 With Other Friends/Relatives            2          1
## 3391     With Spouse and Children            2          1
## 3392                        Alone            0          1
## 3393 With Other Friends/Relatives            2          2
## 3394                  With Spouse            1          1
## 3395                        Alone            0          1
## 3396                        Alone            1          0
## 3398 With Other Friends/Relatives            0          2
## 3399                        Alone            1          0
## 3400                  With Spouse            1          1
## 3401                        Alone            0          1
## 3402                        Alone            1          0
## 3403                  With Spouse            1          1
## 3404                  With Spouse            1          1
## 3405     With Spouse and Children            2          4
## 3406     With Spouse and Children            1          3
## 3407                        Alone            0          1
## 3408                  With Spouse            1          1
## 3409                        Alone            1          0
## 3410                  With Spouse            1          1
## 3411                  With Spouse            1          1
## 3413 With Other Friends/Relatives            6          4
## 3414                        Alone            1          0
## 3415 With Other Friends/Relatives            0          1
## 3416                  With Spouse            1          1
## 3417 With Other Friends/Relatives            1          1
## 3418                        Alone            1          0
## 3419                  With Spouse            1          1
## 3422                  With Spouse            1          1
## 3423                  With Spouse            1          1
## 3424                        Alone            0          1
## 3425 With Other Friends/Relatives            4          0
## 3426                  With Spouse            1          1
## 3428                  With Spouse            1          1
## 3429 With Other Friends/Relatives            0          2
## 3430 With Other Friends/Relatives            2          2
## 3431                  With Spouse            1          1
## 3432                  With Spouse            1          1
## 3433                        Alone            0          1
## 3434                        Alone            1          0
## 3435                  With Spouse            1          1
## 3436                        Alone            0          1
## 3437 With Other Friends/Relatives            2          0
## 3438                  With Spouse            1          1
## 3439 With Other Friends/Relatives            3          0
## 3440     With Spouse and Children            1          2
## 3441                        Alone            1          0
## 3442                  With Spouse            1          1
## 3443                        Alone            1          0
## 3444 With Other Friends/Relatives            3          2
## 3445     With Spouse and Children            2          3
## 3446                  With Spouse            1          1
## 3447                        Alone            1          0
## 3448                  With Spouse            1          1
## 3449                  With Spouse            1          1
## 3450                  With Spouse            1          1
## 3451 With Other Friends/Relatives            0          2
## 3452                  With Spouse            1          1
## 3453                  With Spouse            1          1
## 3454                        Alone            0          1
## 3455                  With Spouse            1          1
## 3456                        Alone            0          1
## 3457                        Alone            0          1
## 3458                  With Spouse            1          1
## 3459                  With Spouse            1          1
## 3460                        Alone            1          0
## 3461                        Alone            1          0
## 3462                  With Spouse            1          1
## 3463                  With Spouse            1          1
## 3464                        Alone            1          0
## 3465                  With Spouse            1          1
## 3466                  With Spouse            1          1
## 3467                  With Spouse            1          1
## 3468                        Alone            1          0
## 3469                  With Spouse            1          1
## 3470                  With Spouse            1          1
## 3471 With Other Friends/Relatives            0          2
## 3472                        Alone            1          0
## 3473                        Alone            0          1
## 3474                        Alone            0          1
## 3476                        Alone            0          1
## 3477                  With Spouse            1          1
## 3478                        Alone            0          1
## 3479                  With Spouse            1          1
## 3480                  With Spouse            1          1
## 3481 With Other Friends/Relatives            4          3
## 3483     With Spouse and Children            3          1
## 3484                        Alone            0          1
## 3485 With Other Friends/Relatives            2          1
## 3486                  With Spouse            1          1
## 3487                        Alone            0          1
## 3489                        Alone            1          0
## 3490 With Other Friends/Relatives            3          0
## 3491 With Other Friends/Relatives            1          1
## 3492                        Alone            0          1
## 3493                  With Spouse            1          1
## 3494                  With Spouse            3          0
## 3495                        Alone            1          0
## 3496 With Other Friends/Relatives            2          0
## 3497                        Alone            1          0
## 3498                        Alone            1          0
## 3499 With Other Friends/Relatives            0          2
## 3500                        Alone            1          0
## 3501     With Spouse and Children            0          2
## 3502                  With Spouse            1          1
## 3503                  With Spouse            1          1
## 3504                  With Spouse            1          1
## 3505 With Other Friends/Relatives            1          2
## 3506                        Alone            1          0
## 3507                  With Spouse            1          1
## 3508 With Other Friends/Relatives            2          2
## 3510                        Alone            1          0
## 3511                        Alone            0          1
## 3512                        Alone            0          1
## 3513 With Other Friends/Relatives            2          1
## 3514 With Other Friends/Relatives            0          2
## 3515 With Other Friends/Relatives            5          5
## 3516                        Alone            0          1
## 3517                  With Spouse            1          1
## 3518                        Alone            0          1
## 3519                  With Spouse            1          1
## 3520     With Spouse and Children            1          3
## 3521                        Alone            0          1
## 3522 With Other Friends/Relatives            2          1
## 3523                        Alone            0          1
## 3524                  With Spouse            0          3
## 3525                  With Spouse            1          1
## 3526                  With Spouse            1          1
## 3527 With Other Friends/Relatives            3          2
## 3528                        Alone            0          1
## 3529                  With Spouse            2          0
## 3530     With Spouse and Children            2          0
## 3531                  With Spouse            1          1
## 3532 With Other Friends/Relatives            1          1
## 3533                        Alone            0          1
## 3534                  With Spouse            1          1
## 3535                        Alone            1          0
## 3536                  With Spouse            1          1
## 3537                        Alone            1          0
## 3538 With Other Friends/Relatives            2          1
## 3539                        Alone            0          1
## 3540                        Alone            0          1
## 3541                        Alone            0          1
## 3542                  With Spouse            1          1
## 3544                  With Spouse            1          1
## 3545                  With Spouse            1          1
## 3546                  With Spouse            1          1
## 3547                        Alone            0          1
## 3548                  With Spouse            1          1
## 3549                        Alone            0          1
## 3550 With Other Friends/Relatives            2          0
## 3551                        Alone            0          1
## 3552                        Alone            1          0
## 3553                        Alone            0          1
## 3554                  With Spouse            1          1
## 3555                        Alone            1          0
## 3556                        Alone            1          0
## 3557                        Alone            0          1
## 3558                  With Spouse            1          1
## 3559                  With Spouse            1          1
## 3560 With Other Friends/Relatives            2          0
## 3561                        Alone            0          1
## 3562                With Children            1          1
## 3563                        Alone            0          1
## 3564                        Alone            1          0
## 3565 With Other Friends/Relatives            1          1
## 3567     With Spouse and Children            5          2
## 3568     With Spouse and Children            2          2
## 3569 With Other Friends/Relatives            0          2
## 3570                        Alone            1          0
## 3571                  With Spouse            1          1
## 3573     With Spouse and Children            2          1
## 3574                  With Spouse            1          1
## 3575                        Alone            1          0
## 3576                        Alone            0          1
## 3577                  With Spouse            1          1
## 3578                        Alone            1          0
## 3579                        Alone            0          1
## 3580                        Alone            0          1
## 3581                        Alone            1          0
## 3582                  With Spouse            1          1
## 3583                        Alone            1          0
## 3584 With Other Friends/Relatives            2          0
## 3585                  With Spouse            1          1
## 3586                  With Spouse            1          1
## 3587                        Alone            1          0
## 3588                        Alone            0          1
## 3589                        Alone            0          1
## 3590                        Alone            0          1
## 3591                  With Spouse            1          1
## 3592 With Other Friends/Relatives            0          3
## 3593 With Other Friends/Relatives            1          1
## 3594                        Alone            1          0
## 3595                  With Spouse            1          1
## 3596 With Other Friends/Relatives            3          4
## 3597                  With Spouse            1          1
## 3598                  With Spouse            1          1
## 3599                With Children            2          0
## 3600                        Alone            1          0
## 3601                        Alone            1          0
## 3602                        Alone            0          1
## 3603 With Other Friends/Relatives            3          3
## 3604                        Alone            0          1
## 3605                        Alone            1          0
## 3606                  With Spouse            1          1
## 3607                        Alone            0          1
## 3608                  With Spouse            1          1
## 3609                        Alone            0          1
## 3610                  With Spouse            1          1
## 3611     With Spouse and Children            2          2
## 3612     With Spouse and Children            4          2
## 3613                  With Spouse            1          1
## 3614     With Spouse and Children            3          2
## 3615                        Alone            0          1
## 3616                        Alone            1          0
## 3617                        Alone            1          0
## 3618 With Other Friends/Relatives            2          0
## 3619                With Children            2          1
## 3620                With Children            2          2
## 3621                        Alone            0          1
## 3622                        Alone            0          1
## 3623     With Spouse and Children            2          1
## 3624 With Other Friends/Relatives            3          0
## 3625     With Spouse and Children            4          3
## 3627     With Spouse and Children            2          1
## 3628                  With Spouse            1          1
## 3629 With Other Friends/Relatives            0          2
## 3630                  With Spouse            1          1
## 3631                  With Spouse            1          1
## 3632                        Alone            1          0
## 3633 With Other Friends/Relatives            1          2
## 3634     With Spouse and Children            3          1
## 3635                  With Spouse            1          1
## 3637     With Spouse and Children            1          2
## 3638 With Other Friends/Relatives            0          2
## 3639                  With Spouse            1          1
## 3640 With Other Friends/Relatives            1          1
## 3641                With Children            1          1
## 3642 With Other Friends/Relatives            0          2
## 3643 With Other Friends/Relatives            0          2
## 3644                  With Spouse            1          1
## 3645                  With Spouse            1          1
## 3646                        Alone            0          1
## 3647                        Alone            1          0
## 3648 With Other Friends/Relatives            1          1
## 3649                        Alone            0          1
## 3650                        Alone            0          1
## 3652                        Alone            0          1
## 3653                  With Spouse            1          1
## 3654                        Alone            0          1
## 3655                        Alone            0          1
## 3656                  With Spouse            1          1
## 3657                  With Spouse            1          1
## 3658                  With Spouse            1          1
## 3659                        Alone            0          1
## 3660                  With Spouse            1          1
## 3661                  With Spouse            1          1
## 3662                        Alone            0          1
## 3663                  With Spouse            1          1
## 3664                  With Spouse            1          1
## 3665                        Alone            0          1
## 3667                  With Spouse            1          1
## 3668                        Alone            0          1
## 3670                        Alone            0          1
## 3671                        Alone            1          0
## 3672                        Alone            0          1
## 3673                        Alone            0          1
## 3674                        Alone            1          0
## 3675                        Alone            0          1
## 3676                        Alone            1          0
## 3677     With Spouse and Children            1          4
## 3678                        Alone            1          0
## 3679                  With Spouse            1          0
## 3680 With Other Friends/Relatives            1          1
## 3681                  With Spouse            1          1
## 3682                  With Spouse            1          1
## 3683 With Other Friends/Relatives            1          1
## 3684                With Children            2          3
## 3685 With Other Friends/Relatives            1          1
## 3686 With Other Friends/Relatives            1          0
## 3687                        Alone            1          0
## 3688 With Other Friends/Relatives            2          1
## 3689                        Alone            1          0
## 3690                  With Spouse            1          1
## 3691                        Alone            1          0
## 3692                  With Spouse            1          0
## 3694                  With Spouse            1          1
## 3695                  With Spouse            1          1
## 3696                        Alone            0          1
## 3697                  With Spouse            1          1
## 3698     With Spouse and Children            1          3
## 3699                  With Spouse            1          1
## 3700                        Alone            0          1
## 3701                        Alone            0          1
## 3702                        Alone            1          0
## 3703                  With Spouse            1          1
## 3704                  With Spouse            1          1
## 3706                  With Spouse            1          1
## 3707                        Alone            1          0
## 3708                        Alone            0          1
## 3709 With Other Friends/Relatives            2          2
## 3710                  With Spouse            1          1
## 3711 With Other Friends/Relatives            0          2
## 3712                        Alone            1          0
## 3713                        Alone            0          1
## 3714 With Other Friends/Relatives            2          1
## 3715     With Spouse and Children            2          1
## 3716                  With Spouse            1          1
## 3717 With Other Friends/Relatives            2          3
## 3718                        Alone            1          0
## 3719 With Other Friends/Relatives            2          0
## 3720                  With Spouse            1          1
## 3721     With Spouse and Children            2          2
## 3722                        Alone            1          0
## 3723                  With Spouse            1          1
## 3724 With Other Friends/Relatives            1          1
## 3725                        Alone            0          1
## 3726                        Alone            1          0
## 3727                  With Spouse            1          1
## 3728 With Other Friends/Relatives            4          0
## 3729 With Other Friends/Relatives            0          2
## 3730 With Other Friends/Relatives            2          0
## 3731                  With Spouse            1          1
## 3732 With Other Friends/Relatives            1          1
## 3733                        Alone            1          0
## 3734     With Spouse and Children            2          2
## 3736                  With Spouse            1          1
## 3737                  With Spouse            1          1
## 3738 With Other Friends/Relatives            0          3
## 3739                        Alone            1          0
## 3740                        Alone            0          1
## 3741 With Other Friends/Relatives            0          2
## 3742                        Alone            0          1
## 3743                  With Spouse            1          1
## 3744                        Alone            1          0
## 3745                        Alone            0          1
## 3746                  With Spouse            1          1
## 3747                  With Spouse            1          1
## 3748                        Alone            0          1
## 3749 With Other Friends/Relatives            1          1
## 3750     With Spouse and Children            1          3
## 3751                        Alone            0          1
## 3752                        Alone            0          1
## 3753 With Other Friends/Relatives            0          1
## 3754                        Alone            1          0
## 3755                        Alone            1          0
## 3756 With Other Friends/Relatives            1          0
## 3757                  With Spouse            1          1
## 3758                        Alone            0          1
## 3759                        Alone            1          0
## 3760                  With Spouse            1          1
## 3761                  With Spouse            1          1
## 3762                        Alone            1          0
## 3763                  With Spouse            1          1
## 3764                        Alone            1          0
## 3765                  With Spouse            1          1
## 3766                  With Spouse            1          1
## 3767                        Alone            0          1
## 3768                        Alone            1          0
## 3769                        Alone            1          0
## 3770                        Alone            0          1
## 3771                  With Spouse            1          1
## 3774                        Alone            1          0
## 3775                        Alone            1          0
## 3776                        Alone            0          1
## 3777                        Alone            0          1
## 3778 With Other Friends/Relatives            2          0
## 3779 With Other Friends/Relatives            5          6
## 3780                        Alone            0          1
## 3781                  With Spouse            1          1
## 3782                        Alone            0          1
## 3783                With Children            0          2
## 3784     With Spouse and Children            1          2
## 3785                        Alone            0          1
## 3786                  With Spouse            1          0
## 3787                        Alone            0          1
## 3788 With Other Friends/Relatives            3          1
## 3789                        Alone            0          1
## 3790                  With Spouse            1          1
## 3791                        Alone            0          1
## 3792                  With Spouse            1          0
## 3793                        Alone            1          0
## 3794 With Other Friends/Relatives            1          1
## 3795     With Spouse and Children            3          2
## 3796                        Alone            0          1
## 3797                        Alone            0          1
## 3798                        Alone            1          0
## 3800                  With Spouse            1          1
## 3801 With Other Friends/Relatives            1          1
## 3802 With Other Friends/Relatives            1          1
## 3803     With Spouse and Children            3          3
## 3804                        Alone            0          1
## 3806 With Other Friends/Relatives            0          2
## 3807 With Other Friends/Relatives            3          0
## 3808 With Other Friends/Relatives            2          2
## 3809                        Alone            0          1
## 3810                  With Spouse            1          1
## 3811                  With Spouse            1          1
## 3812                        Alone            0          1
## 3813                  With Spouse            1          1
## 3814                  With Spouse            1          1
## 3815                        Alone            0          1
## 3816 With Other Friends/Relatives            1          1
## 3817 With Other Friends/Relatives            4          4
## 3818                        Alone            0          1
## 3819                  With Spouse            1          1
## 3820                  With Spouse            1          1
## 3821                  With Spouse            1          1
## 3822                  With Spouse            1          1
## 3823                  With Spouse            1          1
## 3824                        Alone            1          0
## 3825                  With Spouse            1          1
## 3826                        Alone            1          0
## 3827                With Children            1          1
## 3828                        Alone            0          1
## 3829                        Alone            0          1
## 3830                  With Spouse            0          1
## 3831                  With Spouse            1          1
## 3832                        Alone            0          1
## 3833     With Spouse and Children            2          2
## 3834                        Alone            1          0
## 3835 With Other Friends/Relatives            1          1
## 3836                  With Spouse            1          1
## 3837                        Alone            0          1
## 3838                        Alone            1          0
## 3839                  With Spouse            1          1
## 3840 With Other Friends/Relatives            1          2
## 3841 With Other Friends/Relatives            2          1
## 3842     With Spouse and Children            1          3
## 3843                        Alone            0          1
## 3844 With Other Friends/Relatives            2          3
## 3846                        Alone            0          1
## 3847                  With Spouse            1          1
## 3848                        Alone            0          1
## 3849                        Alone            0          1
## 3850 With Other Friends/Relatives            6          0
## 3851                  With Spouse            1          1
## 3852                  With Spouse            1          1
## 3853                        Alone            0          1
## 3854                        Alone            1          0
## 3855                        Alone            0          1
## 3856                  With Spouse            1          1
## 3857                  With Spouse            1          1
## 3858                        Alone            0          1
## 3859 With Other Friends/Relatives            1          1
## 3860                        Alone            1          0
## 3861 With Other Friends/Relatives           14          4
## 3862                        Alone            0          1
## 3863 With Other Friends/Relatives            3          0
## 3864                        Alone            1          0
## 3865                        Alone            1          0
## 3866                  With Spouse            1          1
## 3867                        Alone            0          1
## 3868                        Alone            0          1
## 3869                        Alone            1          0
## 3870                        Alone            1          0
## 3871                        Alone            1          0
## 3872                        Alone            0          1
## 3873                  With Spouse            1          1
## 3874                        Alone            0          1
## 3875                        Alone            1          0
## 3876 With Other Friends/Relatives            1          1
## 3877                  With Spouse            1          1
## 3878                  With Spouse            1          1
## 3879 With Other Friends/Relatives            1          1
## 3880                        Alone            1          0
## 3881                        Alone            0          1
## 3882     With Spouse and Children            1          2
## 3883                  With Spouse            1          1
## 3884                  With Spouse            1          1
## 3885                        Alone            1          0
## 3886                        Alone            0          1
## 3887                  With Spouse            1          1
## 3888                  With Spouse            1          1
## 3889                        Alone            1          0
## 3890                  With Spouse            1          1
## 3891                        Alone            1          0
## 3892 With Other Friends/Relatives            1          2
## 3893                  With Spouse            1          1
## 3894 With Other Friends/Relatives            2          0
## 3895                        Alone            0          1
## 3896 With Other Friends/Relatives            1          1
## 3897                        Alone            0          1
## 3898                        Alone            0          1
## 3899                  With Spouse            1          1
## 3900                  With Spouse            1          1
## 3902                  With Spouse            1          1
## 3903                        Alone            1          0
## 3904                  With Spouse            1          1
## 3905                        Alone            1          0
## 3906                        Alone            0          1
## 3907                  With Spouse            1          1
## 3908                  With Spouse            1          1
## 3909                  With Spouse            1          1
## 3910                With Children            2          0
## 3911     With Spouse and Children            2          1
## 3912                        Alone            1          0
## 3913                  With Spouse            1          1
## 3914 With Other Friends/Relatives            0          2
## 3915                  With Spouse            1          1
## 3916                  With Spouse            1          1
## 3917                  With Spouse            1          1
## 3918                        Alone            1          0
## 3919     With Spouse and Children            0          3
## 3920                        Alone            1          0
## 3921 With Other Friends/Relatives            0          1
## 3922                        Alone            0          1
## 3923                  With Spouse            1          1
## 3924                        Alone            1          0
## 3925                        Alone            0          1
## 3926                        Alone            1          0
## 3927                With Children            3          2
## 3928                  With Spouse            1          1
## 3929 With Other Friends/Relatives            3          1
## 3930 With Other Friends/Relatives            1          1
## 3931                        Alone            0          1
## 3932                        Alone            1          0
## 3933 With Other Friends/Relatives            2          0
## 3934                        Alone            0          1
## 3935                        Alone            0          1
## 3936                        Alone            0          1
## 3937                  With Spouse            1          1
## 3939                  With Spouse            1          1
## 3940     With Spouse and Children            2          0
## 3941                        Alone            0          1
## 3943                        Alone            0          1
## 3944                        Alone            0          1
## 3945 With Other Friends/Relatives            2          1
## 3946     With Spouse and Children            2          1
## 3947 With Other Friends/Relatives            1          1
## 3949                        Alone            1          0
## 3950                  With Spouse            1          1
## 3952                        Alone            1          0
## 3953                        Alone            0          1
## 3954     With Spouse and Children            2          2
## 3955                        Alone            1          0
## 3957                        Alone            1          0
## 3958                        Alone            0          1
## 3959     With Spouse and Children            2          2
## 3960                        Alone            1          0
## 3961                  With Spouse            1          1
## 3962                        Alone            0          1
## 3963                  With Spouse            1          1
## 3964 With Other Friends/Relatives            0          1
## 3965                        Alone            0          1
## 3966 With Other Friends/Relatives            1          1
## 3967                        Alone            1          0
## 3968                        Alone            1          0
## 3969                  With Spouse            1          1
## 3970 With Other Friends/Relatives            1          1
## 3971                  With Spouse            1          1
## 3972                        Alone            0          1
## 3973                  With Spouse            1          1
## 3974     With Spouse and Children            1          1
## 3975                  With Spouse            1          1
## 3976 With Other Friends/Relatives            1          2
## 3978                        Alone            1          0
## 3979                  With Spouse            6          4
## 3980     With Spouse and Children            2          1
## 3981                  With Spouse            1          1
## 3982                  With Spouse            1          1
## 3983     With Spouse and Children            3          1
## 3984                        Alone            0          1
## 3985                  With Spouse            1          1
## 3986                  With Spouse            1          1
## 3987                  With Spouse            1          1
## 3988                        Alone            0          1
## 3989                        Alone            0          1
## 3990                  With Spouse            1          1
## 3991     With Spouse and Children            2          2
## 3992                  With Spouse            1          1
## 3993                  With Spouse            1          1
## 3994                  With Spouse            1          1
## 3995                  With Spouse            1          1
## 3996                        Alone            1          0
## 3997                  With Spouse            1          1
## 3998                        Alone            0          1
## 3999 With Other Friends/Relatives            4          2
## 4000                  With Spouse            1          1
## 4001                        Alone            0          1
## 4002                        Alone            0          1
## 4003                  With Spouse            1          1
## 4004                        Alone            0          1
## 4005     With Spouse and Children            1          2
## 4006 With Other Friends/Relatives            2          0
## 4007                  With Spouse            1          1
## 4008                        Alone            0          1
## 4009                        Alone            0          1
## 4010 With Other Friends/Relatives            4          5
## 4011                  With Spouse            1          1
## 4012                        Alone            0          1
## 4013                        Alone            1          0
## 4014                  With Spouse            1          1
## 4015                        Alone            0          1
## 4016                        Alone            0          1
## 4017                        Alone            1          0
## 4018 With Other Friends/Relatives            2          0
## 4019                  With Spouse            1          1
## 4020                        Alone            1          0
## 4021                  With Spouse            1          1
## 4022                        Alone            1          0
## 4023                  With Spouse            1          1
## 4024                        Alone            0          1
## 4025                  With Spouse            1          1
## 4026     With Spouse and Children            1          1
## 4027 With Other Friends/Relatives            1          2
## 4028                        Alone            0          1
## 4029 With Other Friends/Relatives            1          1
## 4030                        Alone            0          1
## 4031                  With Spouse            1          1
## 4032                  With Spouse            1          1
## 4033                        Alone            1          0
## 4034                        Alone            0          1
## 4035                  With Spouse            1          1
## 4036                        Alone            0          1
## 4037 With Other Friends/Relatives            1          0
## 4038                  With Spouse            1          1
## 4039                With Children            1          1
## 4040                  With Spouse            1          1
## 4041                  With Spouse            1          1
## 4042 With Other Friends/Relatives            1          1
## 4043 With Other Friends/Relatives            0          2
## 4044                  With Spouse            1          1
## 4046                  With Spouse            1          1
## 4047                        Alone            0          1
## 4048 With Other Friends/Relatives            2          1
## 4049                  With Spouse            1          1
## 4050 With Other Friends/Relatives           11          4
## 4051 With Other Friends/Relatives            2          3
## 4052 With Other Friends/Relatives            5          4
## 4053                  With Spouse            1          1
## 4054                        Alone            0          1
## 4055 With Other Friends/Relatives            2          0
## 4056     With Spouse and Children            1          2
## 4057 With Other Friends/Relatives            0          2
## 4058                With Children            0          3
## 4061 With Other Friends/Relatives            2          1
## 4062                        Alone            1          0
## 4063                        Alone            1          0
## 4064 With Other Friends/Relatives            5          6
## 4065                With Children            1          2
## 4067     With Spouse and Children            2          1
## 4068                        Alone            0          1
## 4069                  With Spouse            1          1
## 4070                        Alone            1          0
## 4071                        Alone            1          0
## 4072                        Alone            0          1
## 4073                  With Spouse            1          1
## 4074                With Children            1          1
## 4075                  With Spouse            1          1
## 4076                        Alone            0          1
## 4077                        Alone            0          1
## 4078                        Alone            1          0
## 4079                        Alone            0          1
## 4080                        Alone            1          0
## 4081                        Alone            0          1
## 4082                        Alone            1          0
## 4083 With Other Friends/Relatives            1          1
## 4084                        Alone            1          0
## 4085                        Alone            1          0
## 4086                        Alone            0          1
## 4087                        Alone            0          1
## 4088                  With Spouse            1          1
## 4089                        Alone            1          0
## 4090                  With Spouse            1          1
## 4091     With Spouse and Children            3          3
## 4092 With Other Friends/Relatives            1          1
## 4094                  With Spouse            1          1
## 4095                  With Spouse            1          1
## 4096 With Other Friends/Relatives            1          1
## 4097                        Alone            0          1
## 4098                With Children            1          2
## 4099                        Alone            0          1
## 4100                        Alone            1          0
## 4101                  With Spouse            1          1
## 4102                  With Spouse            1          1
## 4103 With Other Friends/Relatives            2          0
## 4104                        Alone            1          0
## 4105                  With Spouse            1          1
## 4106                  With Spouse            1          1
## 4107                  With Spouse            1          1
## 4108                  With Spouse            1          1
## 4109                  With Spouse            1          1
## 4111                        Alone            0          1
## 4112                        Alone            1          0
## 4113                        Alone            1          0
## 4114                        Alone            1          0
## 4115                        Alone            1          0
## 4116                  With Spouse            1          1
## 4117 With Other Friends/Relatives            1          1
## 4118                        Alone            0          1
## 4119                        Alone            1          0
## 4121                  With Spouse            1          1
## 4122                        Alone            0          1
## 4123                        Alone            0          1
## 4124                        Alone            0          1
## 4126                        Alone            1          0
## 4127                        Alone            1          0
## 4130 With Other Friends/Relatives            0          2
## 4131     With Spouse and Children            2          2
## 4133                  With Spouse            1          1
## 4134                        Alone            1          0
## 4135 With Other Friends/Relatives            1          1
## 4136 With Other Friends/Relatives            1          2
## 4137                  With Spouse            0          1
## 4138                  With Spouse            1          1
## 4139                        Alone            1          0
## 4140                  With Spouse            1          1
## 4141                  With Spouse            1          1
## 4142                        Alone            0          1
## 4143                        Alone            1          0
## 4144 With Other Friends/Relatives            3          6
## 4145                  With Spouse            1          1
## 4146 With Other Friends/Relatives            1          1
## 4147 With Other Friends/Relatives            1          1
## 4148                        Alone            0          1
## 4149                  With Spouse            1          1
## 4150                        Alone            0          1
## 4151                  With Spouse            1          1
## 4152 With Other Friends/Relatives            0          2
## 4153                  With Spouse            1          1
## 4154 With Other Friends/Relatives            4          3
## 4155                  With Spouse            1          1
## 4156                  With Spouse            1          1
## 4157                        Alone            0          1
## 4158 With Other Friends/Relatives            1          1
## 4159                  With Spouse            1          1
## 4160 With Other Friends/Relatives            1          0
## 4161                        Alone            0          1
## 4162                  With Spouse            1          1
## 4163                        Alone            0          1
## 4164                        Alone            1          0
## 4165                        Alone            0          1
## 4166                        Alone            0          1
## 4167 With Other Friends/Relatives            3          1
## 4168                        Alone            0          1
## 4169                        Alone            1          0
## 4170                        Alone            0          1
## 4171                        Alone            1          0
## 4172                With Children            1          1
## 4173 With Other Friends/Relatives            1          1
## 4174                  With Spouse            1          1
## 4175     With Spouse and Children            3          1
## 4176 With Other Friends/Relatives            1          3
## 4177                  With Spouse            1          1
## 4178                        Alone            0          1
## 4179 With Other Friends/Relatives            1          2
## 4180                        Alone            0          1
## 4181                  With Spouse            1          1
## 4182                        Alone            0          1
## 4183                        Alone            1          0
## 4184                        Alone            0          1
## 4185                        Alone            0          1
## 4186                  With Spouse            1          1
## 4187                        Alone            0          1
## 4188 With Other Friends/Relatives            1          1
## 4189                        Alone            1          0
## 4190                  With Spouse            1          1
## 4191     With Spouse and Children            3          2
## 4192                  With Spouse            1          1
## 4193 With Other Friends/Relatives            3          3
## 4194                        Alone            1          0
## 4195 With Other Friends/Relatives            2          2
## 4196     With Spouse and Children            2          1
## 4197                        Alone            0          1
## 4198                        Alone            1          0
## 4199                        Alone            0          1
## 4200                        Alone            0          1
## 4201 With Other Friends/Relatives            0          2
## 4202 With Other Friends/Relatives            0          1
## 4203 With Other Friends/Relatives            2          0
## 4204                        Alone            0          1
## 4205     With Spouse and Children            2          3
## 4206                        Alone            0          1
## 4207                        Alone            1          0
## 4209                        Alone            0          1
## 4211 With Other Friends/Relatives            1          1
## 4212                        Alone            0          1
## 4213                        Alone            0          1
## 4214                        Alone            0          1
## 4215     With Spouse and Children            3          1
## 4216                        Alone            1          0
## 4217                        Alone            0          1
## 4218                  With Spouse            1          1
## 4220                  With Spouse            1          1
## 4221 With Other Friends/Relatives            6          2
## 4222                        Alone            1          0
## 4223                        Alone            0          1
## 4224                        Alone            1          0
## 4225 With Other Friends/Relatives            3          5
## 4226                        Alone            0          1
## 4227                  With Spouse            1          1
## 4228 With Other Friends/Relatives            1          0
## 4229                  With Spouse            1          1
## 4230 With Other Friends/Relatives            1          1
## 4232                        Alone            1          0
## 4233                        Alone            0          1
## 4234                        Alone            1          0
## 4235                  With Spouse            1          1
## 4236                With Children            1          2
## 4237 With Other Friends/Relatives            1          2
## 4238 With Other Friends/Relatives            1          1
## 4239                        Alone            1          0
## 4240                        Alone            0          1
## 4241 With Other Friends/Relatives            2          1
## 4242                        Alone            0          1
## 4243 With Other Friends/Relatives            1          1
## 4244                  With Spouse            1          1
## 4245                  With Spouse            1          1
## 4246     With Spouse and Children            4          1
## 4247                  With Spouse            1          1
## 4248                  With Spouse            1          1
## 4249                  With Spouse            1          1
## 4250                        Alone            0          1
## 4251                With Children            6          1
## 4252     With Spouse and Children            2          2
## 4253                        Alone            0          1
## 4254     With Spouse and Children            1          4
## 4255                        Alone            0          1
## 4257                  With Spouse            1          1
## 4258 With Other Friends/Relatives            1          1
## 4259                        Alone            1          0
## 4260                        Alone            0          1
## 4261                  With Spouse            1          1
## 4262                  With Spouse            1          1
## 4263                        Alone            1          0
## 4264                  With Spouse            1          1
## 4265                        Alone            1          0
## 4266                        Alone            0          1
## 4267                        Alone            0          1
## 4268                  With Spouse            1          1
## 4269                        Alone            0          1
## 4270                  With Spouse            1          1
## 4271                With Children            2          4
## 4272     With Spouse and Children            2          1
## 4273                With Children            2          0
## 4275                        Alone            0          1
## 4276                  With Spouse            1          1
## 4277                  With Spouse            1          1
## 4278                  With Spouse            1          1
## 4279                        Alone            0          1
## 4280                        Alone            1          0
## 4282                        Alone            0          1
## 4283                  With Spouse            1          1
## 4285 With Other Friends/Relatives            3          0
## 4286                        Alone            0          1
## 4287                        Alone            0          1
## 4288                  With Spouse            1          1
## 4289                  With Spouse            1          1
## 4290 With Other Friends/Relatives            1          5
## 4291 With Other Friends/Relatives            2          1
## 4292                        Alone            1          0
## 4293                        Alone            0          1
## 4294 With Other Friends/Relatives            0          1
## 4295 With Other Friends/Relatives            1          1
## 4296                  With Spouse            1          1
## 4297                        Alone            1          0
## 4298                  With Spouse            1          1
## 4299                        Alone            0          1
## 4300                        Alone            1          0
## 4301 With Other Friends/Relatives            0          2
## 4302                  With Spouse            1          1
## 4303                        Alone            1          0
## 4304     With Spouse and Children            1          3
## 4305                  With Spouse            1          1
## 4306                        Alone            0          1
## 4307                        Alone            0          1
## 4308                        Alone            0          1
## 4309                        Alone            0          1
## 4310 With Other Friends/Relatives            3          0
## 4311 With Other Friends/Relatives            2          0
## 4312                        Alone            0          1
## 4313                  With Spouse            1          1
## 4314 With Other Friends/Relatives            0          2
## 4315                  With Spouse            1          1
## 4316                        Alone            0          1
## 4317                        Alone            0          1
## 4318 With Other Friends/Relatives            1          1
## 4319                  With Spouse            1          1
## 4320 With Other Friends/Relatives            4          0
## 4321                  With Spouse            2          0
## 4322                  With Spouse            1          1
## 4323                        Alone            0          1
## 4324 With Other Friends/Relatives            1          1
## 4325                        Alone            1          0
## 4326 With Other Friends/Relatives            1          1
## 4327                        Alone            0          1
## 4328                        Alone            0          1
## 4329 With Other Friends/Relatives            0          2
## 4330                With Children            1          1
## 4331                        Alone            0          1
## 4332                        Alone            0          1
## 4333                        Alone            0          1
## 4334 With Other Friends/Relatives            1          1
## 4335                  With Spouse            1          1
## 4336                        Alone            0          1
## 4337                        Alone            0          1
## 4338                  With Spouse            1          1
## 4339 With Other Friends/Relatives            2          2
## 4340                  With Spouse            1          1
## 4341 With Other Friends/Relatives            2          2
## 4342                        Alone            1          0
## 4343                  With Spouse            1          1
## 4344                        Alone            0          1
## 4345 With Other Friends/Relatives            2          0
## 4346                        Alone            0          1
## 4347 With Other Friends/Relatives            2          4
## 4348                        Alone            1          0
## 4349                        Alone            1          0
## 4350                        Alone            0          1
## 4351                  With Spouse            1          1
## 4352     With Spouse and Children            2          1
## 4353                        Alone            0          1
## 4354                        Alone            0          1
## 4355                        Alone            0          1
## 4356                        Alone            0          1
## 4357                        Alone            0          1
## 4358                        Alone            1          0
## 4359                  With Spouse            1          1
## 4360 With Other Friends/Relatives            5          2
## 4361                        Alone            1          0
## 4362 With Other Friends/Relatives            0          2
## 4363                        Alone            1          0
## 4364                  With Spouse            1          1
## 4365                        Alone            0          1
## 4366                        Alone            1          0
## 4367                  With Spouse            1          1
## 4368                  With Spouse            1          1
## 4369                  With Spouse            1          1
## 4370                  With Spouse            2          1
## 4371                        Alone            0          1
## 4372 With Other Friends/Relatives            0          4
## 4373                        Alone            0          1
## 4374                  With Spouse            1          1
## 4375                        Alone            1          0
## 4376 With Other Friends/Relatives            8          5
## 4377                With Children            1          1
## 4378 With Other Friends/Relatives           12         10
## 4379                        Alone            0          1
## 4380                        Alone            1          0
## 4381                        Alone            0          1
## 4383 With Other Friends/Relatives            2          0
## 4384 With Other Friends/Relatives            1          2
## 4385     With Spouse and Children            2          2
## 4386                        Alone            1          0
## 4387 With Other Friends/Relatives            0          3
## 4388 With Other Friends/Relatives            1          3
## 4389 With Other Friends/Relatives            2          0
## 4390     With Spouse and Children            3          1
## 4391                  With Spouse            1          1
## 4392                        Alone            1          0
## 4393 With Other Friends/Relatives            1          2
## 4394                        Alone            0          1
## 4395                        Alone            1          0
## 4396 With Other Friends/Relatives            0          4
## 4397                  With Spouse            1          1
## 4398                  With Spouse            1          1
## 4400 With Other Friends/Relatives            4          3
## 4401                  With Spouse            1          1
## 4402     With Spouse and Children            3          1
## 4403     With Spouse and Children            1          2
## 4404                        Alone            1          0
## 4405                        Alone            0          1
## 4406 With Other Friends/Relatives            2          1
## 4407 With Other Friends/Relatives            0          4
## 4408                        Alone            0          1
## 4409 With Other Friends/Relatives            1          0
## 4410                        Alone            1          0
## 4411                  With Spouse            1          1
## 4412                  With Spouse            1          1
## 4413                        Alone            1          0
## 4414                        Alone            0          1
## 4415                        Alone            0          1
## 4416                        Alone            1          0
## 4417                        Alone            0          1
## 4419 With Other Friends/Relatives            1          1
## 4420                        Alone            1          0
## 4421                  With Spouse            1          1
## 4422                  With Spouse            1          1
## 4423                  With Spouse            1          1
## 4424                  With Spouse            1          1
## 4425                  With Spouse            1          1
## 4426 With Other Friends/Relatives            1          1
## 4427                        Alone            0          1
## 4428                        Alone            0          1
## 4429                  With Spouse            1          1
## 4430                  With Spouse            1          1
## 4431                  With Spouse            1          1
## 4432                        Alone            1          0
## 4433                        Alone            0          1
## 4434                        Alone            0          1
## 4435                        Alone            0          1
## 4436                        Alone            1          0
## 4437                        Alone            1          0
## 4438                        Alone            0          1
## 4439 With Other Friends/Relatives            2          1
## 4440 With Other Friends/Relatives            1          1
## 4441                  With Spouse            1          1
## 4442                  With Spouse            1          1
## 4443                        Alone            0          1
## 4444                  With Spouse            1          1
## 4445                        Alone            0          1
## 4446     With Spouse and Children            2          1
## 4447 With Other Friends/Relatives            1          0
## 4448                        Alone            0          1
## 4449                        Alone            0          1
## 4450                        Alone            0          1
## 4451                        Alone            1          0
## 4452                  With Spouse            1          1
## 4453 With Other Friends/Relatives            0          2
## 4454                  With Spouse            1          1
## 4455                        Alone            0          1
## 4456                        Alone            1          0
## 4457 With Other Friends/Relatives            1          2
## 4458                        Alone            0          1
## 4459                  With Spouse            1          1
## 4460                  With Spouse            1          1
## 4461                  With Spouse            1          1
## 4462                        Alone            1          1
## 4463 With Other Friends/Relatives            2          1
## 4464     With Spouse and Children            1          3
## 4465                  With Spouse            1          1
## 4466                        Alone            0          1
## 4467                        Alone            1          0
## 4468     With Spouse and Children            2          2
## 4469     With Spouse and Children            1          3
## 4471                  With Spouse            1          1
## 4472                  With Spouse            1          1
## 4473                  With Spouse            1          1
## 4475                        Alone            1          0
## 4476                        Alone            0          1
## 4477                        Alone            1          0
## 4478                        Alone            1          0
## 4479 With Other Friends/Relatives            1          1
## 4480                        Alone            0          1
## 4481                        Alone            0          1
## 4482                        Alone            1          0
## 4483 With Other Friends/Relatives            1          1
## 4485                        Alone            1          0
## 4486                        Alone            0          1
## 4487                        Alone            1          0
## 4488                  With Spouse            1          1
## 4489                  With Spouse            1          1
## 4490                        Alone            0          1
## 4491 With Other Friends/Relatives            6          4
## 4492 With Other Friends/Relatives            2          0
## 4493                  With Spouse            1          1
## 4494                        Alone            0          1
## 4495                        Alone            0          1
## 4496                        Alone            0          1
## 4497                        Alone            0          1
## 4498                        Alone            0          1
## 4499                        Alone            1          0
## 4500                        Alone            0          1
## 4501 With Other Friends/Relatives            2          2
## 4502 With Other Friends/Relatives            0          1
## 4504                        Alone            0          1
## 4505 With Other Friends/Relatives            6          2
## 4506                        Alone            1          0
## 4507                  With Spouse            1          1
## 4508                  With Spouse            1          1
## 4509 With Other Friends/Relatives            2          1
## 4510     With Spouse and Children            2          2
## 4511                        Alone            0          1
## 4512                  With Spouse            1          1
## 4513                        Alone            0          1
## 4514     With Spouse and Children            1          3
## 4515                        Alone            1          0
## 4516                  With Spouse            1          1
## 4517 With Other Friends/Relatives            0          3
## 4518                        Alone            0          1
## 4519                  With Spouse            1          1
## 4520                  With Spouse            1          1
## 4521 With Other Friends/Relatives            0          2
## 4522                        Alone            1          0
## 4523                  With Spouse            1          1
## 4524                        Alone            1          0
## 4525 With Other Friends/Relatives            2          1
## 4526                        Alone            1          0
## 4528 With Other Friends/Relatives            2          0
## 4529     With Spouse and Children            2          1
## 4530                        Alone            0          1
## 4531                        Alone            1          0
## 4532                        Alone            1          0
## 4533                        Alone            0          1
## 4534                  With Spouse            1          1
## 4535                        Alone            0          1
## 4536 With Other Friends/Relatives            6          1
## 4537     With Spouse and Children            2          2
## 4538                        Alone            0          1
## 4539 With Other Friends/Relatives            1          2
## 4540                        Alone            1          0
## 4541                        Alone            1          0
## 4542                        Alone            0          1
## 4543                        Alone            1          0
## 4545                        Alone            0          1
## 4546 With Other Friends/Relatives            6          5
## 4547                  With Spouse            1          1
## 4548                        Alone            0          1
## 4549 With Other Friends/Relatives            1          2
## 4550                        Alone            0          1
## 4551 With Other Friends/Relatives            1          3
## 4552                  With Spouse            1          1
## 4553 With Other Friends/Relatives            2          0
## 4554 With Other Friends/Relatives            0          1
## 4555                  With Spouse            1          1
## 4556     With Spouse and Children            2          1
## 4557                  With Spouse            1          1
## 4558                  With Spouse            1          1
## 4559                  With Spouse            1          1
## 4560                  With Spouse            1          1
## 4561                        Alone            0          1
## 4562                  With Spouse            1          1
## 4563                  With Spouse            1          1
## 4564                        Alone            0          1
## 4565                  With Spouse            1          1
## 4566                  With Spouse            1          1
## 4567                  With Spouse            1          1
## 4568                  With Spouse            1          1
## 4569                        Alone            0          1
## 4570                        Alone            0          1
## 4571                        Alone            1          0
## 4572                        Alone            0          1
## 4573                  With Spouse            1          1
## 4574 With Other Friends/Relatives            0          2
## 4575     With Spouse and Children            1          3
## 4577                        Alone            1          0
## 4578                        Alone            0          1
## 4579                  With Spouse            1          1
## 4580                        Alone            0          1
## 4581                        Alone            0          1
## 4582 With Other Friends/Relatives            1          1
## 4583 With Other Friends/Relatives            1          1
## 4584                        Alone            0          1
## 4585                  With Spouse            1          1
## 4586                        Alone            0          1
## 4587                  With Spouse            1          1
## 4588                        Alone            0          1
## 4589                        Alone            1          0
## 4590                        Alone            0          1
## 4591     With Spouse and Children            2          1
## 4592                        Alone            0          1
## 4593                        Alone            1          0
## 4594 With Other Friends/Relatives            3          0
## 4595     With Spouse and Children            2          1
## 4596                        Alone            0          1
## 4597                With Children            2          2
## 4598                        Alone            1          0
## 4599                        Alone            0          1
## 4600                        Alone            1          0
## 4601                        Alone            1          0
## 4602                        Alone            1          0
## 4603     With Spouse and Children            2          1
## 4604                  With Spouse            1          1
## 4605                  With Spouse            1          1
## 4606                  With Spouse            1          1
## 4607 With Other Friends/Relatives            1          1
## 4608                  With Spouse            1          1
## 4609 With Other Friends/Relatives            2          0
## 4610                With Children            1          1
## 4611                        Alone            0          1
## 4612     With Spouse and Children            1          2
## 4615                  With Spouse            1          1
## 4616                  With Spouse            1         11
## 4617                        Alone            1          0
## 4618                  With Spouse            2          0
## 4619 With Other Friends/Relatives            0          6
## 4620                        Alone            1          0
## 4621 With Other Friends/Relatives            2          0
## 4622                        Alone            0          1
## 4623     With Spouse and Children            1          3
## 4624                  With Spouse            1          1
## 4625                        Alone            0          1
## 4626                        Alone            0          1
## 4627                        Alone            0          1
## 4628                        Alone            0          1
## 4629                        Alone            0          1
## 4630                  With Spouse            1          1
## 4631                        Alone            1          0
## 4633                        Alone            0          1
## 4634                With Children            0          2
## 4635                        Alone            0          1
## 4636 With Other Friends/Relatives            2          0
## 4637                        Alone            0          1
## 4638     With Spouse and Children            2          1
## 4639 With Other Friends/Relatives            0          2
## 4640                        Alone            0          1
## 4641                        Alone            0          1
## 4642                  With Spouse            1          1
## 4643     With Spouse and Children            1          3
## 4644 With Other Friends/Relatives            1          1
## 4645 With Other Friends/Relatives            3          3
## 4646                  With Spouse            1          1
## 4647                  With Spouse            1          1
## 4648                  With Spouse            1          1
## 4649                        Alone            0          1
## 4650                        Alone            1          0
## 4651                        Alone            1          0
## 4652                  With Spouse            1          1
## 4654                        Alone            0          1
## 4655                        Alone            1          0
## 4657                        Alone            1          0
## 4658 With Other Friends/Relatives            1          1
## 4660                        Alone            0          1
## 4661                  With Spouse            1          1
## 4662                        Alone            1          0
## 4663     With Spouse and Children            3          1
## 4664                  With Spouse            1          1
## 4665                        Alone            0          1
## 4666                  With Spouse            1          1
## 4667                  With Spouse            1          1
## 4670                  With Spouse            0          1
## 4671                        Alone            0          1
## 4672 With Other Friends/Relatives            2          0
## 4673 With Other Friends/Relatives            2          0
## 4674                        Alone            1          0
## 4675                  With Spouse            1          1
## 4676     With Spouse and Children            0          2
## 4677                        Alone            1          0
## 4678                With Children            2          0
## 4679                        Alone            0          1
## 4680                        Alone            0          1
## 4681                        Alone            0          1
## 4682                        Alone            1          0
## 4683                        Alone            1          0
## 4684                  With Spouse            1          1
## 4685                        Alone            0          1
## 4687                  With Spouse            1          1
## 4688                  With Spouse            1          1
## 4689                        Alone            1          0
## 4690                        Alone            1          0
## 4691                        Alone            0          1
## 4692                        Alone            1          0
## 4693                With Children            1          1
## 4694                        Alone            0          1
## 4695                  With Spouse            1          1
## 4696 With Other Friends/Relatives            0          2
## 4697                  With Spouse            1          1
## 4698                        Alone            0          1
## 4699                        Alone            0          1
## 4700                        Alone            0          1
## 4701 With Other Friends/Relatives            3          3
## 4703                        Alone            1          0
## 4704                  With Spouse            1          1
## 4705                  With Spouse            1          1
## 4706                        Alone            0          1
## 4707                  With Spouse            1          1
## 4708                        Alone            0          1
## 4709 With Other Friends/Relatives            3          3
## 4710                        Alone            1          0
## 4712 With Other Friends/Relatives            4          4
## 4713                  With Spouse            1          1
## 4714                        Alone            0          1
## 4715                  With Spouse            1          1
## 4716                        Alone            0          1
## 4717                  With Spouse            1          1
## 4718 With Other Friends/Relatives            2          0
## 4719                        Alone            0          1
## 4720                  With Spouse            1          1
## 4721                  With Spouse            1          1
## 4722 With Other Friends/Relatives           11          3
## 4723                  With Spouse            1          1
## 4724                        Alone            0          1
## 4725 With Other Friends/Relatives            3          0
## 4727                  With Spouse            1          1
## 4728                        Alone            0          1
## 4729                With Children            2          0
## 4731                        Alone            1          0
## 4732 With Other Friends/Relatives            0          2
## 4733                  With Spouse            1          1
## 4734                  With Spouse            1          1
## 4735                        Alone            1          0
## 4736 With Other Friends/Relatives            1          5
## 4737                  With Spouse            1          1
## 4738                        Alone            1          0
## 4739                  With Spouse            1          1
## 4740                        Alone            1          0
## 4741                With Children            4          0
## 4742                        Alone            0          1
## 4743                        Alone            0          1
## 4744                        Alone            0          1
## 4745                  With Spouse            1          1
## 4746                  With Spouse            1          1
## 4748                        Alone            0          1
## 4749                  With Spouse            1          1
## 4750                        Alone            0          1
## 4751 With Other Friends/Relatives            1          3
## 4752                        Alone            0          1
## 4754 With Other Friends/Relatives            0          3
## 4755                        Alone            0          1
## 4756                  With Spouse            1          1
## 4757                  With Spouse            1          1
## 4759                        Alone            0          1
## 4760 With Other Friends/Relatives            1          1
## 4761 With Other Friends/Relatives            2          0
## 4762                        Alone            0          1
## 4763                        Alone            0          1
## 4764 With Other Friends/Relatives            1          0
## 4765                        Alone            1          0
## 4766                  With Spouse            1          1
## 4767                  With Spouse            1          1
## 4768     With Spouse and Children            2          1
## 4769                        Alone            1          0
## 4770                  With Spouse            1          1
## 4771 With Other Friends/Relatives            1          0
## 4773                  With Spouse            1          1
## 4774                  With Spouse            1          1
## 4775 With Other Friends/Relatives            2          2
## 4776                        Alone            1          0
## 4777                  With Spouse            1          1
## 4778                  With Spouse            1          1
## 4779                  With Spouse            1          1
## 4780 With Other Friends/Relatives            1          1
## 4781                  With Spouse            1          1
## 4782 With Other Friends/Relatives            2          1
## 4783                        Alone            0          1
## 4784                  With Spouse            1          1
## 4785                  With Spouse            1          1
## 4787                        Alone            0          1
## 4788                  With Spouse            1          1
## 4789                        Alone            0          1
## 4790     With Spouse and Children            6          2
## 4791 With Other Friends/Relatives            5          9
## 4792                        Alone            0          1
## 4793                        Alone            3          0
## 4794     With Spouse and Children            1          3
## 4795     With Spouse and Children            2          2
## 4796                        Alone            0          1
## 4797                        Alone            0          1
## 4798                        Alone            0          1
## 4799                With Children            2          0
## 4800 With Other Friends/Relatives            1          2
## 4801                        Alone            0          1
## 4802                With Children            2          3
## 4803                        Alone            0          1
## 4804                        Alone            0          1
## 4805                  With Spouse            1          1
## 4806                        Alone            0          1
## 4807                With Children            2          3
## 4808                        Alone            0          1
## 4809                        Alone            0          1
## 4810 With Other Friends/Relatives            0          2
## 4811 With Other Friends/Relatives            1          1
## 4812     With Spouse and Children            2          2
## 4813     With Spouse and Children            1          1
## 4815                  With Spouse            1          1
## 4817                        Alone            1          0
## 4818 With Other Friends/Relatives           12          1
## 4820                  With Spouse            1          1
## 4821                  With Spouse            1          1
## 4822                  With Spouse            1          1
## 4823                        Alone            0          1
## 4824                        Alone            0          1
## 4825 With Other Friends/Relatives            1          1
## 4826     With Spouse and Children            1          4
## 4827 With Other Friends/Relatives            1          1
## 4828                  With Spouse            1          1
## 4829                        Alone            0          1
## 4830                        Alone            0          1
## 4831                        Alone            0          1
## 4832                        Alone            0          1
## 4833                  With Spouse            1          1
## 4834 With Other Friends/Relatives            2          0
## 4835                        Alone            0          1
## 4836                        Alone            1          0
## 4837                  With Spouse            1          1
## 4838                  With Spouse            1          1
## 4839                  With Spouse            1          1
## 4840                        Alone            0          1
## 4841                        Alone            0          1
## 4842     With Spouse and Children            2          1
## 4843     With Spouse and Children            2          2
## 4844                        Alone            0          1
## 4845                        Alone            0          1
## 4846                  With Spouse            1          1
## 4847                  With Spouse            1          1
## 4848                  With Spouse            1          1
## 4849                        Alone            0          1
## 4850                        Alone            0          1
## 4851                        Alone            0          1
## 4852                        Alone            0          1
## 4853                        Alone            1          0
## 4854                        Alone            0          1
## 4855                        Alone            0          1
##                             purpose            main_activity
## 1    Visiting Friends and Relatives            Beach Tourism
## 2              Leisure and Holidays         Wildlife Tourism
## 3              Leisure and Holidays          Widlife Tourism
## 4              Leisure and Holidays            Beach Tourism
## 5              Leisure and Holidays          Widlife Tourism
## 6              Leisure and Holidays          Widlife Tourism
## 7              Leisure and Holidays         Wildlife Tourism
## 8              Leisure and Holidays         Cultural Tourism
## 9              Leisure and Holidays         Cultural Tourism
## 10             Leisure and Holidays          Widlife Tourism
## 11             Leisure and Holidays            Beach Tourism
## 12             Leisure and Holidays         Wildlife Tourism
## 13             Leisure and Holidays          Widlife Tourism
## 14             Leisure and Holidays          Widlife Tourism
## 15             Leisure and Holidays             Bird Tourism
## 16             Leisure and Holidays          Widlife Tourism
## 17                         Business          Hunting Tourism
## 18             Leisure and Holidays         Wildlife Tourism
## 19             Leisure and Holidays          Widlife Tourism
## 20                         Business          Widlife Tourism
## 21             Leisure and Holidays            Beach Tourism
## 22          Scientific and Academic         Cultural Tourism
## 23          Scientific and Academic          Hunting Tourism
## 24             Leisure and Holidays          Widlife Tourism
## 26             Leisure and Holidays          Widlife Tourism
## 27             Leisure and Holidays            Beach Tourism
## 28                         Business          Hunting Tourism
## 29   Visiting Friends and Relatives         Cultural Tourism
## 30             Leisure and Holidays          Widlife Tourism
## 31             Leisure and Holidays         Wildlife Tourism
## 32   Visiting Friends and Relatives         Cultural Tourism
## 33          Meetings and Conference            Beach Tourism
## 34          Meetings and Conference            Beach Tourism
## 35             Leisure and Holidays          Widlife Tourism
## 36             Leisure and Holidays         Wildlife Tourism
## 37                         Business          Widlife Tourism
## 38             Leisure and Holidays         Cultural Tourism
## 39                         Business          Widlife Tourism
## 40             Leisure and Holidays          Widlife Tourism
## 41                         Business         Cultural Tourism
## 42             Leisure and Holidays         Wildlife Tourism
## 43                         Business             Bird Tourism
## 44             Leisure and Holidays       Conference Tourism
## 45             Leisure and Holidays          Widlife Tourism
## 46             Leisure and Holidays          Widlife Tourism
## 47                         Business        Mountain Climbing
## 48             Leisure and Holidays          Widlife Tourism
## 49             Leisure and Holidays            Beach Tourism
## 50             Leisure and Holidays       Conference Tourism
## 51   Visiting Friends and Relatives          Widlife Tourism
## 52   Visiting Friends and Relatives         Wildlife Tourism
## 53             Leisure and Holidays          Widlife Tourism
## 54   Visiting Friends and Relatives            Beach Tourism
## 55                         Business         Wildlife Tourism
## 56   Visiting Friends and Relatives            Beach Tourism
## 57             Leisure and Holidays          Widlife Tourism
## 58                         Business          Hunting Tourism
## 59             Leisure and Holidays          Widlife Tourism
## 60   Visiting Friends and Relatives         Wildlife Tourism
## 61                     Volunteering          Hunting Tourism
## 62             Leisure and Holidays         Wildlife Tourism
## 63             Leisure and Holidays          Widlife Tourism
## 64             Leisure and Holidays         Wildlife Tourism
## 65                         Business                 Business
## 66   Visiting Friends and Relatives        Mountain Climbing
## 67             Leisure and Holidays             Bird Tourism
## 68          Meetings and Conference          Widlife Tourism
## 69             Leisure and Holidays          Widlife Tourism
## 70             Leisure and Holidays         Wildlife Tourism
## 71             Leisure and Holidays       Conference Tourism
## 72                         Business          Widlife Tourism
## 73             Leisure and Holidays         Cultural Tourism
## 74                         Business          Widlife Tourism
## 75             Leisure and Holidays         Wildlife Tourism
## 76             Leisure and Holidays            Beach Tourism
## 77             Leisure and Holidays          Widlife Tourism
## 78             Leisure and Holidays          Widlife Tourism
## 79             Leisure and Holidays          Widlife Tourism
## 80                     Volunteering       Conference Tourism
## 81             Leisure and Holidays       Conference Tourism
## 83   Visiting Friends and Relatives            Beach Tourism
## 84          Meetings and Conference        Mountain Climbing
## 85          Meetings and Conference          Widlife Tourism
## 86             Leisure and Holidays            Beach Tourism
## 87             Leisure and Holidays            Beach Tourism
## 88             Leisure and Holidays            Beach Tourism
## 89   Visiting Friends and Relatives            Beach Tourism
## 90                         Business            Beach Tourism
## 91          Meetings and Conference       Conference Tourism
## 92             Leisure and Holidays       Conference Tourism
## 93             Leisure and Holidays          Widlife Tourism
## 94             Leisure and Holidays         Cultural Tourism
## 96   Visiting Friends and Relatives            Beach Tourism
## 97   Visiting Friends and Relatives         Cultural Tourism
## 98             Leisure and Holidays          Widlife Tourism
## 99             Leisure and Holidays         Cultural Tourism
## 100  Visiting Friends and Relatives          Widlife Tourism
## 101            Leisure and Holidays         Wildlife Tourism
## 102            Leisure and Holidays          Widlife Tourism
## 103            Leisure and Holidays          Widlife Tourism
## 104                        Business          Hunting Tourism
## 105            Leisure and Holidays            Beach Tourism
## 106            Leisure and Holidays       Conference Tourism
## 107            Leisure and Holidays          Widlife Tourism
## 108            Leisure and Holidays       Conference Tourism
## 109            Leisure and Holidays          Widlife Tourism
## 110            Leisure and Holidays       Conference Tourism
## 111            Leisure and Holidays            Beach Tourism
## 112                        Business          Widlife Tourism
## 113            Leisure and Holidays            Beach Tourism
## 114            Leisure and Holidays          Widlife Tourism
## 115  Visiting Friends and Relatives         Wildlife Tourism
## 117            Leisure and Holidays       Conference Tourism
## 118            Leisure and Holidays         Wildlife Tourism
## 119            Leisure and Holidays          Widlife Tourism
## 120                        Business          Widlife Tourism
## 121            Leisure and Holidays       Conference Tourism
## 123            Leisure and Holidays          Widlife Tourism
## 124            Leisure and Holidays            Beach Tourism
## 125            Leisure and Holidays          Widlife Tourism
## 126                        Business            Beach Tourism
## 127            Leisure and Holidays          Widlife Tourism
## 128                        Business            Beach Tourism
## 129            Leisure and Holidays          Widlife Tourism
## 130            Leisure and Holidays          Widlife Tourism
## 131                        Business        Mountain Climbing
## 132            Leisure and Holidays          Widlife Tourism
## 133            Leisure and Holidays          Widlife Tourism
## 134  Visiting Friends and Relatives          Hunting Tourism
## 135            Leisure and Holidays          Widlife Tourism
## 136            Leisure and Holidays         Cultural Tourism
## 138            Leisure and Holidays         Cultural Tourism
## 139            Leisure and Holidays            Beach Tourism
## 140         Meetings and Conference         Wildlife Tourism
## 141            Leisure and Holidays            Beach Tourism
## 142  Visiting Friends and Relatives          Hunting Tourism
## 143            Leisure and Holidays            Beach Tourism
## 144            Leisure and Holidays          Widlife Tourism
## 145            Leisure and Holidays       Conference Tourism
## 146            Leisure and Holidays          Hunting Tourism
## 147            Leisure and Holidays       Conference Tourism
## 148            Leisure and Holidays       Conference Tourism
## 149            Leisure and Holidays          Widlife Tourism
## 150         Meetings and Conference            Beach Tourism
## 151  Visiting Friends and Relatives        Mountain Climbing
## 152            Leisure and Holidays          Widlife Tourism
## 153            Leisure and Holidays          Widlife Tourism
## 154         Meetings and Conference       Conference Tourism
## 155            Leisure and Holidays       Conference Tourism
## 156            Leisure and Holidays            Beach Tourism
## 157            Leisure and Holidays            Beach Tourism
## 158                        Business       Conference Tourism
## 159            Leisure and Holidays          Widlife Tourism
## 160            Leisure and Holidays         Cultural Tourism
## 161                    Volunteering         Cultural Tourism
## 162            Leisure and Holidays          Widlife Tourism
## 163            Leisure and Holidays          Widlife Tourism
## 164            Leisure and Holidays            Beach Tourism
## 165            Leisure and Holidays          Widlife Tourism
## 166            Leisure and Holidays       Conference Tourism
## 167            Leisure and Holidays       Conference Tourism
## 168            Leisure and Holidays          Hunting Tourism
## 169  Visiting Friends and Relatives          Hunting Tourism
## 170            Leisure and Holidays          Hunting Tourism
## 171  Visiting Friends and Relatives            Beach Tourism
## 173            Leisure and Holidays          Widlife Tourism
## 174                           Other          Hunting Tourism
## 175            Leisure and Holidays            Beach Tourism
## 176            Leisure and Holidays          Widlife Tourism
## 177                        Business       Conference Tourism
## 178            Leisure and Holidays         Wildlife Tourism
## 179            Leisure and Holidays            Beach Tourism
## 180  Visiting Friends and Relatives          Hunting Tourism
## 181            Leisure and Holidays          Widlife Tourism
## 182            Leisure and Holidays          Widlife Tourism
## 183            Leisure and Holidays       Conference Tourism
## 184  Visiting Friends and Relatives          Widlife Tourism
## 185            Leisure and Holidays          Widlife Tourism
## 186                        Business            Beach Tourism
## 187            Leisure and Holidays         Wildlife Tourism
## 188            Leisure and Holidays         Wildlife Tourism
## 189            Leisure and Holidays            Beach Tourism
## 190            Leisure and Holidays         Wildlife Tourism
## 191  Visiting Friends and Relatives          Hunting Tourism
## 192            Leisure and Holidays            Beach Tourism
## 193            Leisure and Holidays          Widlife Tourism
## 194            Leisure and Holidays            Beach Tourism
## 195            Leisure and Holidays            Beach Tourism
## 196  Visiting Friends and Relatives          Widlife Tourism
## 197            Leisure and Holidays         Cultural Tourism
## 198  Visiting Friends and Relatives          Hunting Tourism
## 199            Leisure and Holidays          Widlife Tourism
## 200            Leisure and Holidays            Beach Tourism
## 201                           Other          Hunting Tourism
## 202            Leisure and Holidays         Wildlife Tourism
## 203            Leisure and Holidays          Widlife Tourism
## 204                        Business          Widlife Tourism
## 205            Leisure and Holidays          Widlife Tourism
## 206            Leisure and Holidays          Widlife Tourism
## 207            Leisure and Holidays            Beach Tourism
## 208            Leisure and Holidays          Widlife Tourism
## 209            Leisure and Holidays                 Business
## 210            Leisure and Holidays       Conference Tourism
## 211  Visiting Friends and Relatives            Beach Tourism
## 212            Leisure and Holidays         Cultural Tourism
## 213            Leisure and Holidays          Widlife Tourism
## 214  Visiting Friends and Relatives         Cultural Tourism
## 215            Leisure and Holidays            Beach Tourism
## 216            Leisure and Holidays          Widlife Tourism
## 217            Leisure and Holidays          Widlife Tourism
## 218            Leisure and Holidays            Beach Tourism
## 219            Leisure and Holidays            Beach Tourism
## 220            Leisure and Holidays            Beach Tourism
## 221            Leisure and Holidays          Widlife Tourism
## 222            Leisure and Holidays         Wildlife Tourism
## 223            Leisure and Holidays          Widlife Tourism
## 224  Visiting Friends and Relatives          Hunting Tourism
## 225            Leisure and Holidays         Wildlife Tourism
## 226  Visiting Friends and Relatives Diving and Sport Fishing
## 228                        Business            Beach Tourism
## 229                           Other          Hunting Tourism
## 230            Leisure and Holidays            Beach Tourism
## 231            Leisure and Holidays            Beach Tourism
## 232            Leisure and Holidays            Beach Tourism
## 233            Leisure and Holidays          Widlife Tourism
## 234            Leisure and Holidays         Wildlife Tourism
## 235            Leisure and Holidays         Wildlife Tourism
## 237            Leisure and Holidays         Wildlife Tourism
## 238            Leisure and Holidays          Widlife Tourism
## 239                        Business          Hunting Tourism
## 241            Leisure and Holidays            Beach Tourism
## 242            Leisure and Holidays            Beach Tourism
## 243         Meetings and Conference          Widlife Tourism
## 244                        Business          Hunting Tourism
## 245            Leisure and Holidays          Widlife Tourism
## 246            Leisure and Holidays         Wildlife Tourism
## 247            Leisure and Holidays          Widlife Tourism
## 248            Leisure and Holidays         Wildlife Tourism
## 249            Leisure and Holidays            Beach Tourism
## 250            Leisure and Holidays            Beach Tourism
## 251                        Business          Widlife Tourism
## 252            Leisure and Holidays         Cultural Tourism
## 253            Leisure and Holidays          Widlife Tourism
## 254            Leisure and Holidays         Cultural Tourism
## 255            Leisure and Holidays            Beach Tourism
## 256            Leisure and Holidays            Beach Tourism
## 257  Visiting Friends and Relatives          Widlife Tourism
## 258            Leisure and Holidays          Widlife Tourism
## 259                           Other       Conference Tourism
## 260            Leisure and Holidays         Cultural Tourism
## 261            Leisure and Holidays          Widlife Tourism
## 262            Leisure and Holidays         Wildlife Tourism
## 264  Visiting Friends and Relatives         Cultural Tourism
## 265            Leisure and Holidays          Widlife Tourism
## 266            Leisure and Holidays          Widlife Tourism
## 267                        Business            Beach Tourism
## 268            Leisure and Holidays         Wildlife Tourism
## 269            Leisure and Holidays          Widlife Tourism
## 270  Visiting Friends and Relatives          Widlife Tourism
## 271            Leisure and Holidays                 Business
## 272            Leisure and Holidays         Cultural Tourism
## 273            Leisure and Holidays            Beach Tourism
## 274            Leisure and Holidays          Widlife Tourism
## 275                        Business          Widlife Tourism
## 276            Leisure and Holidays          Widlife Tourism
## 277            Leisure and Holidays          Hunting Tourism
## 278                        Business          Widlife Tourism
## 279            Leisure and Holidays          Widlife Tourism
## 280  Visiting Friends and Relatives            Beach Tourism
## 282            Leisure and Holidays            Beach Tourism
## 283                        Business        Mountain Climbing
## 284            Leisure and Holidays            Beach Tourism
## 285  Visiting Friends and Relatives          Hunting Tourism
## 286            Leisure and Holidays       Conference Tourism
## 287            Leisure and Holidays         Wildlife Tourism
## 288                    Volunteering         Wildlife Tourism
## 289                        Business          Hunting Tourism
## 290                        Business            Beach Tourism
## 291                    Volunteering          Hunting Tourism
## 292            Leisure and Holidays       Conference Tourism
## 293            Leisure and Holidays                 Business
## 294         Meetings and Conference       Conference Tourism
## 295            Leisure and Holidays          Widlife Tourism
## 296            Leisure and Holidays          Widlife Tourism
## 297            Leisure and Holidays          Widlife Tourism
## 298                        Business          Hunting Tourism
## 299            Leisure and Holidays            Beach Tourism
## 300  Visiting Friends and Relatives         Cultural Tourism
## 302                        Business          Widlife Tourism
## 303            Leisure and Holidays            Beach Tourism
## 305            Leisure and Holidays          Widlife Tourism
## 306                        Business          Hunting Tourism
## 307  Visiting Friends and Relatives          Widlife Tourism
## 308  Visiting Friends and Relatives        Mountain Climbing
## 309            Leisure and Holidays         Cultural Tourism
## 310            Leisure and Holidays       Conference Tourism
## 311            Leisure and Holidays          Widlife Tourism
## 312            Leisure and Holidays       Conference Tourism
## 313  Visiting Friends and Relatives            Beach Tourism
## 314            Leisure and Holidays       Conference Tourism
## 315            Leisure and Holidays          Widlife Tourism
## 316  Visiting Friends and Relatives            Beach Tourism
## 320  Visiting Friends and Relatives         Cultural Tourism
## 321            Leisure and Holidays         Cultural Tourism
## 322         Meetings and Conference         Wildlife Tourism
## 323            Leisure and Holidays            Beach Tourism
## 324            Leisure and Holidays         Wildlife Tourism
## 325                        Business          Hunting Tourism
## 326            Leisure and Holidays         Cultural Tourism
## 327            Leisure and Holidays          Widlife Tourism
## 328            Leisure and Holidays         Wildlife Tourism
## 329         Scientific and Academic            Beach Tourism
## 330                        Business          Widlife Tourism
## 331            Leisure and Holidays          Widlife Tourism
## 332            Leisure and Holidays       Conference Tourism
## 333            Leisure and Holidays            Beach Tourism
## 334            Leisure and Holidays       Conference Tourism
## 335  Visiting Friends and Relatives            Beach Tourism
## 336                        Business          Hunting Tourism
## 337            Leisure and Holidays         Wildlife Tourism
## 338            Leisure and Holidays          Widlife Tourism
## 339         Meetings and Conference          Widlife Tourism
## 340            Leisure and Holidays          Widlife Tourism
## 341            Leisure and Holidays          Widlife Tourism
## 342            Leisure and Holidays            Beach Tourism
## 343                        Business          Widlife Tourism
## 344                        Business          Widlife Tourism
## 345                        Business          Widlife Tourism
## 346            Leisure and Holidays            Beach Tourism
## 347  Visiting Friends and Relatives         Wildlife Tourism
## 348            Leisure and Holidays            Beach Tourism
## 349                        Business          Widlife Tourism
## 350            Leisure and Holidays            Beach Tourism
## 351            Leisure and Holidays          Widlife Tourism
## 352            Leisure and Holidays          Widlife Tourism
## 354                           Other          Hunting Tourism
## 355            Leisure and Holidays         Cultural Tourism
## 356            Leisure and Holidays            Beach Tourism
## 357                           Other          Hunting Tourism
## 358            Leisure and Holidays            Beach Tourism
## 359            Leisure and Holidays          Widlife Tourism
## 360                        Business          Widlife Tourism
## 361            Leisure and Holidays          Widlife Tourism
## 362            Leisure and Holidays          Widlife Tourism
## 363            Leisure and Holidays         Wildlife Tourism
## 364            Leisure and Holidays         Wildlife Tourism
## 365  Visiting Friends and Relatives                 Business
## 366  Visiting Friends and Relatives          Hunting Tourism
## 367                        Business          Widlife Tourism
## 368            Leisure and Holidays         Wildlife Tourism
## 369            Leisure and Holidays            Beach Tourism
## 370            Leisure and Holidays         Wildlife Tourism
## 371            Leisure and Holidays            Beach Tourism
## 372         Meetings and Conference          Widlife Tourism
## 373            Leisure and Holidays          Widlife Tourism
## 374  Visiting Friends and Relatives            Beach Tourism
## 375            Leisure and Holidays          Widlife Tourism
## 376            Leisure and Holidays          Widlife Tourism
## 377  Visiting Friends and Relatives          Hunting Tourism
## 378            Leisure and Holidays          Widlife Tourism
## 379            Leisure and Holidays          Widlife Tourism
## 380            Leisure and Holidays          Widlife Tourism
## 381  Visiting Friends and Relatives            Beach Tourism
## 382  Visiting Friends and Relatives       Conference Tourism
## 383         Meetings and Conference          Hunting Tourism
## 384  Visiting Friends and Relatives          Hunting Tourism
## 385            Leisure and Holidays          Widlife Tourism
## 386         Scientific and Academic         Wildlife Tourism
## 387                        Business         Wildlife Tourism
## 388            Leisure and Holidays          Widlife Tourism
## 389                        Business          Widlife Tourism
## 390  Visiting Friends and Relatives          Hunting Tourism
## 391                        Business          Hunting Tourism
## 392            Leisure and Holidays       Conference Tourism
## 393            Leisure and Holidays          Widlife Tourism
## 394            Leisure and Holidays            Beach Tourism
## 396            Leisure and Holidays          Widlife Tourism
## 397         Meetings and Conference          Widlife Tourism
## 398                    Volunteering            Beach Tourism
## 399            Leisure and Holidays       Conference Tourism
## 400         Meetings and Conference         Cultural Tourism
## 401            Leisure and Holidays          Widlife Tourism
## 402            Leisure and Holidays       Conference Tourism
## 403            Leisure and Holidays          Widlife Tourism
## 404            Leisure and Holidays       Conference Tourism
## 405  Visiting Friends and Relatives          Widlife Tourism
## 406                           Other          Hunting Tourism
## 407            Leisure and Holidays       Conference Tourism
## 408                        Business          Hunting Tourism
## 409            Leisure and Holidays          Widlife Tourism
## 410            Leisure and Holidays          Widlife Tourism
## 411            Leisure and Holidays          Hunting Tourism
## 412                        Business          Hunting Tourism
## 413  Visiting Friends and Relatives            Beach Tourism
## 414                        Business          Widlife Tourism
## 415                        Business          Widlife Tourism
## 416            Leisure and Holidays          Widlife Tourism
## 417                        Business          Widlife Tourism
## 418            Leisure and Holidays       Conference Tourism
## 419                        Business          Hunting Tourism
## 420                         Medical          Hunting Tourism
## 422            Leisure and Holidays            Beach Tourism
## 423  Visiting Friends and Relatives          Widlife Tourism
## 424            Leisure and Holidays          Widlife Tourism
## 426                        Business         Cultural Tourism
## 427                        Business          Hunting Tourism
## 428            Leisure and Holidays       Conference Tourism
## 429            Leisure and Holidays            Beach Tourism
## 430  Visiting Friends and Relatives         Cultural Tourism
## 431            Leisure and Holidays          Widlife Tourism
## 432            Leisure and Holidays            Beach Tourism
## 433            Leisure and Holidays         Cultural Tourism
## 435                    Volunteering          Widlife Tourism
## 436            Leisure and Holidays         Cultural Tourism
## 437            Leisure and Holidays       Conference Tourism
## 439  Visiting Friends and Relatives          Hunting Tourism
## 440            Leisure and Holidays          Widlife Tourism
## 441            Leisure and Holidays            Beach Tourism
## 442                        Business          Widlife Tourism
## 443            Leisure and Holidays            Beach Tourism
## 444            Leisure and Holidays            Beach Tourism
## 445            Leisure and Holidays          Widlife Tourism
## 446            Leisure and Holidays          Widlife Tourism
## 447                    Volunteering          Widlife Tourism
## 448            Leisure and Holidays            Beach Tourism
## 449            Leisure and Holidays          Widlife Tourism
## 450            Leisure and Holidays          Widlife Tourism
## 451            Leisure and Holidays            Beach Tourism
## 452            Leisure and Holidays         Cultural Tourism
## 453            Leisure and Holidays         Cultural Tourism
## 454                        Business         Cultural Tourism
## 456                        Business            Beach Tourism
## 457            Leisure and Holidays          Widlife Tourism
## 458            Leisure and Holidays          Widlife Tourism
## 459            Leisure and Holidays         Cultural Tourism
## 460         Scientific and Academic         Cultural Tourism
## 461  Visiting Friends and Relatives          Widlife Tourism
## 462            Leisure and Holidays            Beach Tourism
## 463            Leisure and Holidays            Beach Tourism
## 464            Leisure and Holidays       Conference Tourism
## 465            Leisure and Holidays         Wildlife Tourism
## 466                        Business            Beach Tourism
## 467            Leisure and Holidays          Widlife Tourism
## 468            Leisure and Holidays       Conference Tourism
## 469            Leisure and Holidays       Conference Tourism
## 470            Leisure and Holidays         Wildlife Tourism
## 471  Visiting Friends and Relatives         Cultural Tourism
## 472            Leisure and Holidays            Beach Tourism
## 473            Leisure and Holidays          Widlife Tourism
## 474            Leisure and Holidays          Widlife Tourism
## 475            Leisure and Holidays         Wildlife Tourism
## 476            Leisure and Holidays          Widlife Tourism
## 477            Leisure and Holidays         Wildlife Tourism
## 478            Leisure and Holidays          Widlife Tourism
## 479                        Business            Beach Tourism
## 480            Leisure and Holidays          Widlife Tourism
## 481                        Business         Cultural Tourism
## 482            Leisure and Holidays          Widlife Tourism
## 483            Leisure and Holidays       Conference Tourism
## 484            Leisure and Holidays          Widlife Tourism
## 485                        Business          Widlife Tourism
## 486            Leisure and Holidays            Beach Tourism
## 487            Leisure and Holidays       Conference Tourism
## 488            Leisure and Holidays         Wildlife Tourism
## 489            Leisure and Holidays          Widlife Tourism
## 490  Visiting Friends and Relatives          Widlife Tourism
## 491            Leisure and Holidays            Beach Tourism
## 492  Visiting Friends and Relatives          Hunting Tourism
## 493            Leisure and Holidays            Beach Tourism
## 494            Leisure and Holidays            Beach Tourism
## 495            Leisure and Holidays         Wildlife Tourism
## 497            Leisure and Holidays          Widlife Tourism
## 498            Leisure and Holidays          Widlife Tourism
## 499            Leisure and Holidays         Cultural Tourism
## 500                           Other          Hunting Tourism
## 501            Leisure and Holidays          Widlife Tourism
## 502            Leisure and Holidays          Widlife Tourism
## 503            Leisure and Holidays          Widlife Tourism
## 504         Meetings and Conference          Widlife Tourism
## 505  Visiting Friends and Relatives         Cultural Tourism
## 506                    Volunteering       Conference Tourism
## 507                        Business          Widlife Tourism
## 508            Leisure and Holidays            Beach Tourism
## 509            Leisure and Holidays       Conference Tourism
## 510                        Business          Hunting Tourism
## 511            Leisure and Holidays             Bird Tourism
## 512            Leisure and Holidays          Widlife Tourism
## 513            Leisure and Holidays          Hunting Tourism
## 514                    Volunteering         Cultural Tourism
## 515            Leisure and Holidays         Wildlife Tourism
## 516            Leisure and Holidays       Conference Tourism
## 517            Leisure and Holidays         Wildlife Tourism
## 518            Leisure and Holidays            Beach Tourism
## 519         Meetings and Conference       Conference Tourism
## 520            Leisure and Holidays          Widlife Tourism
## 521            Leisure and Holidays          Widlife Tourism
## 522            Leisure and Holidays         Wildlife Tourism
## 523  Visiting Friends and Relatives            Beach Tourism
## 524            Leisure and Holidays       Conference Tourism
## 526            Leisure and Holidays          Widlife Tourism
## 527         Meetings and Conference          Hunting Tourism
## 528            Leisure and Holidays          Widlife Tourism
## 529            Leisure and Holidays            Beach Tourism
## 530         Scientific and Academic          Hunting Tourism
## 531            Leisure and Holidays            Beach Tourism
## 532         Meetings and Conference       Conference Tourism
## 533            Leisure and Holidays          Widlife Tourism
## 534            Leisure and Holidays       Conference Tourism
## 535            Leisure and Holidays       Conference Tourism
## 536            Leisure and Holidays       Conference Tourism
## 537            Leisure and Holidays          Widlife Tourism
## 538            Leisure and Holidays            Beach Tourism
## 539            Leisure and Holidays          Widlife Tourism
## 540            Leisure and Holidays          Widlife Tourism
## 541            Leisure and Holidays          Widlife Tourism
## 542         Meetings and Conference         Cultural Tourism
## 543            Leisure and Holidays       Conference Tourism
## 544            Leisure and Holidays       Conference Tourism
## 545            Leisure and Holidays          Widlife Tourism
## 546            Leisure and Holidays            Beach Tourism
## 547         Meetings and Conference          Hunting Tourism
## 548            Leisure and Holidays            Beach Tourism
## 549            Leisure and Holidays       Conference Tourism
## 550                        Business          Hunting Tourism
## 551         Meetings and Conference         Cultural Tourism
## 552         Meetings and Conference          Hunting Tourism
## 553            Leisure and Holidays          Widlife Tourism
## 554            Leisure and Holidays       Conference Tourism
## 555  Visiting Friends and Relatives          Widlife Tourism
## 556            Leisure and Holidays            Beach Tourism
## 557                        Business         Cultural Tourism
## 558            Leisure and Holidays          Widlife Tourism
## 559            Leisure and Holidays          Widlife Tourism
## 560            Leisure and Holidays          Widlife Tourism
## 561            Leisure and Holidays          Widlife Tourism
## 562            Leisure and Holidays         Wildlife Tourism
## 563            Leisure and Holidays          Widlife Tourism
## 564            Leisure and Holidays          Widlife Tourism
## 565            Leisure and Holidays          Widlife Tourism
## 566  Visiting Friends and Relatives            Beach Tourism
## 567            Leisure and Holidays          Widlife Tourism
## 568            Leisure and Holidays          Widlife Tourism
## 570            Leisure and Holidays          Widlife Tourism
## 571            Leisure and Holidays            Beach Tourism
## 572            Leisure and Holidays          Widlife Tourism
## 573            Leisure and Holidays         Cultural Tourism
## 574            Leisure and Holidays          Widlife Tourism
## 575            Leisure and Holidays          Widlife Tourism
## 576            Leisure and Holidays            Beach Tourism
## 577  Visiting Friends and Relatives          Hunting Tourism
## 578            Leisure and Holidays         Wildlife Tourism
## 579            Leisure and Holidays            Beach Tourism
## 581  Visiting Friends and Relatives          Hunting Tourism
## 582                        Business          Widlife Tourism
## 583            Leisure and Holidays          Widlife Tourism
## 584                        Business         Wildlife Tourism
## 585                           Other          Hunting Tourism
## 586            Leisure and Holidays            Beach Tourism
## 587            Leisure and Holidays            Beach Tourism
## 588                        Business          Widlife Tourism
## 589                        Business          Widlife Tourism
## 590            Leisure and Holidays         Cultural Tourism
## 591            Leisure and Holidays         Wildlife Tourism
## 592            Leisure and Holidays         Wildlife Tourism
## 593            Leisure and Holidays          Widlife Tourism
## 594            Leisure and Holidays             Bird Tourism
## 595                        Business         Wildlife Tourism
## 596            Leisure and Holidays       Conference Tourism
## 597                    Volunteering          Widlife Tourism
## 598            Leisure and Holidays          Widlife Tourism
## 599         Meetings and Conference        Mountain Climbing
## 600            Leisure and Holidays          Widlife Tourism
## 601            Leisure and Holidays          Widlife Tourism
## 602            Leisure and Holidays            Beach Tourism
## 603                        Business          Widlife Tourism
## 604            Leisure and Holidays            Beach Tourism
## 605            Leisure and Holidays          Widlife Tourism
## 606            Leisure and Holidays          Widlife Tourism
## 607            Leisure and Holidays         Wildlife Tourism
## 608            Leisure and Holidays          Widlife Tourism
## 609            Leisure and Holidays         Cultural Tourism
## 611            Leisure and Holidays       Conference Tourism
## 612                        Business          Widlife Tourism
## 613  Visiting Friends and Relatives         Cultural Tourism
## 614            Leisure and Holidays         Cultural Tourism
## 615  Visiting Friends and Relatives          Hunting Tourism
## 616            Leisure and Holidays         Wildlife Tourism
## 617                        Business          Widlife Tourism
## 618            Leisure and Holidays          Widlife Tourism
## 619         Meetings and Conference        Mountain Climbing
## 620            Leisure and Holidays       Conference Tourism
## 621            Leisure and Holidays            Beach Tourism
## 622            Leisure and Holidays         Wildlife Tourism
## 624            Leisure and Holidays          Widlife Tourism
## 625  Visiting Friends and Relatives         Cultural Tourism
## 626            Leisure and Holidays         Wildlife Tourism
## 627                        Business          Widlife Tourism
## 628         Scientific and Academic          Hunting Tourism
## 629            Leisure and Holidays          Widlife Tourism
## 631                        Business          Widlife Tourism
## 632  Visiting Friends and Relatives          Widlife Tourism
## 633                        Business          Widlife Tourism
## 634            Leisure and Holidays            Beach Tourism
## 635                        Business          Widlife Tourism
## 636            Leisure and Holidays       Conference Tourism
## 638            Leisure and Holidays            Beach Tourism
## 639            Leisure and Holidays         Wildlife Tourism
## 640            Leisure and Holidays         Cultural Tourism
## 641                        Business            Beach Tourism
## 642                        Business          Widlife Tourism
## 643            Leisure and Holidays          Widlife Tourism
## 644            Leisure and Holidays       Conference Tourism
## 645            Leisure and Holidays          Widlife Tourism
## 646            Leisure and Holidays          Widlife Tourism
## 647            Leisure and Holidays          Widlife Tourism
## 648            Leisure and Holidays       Conference Tourism
## 649            Leisure and Holidays            Beach Tourism
## 650            Leisure and Holidays            Beach Tourism
## 651                        Business         Wildlife Tourism
## 652            Leisure and Holidays          Widlife Tourism
## 653            Leisure and Holidays            Beach Tourism
## 654            Leisure and Holidays            Beach Tourism
## 655            Leisure and Holidays            Beach Tourism
## 656            Leisure and Holidays         Wildlife Tourism
## 657            Leisure and Holidays          Widlife Tourism
## 658            Leisure and Holidays            Beach Tourism
## 659            Leisure and Holidays          Widlife Tourism
## 660                        Business          Widlife Tourism
## 661                        Business          Hunting Tourism
## 662                        Business            Beach Tourism
## 663            Leisure and Holidays          Widlife Tourism
## 664         Meetings and Conference        Mountain Climbing
## 665  Visiting Friends and Relatives            Beach Tourism
## 666  Visiting Friends and Relatives            Beach Tourism
## 667            Leisure and Holidays         Cultural Tourism
## 669                        Business          Widlife Tourism
## 670            Leisure and Holidays            Beach Tourism
## 671            Leisure and Holidays         Cultural Tourism
## 672            Leisure and Holidays          Widlife Tourism
## 673            Leisure and Holidays         Wildlife Tourism
## 674            Leisure and Holidays         Wildlife Tourism
## 675            Leisure and Holidays          Hunting Tourism
## 676            Leisure and Holidays          Widlife Tourism
## 677            Leisure and Holidays         Wildlife Tourism
## 678  Visiting Friends and Relatives         Cultural Tourism
## 679            Leisure and Holidays         Wildlife Tourism
## 680         Scientific and Academic          Widlife Tourism
## 681            Leisure and Holidays          Widlife Tourism
## 682  Visiting Friends and Relatives         Cultural Tourism
## 683                        Business          Hunting Tourism
## 684            Leisure and Holidays          Widlife Tourism
## 685            Leisure and Holidays       Conference Tourism
## 686                        Business          Hunting Tourism
## 688            Leisure and Holidays       Conference Tourism
## 690            Leisure and Holidays          Widlife Tourism
## 691            Leisure and Holidays          Widlife Tourism
## 692            Leisure and Holidays          Widlife Tourism
## 693  Visiting Friends and Relatives            Beach Tourism
## 694            Leisure and Holidays       Conference Tourism
## 695            Leisure and Holidays          Widlife Tourism
## 696            Leisure and Holidays            Beach Tourism
## 697            Leisure and Holidays            Beach Tourism
## 698            Leisure and Holidays          Widlife Tourism
## 699            Leisure and Holidays       Conference Tourism
## 700            Leisure and Holidays          Widlife Tourism
## 701                        Business            Beach Tourism
## 702                        Business          Hunting Tourism
## 703            Leisure and Holidays       Conference Tourism
## 704         Scientific and Academic       Conference Tourism
## 705            Leisure and Holidays         Cultural Tourism
## 706  Visiting Friends and Relatives             Bird Tourism
## 707            Leisure and Holidays            Beach Tourism
## 708  Visiting Friends and Relatives            Beach Tourism
## 709            Leisure and Holidays          Widlife Tourism
## 710            Leisure and Holidays       Conference Tourism
## 711                    Volunteering                 Business
## 712            Leisure and Holidays          Widlife Tourism
## 713  Visiting Friends and Relatives          Hunting Tourism
## 714            Leisure and Holidays         Wildlife Tourism
## 715                    Volunteering          Widlife Tourism
## 716            Leisure and Holidays            Beach Tourism
## 717  Visiting Friends and Relatives            Beach Tourism
## 718            Leisure and Holidays            Beach Tourism
## 719         Meetings and Conference        Mountain Climbing
## 720            Leisure and Holidays          Widlife Tourism
## 721            Leisure and Holidays          Widlife Tourism
## 722            Leisure and Holidays          Widlife Tourism
## 723            Leisure and Holidays          Widlife Tourism
## 724  Visiting Friends and Relatives          Hunting Tourism
## 725            Leisure and Holidays            Beach Tourism
## 726            Leisure and Holidays            Beach Tourism
## 727                        Business            Beach Tourism
## 728         Scientific and Academic          Widlife Tourism
## 729            Leisure and Holidays            Beach Tourism
## 731            Leisure and Holidays          Widlife Tourism
## 732                        Business          Hunting Tourism
## 733            Leisure and Holidays         Wildlife Tourism
## 734            Leisure and Holidays          Widlife Tourism
## 735            Leisure and Holidays         Cultural Tourism
## 737  Visiting Friends and Relatives            Beach Tourism
## 738            Leisure and Holidays          Widlife Tourism
## 739  Visiting Friends and Relatives         Wildlife Tourism
## 741            Leisure and Holidays         Cultural Tourism
## 742            Leisure and Holidays          Widlife Tourism
## 743  Visiting Friends and Relatives          Hunting Tourism
## 744                        Business          Hunting Tourism
## 745            Leisure and Holidays       Conference Tourism
## 746            Leisure and Holidays          Widlife Tourism
## 747            Leisure and Holidays            Beach Tourism
## 748            Leisure and Holidays            Beach Tourism
## 749            Leisure and Holidays          Widlife Tourism
## 750  Visiting Friends and Relatives            Beach Tourism
## 751            Leisure and Holidays          Widlife Tourism
## 752         Meetings and Conference          Widlife Tourism
## 753            Leisure and Holidays            Beach Tourism
## 754            Leisure and Holidays       Conference Tourism
## 755         Meetings and Conference        Mountain Climbing
## 756  Visiting Friends and Relatives          Hunting Tourism
## 757            Leisure and Holidays         Cultural Tourism
## 758            Leisure and Holidays          Widlife Tourism
## 759            Leisure and Holidays            Beach Tourism
## 760            Leisure and Holidays         Cultural Tourism
## 761            Leisure and Holidays       Conference Tourism
## 762            Leisure and Holidays       Conference Tourism
## 763            Leisure and Holidays       Conference Tourism
## 764  Visiting Friends and Relatives                 Business
## 765  Visiting Friends and Relatives         Cultural Tourism
## 766            Leisure and Holidays       Conference Tourism
## 767            Leisure and Holidays       Conference Tourism
## 768            Leisure and Holidays         Cultural Tourism
## 769            Leisure and Holidays          Widlife Tourism
## 770            Leisure and Holidays       Conference Tourism
## 771                    Volunteering          Hunting Tourism
## 772            Leisure and Holidays          Widlife Tourism
## 773                        Business          Widlife Tourism
## 774                        Business          Hunting Tourism
## 775                    Volunteering         Wildlife Tourism
## 776            Leisure and Holidays            Beach Tourism
## 777  Visiting Friends and Relatives          Hunting Tourism
## 778            Leisure and Holidays         Wildlife Tourism
## 779            Leisure and Holidays            Beach Tourism
## 780            Leisure and Holidays          Widlife Tourism
## 781            Leisure and Holidays          Widlife Tourism
## 782            Leisure and Holidays          Widlife Tourism
## 783            Leisure and Holidays            Beach Tourism
## 784            Leisure and Holidays          Widlife Tourism
## 785            Leisure and Holidays          Widlife Tourism
## 786            Leisure and Holidays          Widlife Tourism
## 787            Leisure and Holidays            Beach Tourism
## 788            Leisure and Holidays          Widlife Tourism
## 789            Leisure and Holidays            Beach Tourism
## 790            Leisure and Holidays          Widlife Tourism
## 791            Leisure and Holidays            Beach Tourism
## 792            Leisure and Holidays          Widlife Tourism
## 793                    Volunteering          Widlife Tourism
## 794            Leisure and Holidays          Widlife Tourism
## 795            Leisure and Holidays          Widlife Tourism
## 797  Visiting Friends and Relatives            Beach Tourism
## 798            Leisure and Holidays            Beach Tourism
## 799            Leisure and Holidays            Beach Tourism
## 800            Leisure and Holidays         Cultural Tourism
## 801  Visiting Friends and Relatives            Beach Tourism
## 802            Leisure and Holidays          Widlife Tourism
## 803            Leisure and Holidays            Beach Tourism
## 804            Leisure and Holidays          Widlife Tourism
## 805            Leisure and Holidays          Widlife Tourism
## 806                    Volunteering            Beach Tourism
## 807         Meetings and Conference        Mountain Climbing
## 808            Leisure and Holidays          Widlife Tourism
## 809            Leisure and Holidays            Beach Tourism
## 810            Leisure and Holidays            Beach Tourism
## 811                        Business       Conference Tourism
## 812            Leisure and Holidays            Beach Tourism
## 814  Visiting Friends and Relatives          Hunting Tourism
## 815  Visiting Friends and Relatives          Widlife Tourism
## 816         Meetings and Conference         Cultural Tourism
## 817            Leisure and Holidays            Beach Tourism
## 818            Leisure and Holidays       Conference Tourism
## 820            Leisure and Holidays         Wildlife Tourism
## 821            Leisure and Holidays          Widlife Tourism
## 822            Leisure and Holidays            Beach Tourism
## 823            Leisure and Holidays         Cultural Tourism
## 824                        Business             Bird Tourism
## 825            Leisure and Holidays            Beach Tourism
## 826            Leisure and Holidays         Wildlife Tourism
## 827  Visiting Friends and Relatives            Beach Tourism
## 828            Leisure and Holidays          Widlife Tourism
## 829            Leisure and Holidays         Cultural Tourism
## 831  Visiting Friends and Relatives            Beach Tourism
## 832            Leisure and Holidays       Conference Tourism
## 833  Visiting Friends and Relatives         Cultural Tourism
## 834         Meetings and Conference       Conference Tourism
## 835            Leisure and Holidays          Widlife Tourism
## 836            Leisure and Holidays         Cultural Tourism
## 837            Leisure and Holidays          Widlife Tourism
## 838            Leisure and Holidays         Wildlife Tourism
## 839         Meetings and Conference          Widlife Tourism
## 841  Visiting Friends and Relatives            Beach Tourism
## 842                        Business         Wildlife Tourism
## 845            Leisure and Holidays          Widlife Tourism
## 846            Leisure and Holidays         Cultural Tourism
## 847            Leisure and Holidays          Widlife Tourism
## 848         Meetings and Conference       Conference Tourism
## 849            Leisure and Holidays            Beach Tourism
## 850                        Business            Beach Tourism
## 851            Leisure and Holidays          Widlife Tourism
## 852            Leisure and Holidays          Widlife Tourism
## 853                        Business            Beach Tourism
## 854                        Business         Wildlife Tourism
## 855  Visiting Friends and Relatives         Wildlife Tourism
## 856            Leisure and Holidays          Widlife Tourism
## 857            Leisure and Holidays          Hunting Tourism
## 858            Leisure and Holidays          Widlife Tourism
## 859            Leisure and Holidays       Conference Tourism
## 860            Leisure and Holidays         Cultural Tourism
## 861            Leisure and Holidays          Widlife Tourism
## 862  Visiting Friends and Relatives            Beach Tourism
## 863            Leisure and Holidays          Widlife Tourism
## 864            Leisure and Holidays          Widlife Tourism
## 865            Leisure and Holidays            Beach Tourism
## 866         Meetings and Conference        Mountain Climbing
## 867  Visiting Friends and Relatives            Beach Tourism
## 868            Leisure and Holidays          Widlife Tourism
## 869                        Business         Wildlife Tourism
## 870            Leisure and Holidays         Cultural Tourism
## 871  Visiting Friends and Relatives          Widlife Tourism
## 872            Leisure and Holidays         Wildlife Tourism
## 873            Leisure and Holidays            Beach Tourism
## 874            Leisure and Holidays          Widlife Tourism
## 875            Leisure and Holidays          Widlife Tourism
## 876                        Business         Wildlife Tourism
## 877  Visiting Friends and Relatives          Hunting Tourism
## 878  Visiting Friends and Relatives            Beach Tourism
## 879            Leisure and Holidays            Beach Tourism
## 880            Leisure and Holidays          Widlife Tourism
## 881  Visiting Friends and Relatives          Hunting Tourism
## 882            Leisure and Holidays          Widlife Tourism
## 883            Leisure and Holidays            Beach Tourism
## 885            Leisure and Holidays          Widlife Tourism
## 886            Leisure and Holidays         Wildlife Tourism
## 887  Visiting Friends and Relatives            Beach Tourism
## 889  Visiting Friends and Relatives          Hunting Tourism
## 890            Leisure and Holidays          Widlife Tourism
## 891            Leisure and Holidays          Widlife Tourism
## 892         Meetings and Conference        Mountain Climbing
## 893                        Business         Wildlife Tourism
## 894            Leisure and Holidays          Widlife Tourism
## 895  Visiting Friends and Relatives            Beach Tourism
## 896            Leisure and Holidays          Widlife Tourism
## 897            Leisure and Holidays          Widlife Tourism
## 898  Visiting Friends and Relatives         Cultural Tourism
## 899                        Business          Widlife Tourism
## 900  Visiting Friends and Relatives            Beach Tourism
## 902  Visiting Friends and Relatives          Widlife Tourism
## 903            Leisure and Holidays            Beach Tourism
## 904            Leisure and Holidays            Beach Tourism
## 905                        Business            Beach Tourism
## 906            Leisure and Holidays            Beach Tourism
## 907            Leisure and Holidays       Conference Tourism
## 908            Leisure and Holidays             Bird Tourism
## 909            Leisure and Holidays            Beach Tourism
## 910                           Other        Mountain Climbing
## 911            Leisure and Holidays         Wildlife Tourism
## 912         Scientific and Academic          Hunting Tourism
## 913            Leisure and Holidays         Wildlife Tourism
## 914            Leisure and Holidays          Widlife Tourism
## 915         Meetings and Conference          Widlife Tourism
## 916                    Volunteering          Widlife Tourism
## 917  Visiting Friends and Relatives            Beach Tourism
## 918            Leisure and Holidays         Wildlife Tourism
## 919                        Business            Beach Tourism
## 920            Leisure and Holidays            Beach Tourism
## 921            Leisure and Holidays            Beach Tourism
## 922            Leisure and Holidays          Widlife Tourism
## 923            Leisure and Holidays          Widlife Tourism
## 924            Leisure and Holidays          Widlife Tourism
## 925            Leisure and Holidays            Beach Tourism
## 926                        Business          Widlife Tourism
## 927            Leisure and Holidays          Widlife Tourism
## 928            Leisure and Holidays          Widlife Tourism
## 929            Leisure and Holidays         Wildlife Tourism
## 930            Leisure and Holidays         Cultural Tourism
## 931            Leisure and Holidays       Conference Tourism
## 932                        Business          Widlife Tourism
## 933         Meetings and Conference        Mountain Climbing
## 934            Leisure and Holidays          Widlife Tourism
## 935  Visiting Friends and Relatives         Cultural Tourism
## 936            Leisure and Holidays         Wildlife Tourism
## 937            Leisure and Holidays          Widlife Tourism
## 938            Leisure and Holidays            Beach Tourism
## 939                           Other          Hunting Tourism
## 940  Visiting Friends and Relatives            Beach Tourism
## 941            Leisure and Holidays            Beach Tourism
## 942                        Business            Beach Tourism
## 943            Leisure and Holidays          Widlife Tourism
## 945            Leisure and Holidays          Widlife Tourism
## 946                        Business            Beach Tourism
## 947            Leisure and Holidays            Beach Tourism
## 948            Leisure and Holidays            Beach Tourism
## 950            Leisure and Holidays            Beach Tourism
## 951            Leisure and Holidays          Widlife Tourism
## 952         Meetings and Conference        Mountain Climbing
## 953            Leisure and Holidays          Widlife Tourism
## 954            Leisure and Holidays          Widlife Tourism
## 955  Visiting Friends and Relatives         Cultural Tourism
## 956         Meetings and Conference        Mountain Climbing
## 957  Visiting Friends and Relatives            Beach Tourism
## 958                        Business            Beach Tourism
## 959            Leisure and Holidays          Widlife Tourism
## 960            Leisure and Holidays          Widlife Tourism
## 961            Leisure and Holidays          Widlife Tourism
## 962                    Volunteering        Mountain Climbing
## 963                           Other       Conference Tourism
## 964            Leisure and Holidays          Widlife Tourism
## 965         Meetings and Conference          Widlife Tourism
## 966            Leisure and Holidays          Widlife Tourism
## 967            Leisure and Holidays          Widlife Tourism
## 968                        Business         Cultural Tourism
## 969                        Business         Wildlife Tourism
## 970            Leisure and Holidays            Beach Tourism
## 971            Leisure and Holidays          Widlife Tourism
## 972            Leisure and Holidays          Widlife Tourism
## 973         Scientific and Academic          Widlife Tourism
## 974            Leisure and Holidays          Widlife Tourism
## 975            Leisure and Holidays       Conference Tourism
## 976            Leisure and Holidays         Cultural Tourism
## 977            Leisure and Holidays            Beach Tourism
## 978            Leisure and Holidays          Widlife Tourism
## 979  Visiting Friends and Relatives          Hunting Tourism
## 980            Leisure and Holidays            Beach Tourism
## 981            Leisure and Holidays            Beach Tourism
## 982            Leisure and Holidays          Widlife Tourism
## 983            Leisure and Holidays            Beach Tourism
## 985                        Business                 Business
## 986            Leisure and Holidays         Wildlife Tourism
## 987            Leisure and Holidays            Beach Tourism
## 989            Leisure and Holidays            Beach Tourism
## 990            Leisure and Holidays          Widlife Tourism
## 991            Leisure and Holidays       Conference Tourism
## 992                        Business          Hunting Tourism
## 993            Leisure and Holidays            Beach Tourism
## 994                        Business         Wildlife Tourism
## 995                        Business          Hunting Tourism
## 996            Leisure and Holidays         Wildlife Tourism
## 997            Leisure and Holidays          Widlife Tourism
## 998            Leisure and Holidays          Widlife Tourism
## 999                        Business          Hunting Tourism
## 1000           Leisure and Holidays          Widlife Tourism
## 1001           Leisure and Holidays          Widlife Tourism
## 1002           Leisure and Holidays            Beach Tourism
## 1003                       Business         Wildlife Tourism
## 1004           Leisure and Holidays            Beach Tourism
## 1005           Leisure and Holidays          Widlife Tourism
## 1006           Leisure and Holidays          Widlife Tourism
## 1007           Leisure and Holidays         Wildlife Tourism
## 1008                       Business         Cultural Tourism
## 1009           Leisure and Holidays         Wildlife Tourism
## 1010           Leisure and Holidays          Widlife Tourism
## 1011           Leisure and Holidays         Cultural Tourism
## 1012 Visiting Friends and Relatives         Cultural Tourism
## 1013           Leisure and Holidays            Beach Tourism
## 1014           Leisure and Holidays          Widlife Tourism
## 1016           Leisure and Holidays            Beach Tourism
## 1017           Leisure and Holidays          Widlife Tourism
## 1018 Visiting Friends and Relatives          Widlife Tourism
## 1019 Visiting Friends and Relatives          Widlife Tourism
## 1020           Leisure and Holidays            Beach Tourism
## 1021                       Business       Conference Tourism
## 1022           Leisure and Holidays         Wildlife Tourism
## 1023           Leisure and Holidays                 Business
## 1024           Leisure and Holidays          Widlife Tourism
## 1026                       Business          Hunting Tourism
## 1027           Leisure and Holidays            Beach Tourism
## 1028           Leisure and Holidays          Widlife Tourism
## 1029           Leisure and Holidays       Conference Tourism
## 1030 Visiting Friends and Relatives          Hunting Tourism
## 1032        Meetings and Conference        Mountain Climbing
## 1033                       Business          Hunting Tourism
## 1034        Meetings and Conference             Bird Tourism
## 1035           Leisure and Holidays            Beach Tourism
## 1036 Visiting Friends and Relatives          Hunting Tourism
## 1037           Leisure and Holidays          Widlife Tourism
## 1038           Leisure and Holidays            Beach Tourism
## 1040                       Business          Widlife Tourism
## 1041           Leisure and Holidays          Widlife Tourism
## 1042           Leisure and Holidays          Widlife Tourism
## 1043           Leisure and Holidays          Widlife Tourism
## 1044           Leisure and Holidays          Widlife Tourism
## 1045 Visiting Friends and Relatives         Cultural Tourism
## 1046           Leisure and Holidays            Beach Tourism
## 1047           Leisure and Holidays       Conference Tourism
## 1048           Leisure and Holidays         Cultural Tourism
## 1049        Meetings and Conference        Mountain Climbing
## 1050        Scientific and Academic          Widlife Tourism
## 1051           Leisure and Holidays          Widlife Tourism
## 1052           Leisure and Holidays            Beach Tourism
## 1054           Leisure and Holidays          Widlife Tourism
## 1055 Visiting Friends and Relatives          Widlife Tourism
## 1056           Leisure and Holidays          Widlife Tourism
## 1057           Leisure and Holidays            Beach Tourism
## 1058           Leisure and Holidays          Widlife Tourism
## 1059           Leisure and Holidays       Conference Tourism
## 1060 Visiting Friends and Relatives          Hunting Tourism
## 1061           Leisure and Holidays       Conference Tourism
## 1062           Leisure and Holidays            Beach Tourism
## 1063           Leisure and Holidays            Beach Tourism
## 1065           Leisure and Holidays          Hunting Tourism
## 1066        Meetings and Conference          Hunting Tourism
## 1067 Visiting Friends and Relatives         Cultural Tourism
## 1068           Leisure and Holidays          Widlife Tourism
## 1069                       Business       Conference Tourism
## 1070           Leisure and Holidays          Widlife Tourism
## 1071           Leisure and Holidays            Beach Tourism
## 1072           Leisure and Holidays            Beach Tourism
## 1073 Visiting Friends and Relatives            Beach Tourism
## 1074           Leisure and Holidays       Conference Tourism
## 1075           Leisure and Holidays          Widlife Tourism
## 1076        Meetings and Conference          Widlife Tourism
## 1077           Leisure and Holidays            Beach Tourism
## 1078           Leisure and Holidays            Beach Tourism
## 1079           Leisure and Holidays       Conference Tourism
## 1080 Visiting Friends and Relatives         Wildlife Tourism
## 1081           Leisure and Holidays         Wildlife Tourism
## 1082           Leisure and Holidays          Widlife Tourism
## 1083           Leisure and Holidays            Beach Tourism
## 1084           Leisure and Holidays         Cultural Tourism
## 1085 Visiting Friends and Relatives         Cultural Tourism
## 1087           Leisure and Holidays         Wildlife Tourism
## 1088           Leisure and Holidays            Beach Tourism
## 1091           Leisure and Holidays            Beach Tourism
## 1092                       Business        Mountain Climbing
## 1093                       Business Diving and Sport Fishing
## 1094           Leisure and Holidays       Conference Tourism
## 1095                   Volunteering       Conference Tourism
## 1096           Leisure and Holidays         Cultural Tourism
## 1098                       Business          Hunting Tourism
## 1099           Leisure and Holidays            Beach Tourism
## 1100           Leisure and Holidays       Conference Tourism
## 1101           Leisure and Holidays          Widlife Tourism
## 1102           Leisure and Holidays         Cultural Tourism
## 1103           Leisure and Holidays          Widlife Tourism
## 1104                       Business          Widlife Tourism
## 1105           Leisure and Holidays            Beach Tourism
## 1106           Leisure and Holidays         Wildlife Tourism
## 1108                       Business          Hunting Tourism
## 1109           Leisure and Holidays            Beach Tourism
## 1110                          Other          Hunting Tourism
## 1111 Visiting Friends and Relatives            Beach Tourism
## 1112           Leisure and Holidays          Widlife Tourism
## 1113           Leisure and Holidays          Widlife Tourism
## 1114           Leisure and Holidays          Hunting Tourism
## 1115                       Business         Wildlife Tourism
## 1116           Leisure and Holidays         Cultural Tourism
## 1117           Leisure and Holidays          Widlife Tourism
## 1118           Leisure and Holidays          Widlife Tourism
## 1120                       Business         Wildlife Tourism
## 1121           Leisure and Holidays         Wildlife Tourism
## 1122                       Business          Hunting Tourism
## 1123           Leisure and Holidays            Beach Tourism
## 1124                       Business            Beach Tourism
## 1125 Visiting Friends and Relatives            Beach Tourism
## 1126           Leisure and Holidays          Widlife Tourism
## 1127                       Business         Cultural Tourism
## 1128 Visiting Friends and Relatives         Cultural Tourism
## 1129 Visiting Friends and Relatives          Widlife Tourism
## 1130           Leisure and Holidays            Beach Tourism
## 1131           Leisure and Holidays          Hunting Tourism
## 1132                   Volunteering          Widlife Tourism
## 1133           Leisure and Holidays          Widlife Tourism
## 1134           Leisure and Holidays            Beach Tourism
## 1135           Leisure and Holidays          Widlife Tourism
## 1136                       Business            Beach Tourism
## 1137                       Business         Wildlife Tourism
## 1138           Leisure and Holidays          Widlife Tourism
## 1139           Leisure and Holidays         Wildlife Tourism
## 1140           Leisure and Holidays       Conference Tourism
## 1141           Leisure and Holidays          Widlife Tourism
## 1142           Leisure and Holidays         Cultural Tourism
## 1143           Leisure and Holidays          Widlife Tourism
## 1144           Leisure and Holidays          Widlife Tourism
## 1146           Leisure and Holidays          Widlife Tourism
## 1147                       Business          Widlife Tourism
## 1148           Leisure and Holidays         Wildlife Tourism
## 1149           Leisure and Holidays          Widlife Tourism
## 1150           Leisure and Holidays            Beach Tourism
## 1151           Leisure and Holidays         Wildlife Tourism
## 1152 Visiting Friends and Relatives            Beach Tourism
## 1153           Leisure and Holidays       Conference Tourism
## 1154                       Business        Mountain Climbing
## 1155                       Business          Hunting Tourism
## 1156           Leisure and Holidays          Widlife Tourism
## 1157           Leisure and Holidays          Widlife Tourism
## 1158           Leisure and Holidays          Widlife Tourism
## 1159           Leisure and Holidays          Widlife Tourism
## 1160           Leisure and Holidays          Widlife Tourism
## 1161           Leisure and Holidays       Conference Tourism
## 1162 Visiting Friends and Relatives          Hunting Tourism
## 1163           Leisure and Holidays                 Business
## 1164           Leisure and Holidays          Widlife Tourism
## 1165           Leisure and Holidays          Widlife Tourism
## 1166 Visiting Friends and Relatives         Cultural Tourism
## 1167           Leisure and Holidays          Widlife Tourism
## 1168           Leisure and Holidays         Cultural Tourism
## 1169           Leisure and Holidays          Widlife Tourism
## 1170 Visiting Friends and Relatives          Widlife Tourism
## 1172 Visiting Friends and Relatives          Hunting Tourism
## 1173 Visiting Friends and Relatives          Hunting Tourism
## 1175           Leisure and Holidays          Widlife Tourism
## 1177 Visiting Friends and Relatives          Widlife Tourism
## 1178           Leisure and Holidays            Beach Tourism
## 1179           Leisure and Holidays       Conference Tourism
## 1180           Leisure and Holidays         Cultural Tourism
## 1181           Leisure and Holidays          Widlife Tourism
## 1182                       Business          Hunting Tourism
## 1184           Leisure and Holidays          Widlife Tourism
## 1185        Meetings and Conference            Beach Tourism
## 1186           Leisure and Holidays         Cultural Tourism
## 1187        Meetings and Conference       Conference Tourism
## 1189           Leisure and Holidays       Conference Tourism
## 1190        Meetings and Conference          Widlife Tourism
## 1191           Leisure and Holidays         Wildlife Tourism
## 1192           Leisure and Holidays          Widlife Tourism
## 1193        Meetings and Conference            Beach Tourism
## 1194 Visiting Friends and Relatives         Cultural Tourism
## 1196           Leisure and Holidays          Widlife Tourism
## 1197                   Volunteering            Beach Tourism
## 1198           Leisure and Holidays          Hunting Tourism
## 1199           Leisure and Holidays          Widlife Tourism
## 1200           Leisure and Holidays          Widlife Tourism
## 1201 Visiting Friends and Relatives         Cultural Tourism
## 1202           Leisure and Holidays          Widlife Tourism
## 1203           Leisure and Holidays                 Business
## 1204                          Other          Hunting Tourism
## 1205                       Business          Widlife Tourism
## 1206                       Business          Widlife Tourism
## 1207           Leisure and Holidays            Beach Tourism
## 1208           Leisure and Holidays            Beach Tourism
## 1209                       Business          Widlife Tourism
## 1210           Leisure and Holidays       Conference Tourism
## 1211           Leisure and Holidays          Widlife Tourism
## 1212                          Other       Conference Tourism
## 1213           Leisure and Holidays          Widlife Tourism
## 1214 Visiting Friends and Relatives          Hunting Tourism
## 1215           Leisure and Holidays          Widlife Tourism
## 1216 Visiting Friends and Relatives          Hunting Tourism
## 1217           Leisure and Holidays            Beach Tourism
## 1218        Meetings and Conference        Mountain Climbing
## 1221                       Business          Widlife Tourism
## 1223           Leisure and Holidays          Widlife Tourism
## 1224 Visiting Friends and Relatives          Hunting Tourism
## 1225           Leisure and Holidays          Widlife Tourism
## 1227                       Business          Widlife Tourism
## 1228                          Other          Hunting Tourism
## 1229           Leisure and Holidays       Conference Tourism
## 1230           Leisure and Holidays          Widlife Tourism
## 1231           Leisure and Holidays       Conference Tourism
## 1232           Leisure and Holidays         Wildlife Tourism
## 1233           Leisure and Holidays            Beach Tourism
## 1234                       Business            Beach Tourism
## 1235                       Business          Widlife Tourism
## 1236           Leisure and Holidays         Wildlife Tourism
## 1237        Meetings and Conference         Wildlife Tourism
## 1238        Meetings and Conference       Conference Tourism
## 1239           Leisure and Holidays          Widlife Tourism
## 1240           Leisure and Holidays         Cultural Tourism
## 1241           Leisure and Holidays          Widlife Tourism
## 1242           Leisure and Holidays          Widlife Tourism
## 1243        Meetings and Conference          Hunting Tourism
## 1244           Leisure and Holidays          Widlife Tourism
## 1246                       Business          Widlife Tourism
## 1247           Leisure and Holidays            Beach Tourism
## 1248                       Business          Widlife Tourism
## 1249           Leisure and Holidays          Widlife Tourism
## 1250           Leisure and Holidays          Widlife Tourism
## 1251           Leisure and Holidays            Beach Tourism
## 1252           Leisure and Holidays            Beach Tourism
## 1253        Meetings and Conference         Cultural Tourism
## 1254           Leisure and Holidays          Widlife Tourism
## 1255        Meetings and Conference          Hunting Tourism
## 1256                       Business          Widlife Tourism
## 1257           Leisure and Holidays            Beach Tourism
## 1259           Leisure and Holidays          Widlife Tourism
## 1260 Visiting Friends and Relatives          Widlife Tourism
## 1261           Leisure and Holidays         Cultural Tourism
## 1262           Leisure and Holidays          Widlife Tourism
## 1263           Leisure and Holidays          Widlife Tourism
## 1264           Leisure and Holidays          Widlife Tourism
## 1265           Leisure and Holidays       Conference Tourism
## 1266                       Business         Wildlife Tourism
## 1267           Leisure and Holidays          Widlife Tourism
## 1268 Visiting Friends and Relatives          Widlife Tourism
## 1269           Leisure and Holidays          Widlife Tourism
## 1270                       Business            Beach Tourism
## 1271           Leisure and Holidays          Widlife Tourism
## 1272           Leisure and Holidays          Widlife Tourism
## 1273           Leisure and Holidays          Widlife Tourism
## 1275           Leisure and Holidays          Widlife Tourism
## 1276           Leisure and Holidays          Widlife Tourism
## 1277           Leisure and Holidays         Wildlife Tourism
## 1278           Leisure and Holidays          Widlife Tourism
## 1279           Leisure and Holidays            Beach Tourism
## 1280           Leisure and Holidays       Conference Tourism
## 1281           Leisure and Holidays          Widlife Tourism
## 1282           Leisure and Holidays          Widlife Tourism
## 1283           Leisure and Holidays          Widlife Tourism
## 1284           Leisure and Holidays         Wildlife Tourism
## 1285           Leisure and Holidays            Beach Tourism
## 1286           Leisure and Holidays          Widlife Tourism
## 1287           Leisure and Holidays          Widlife Tourism
## 1288 Visiting Friends and Relatives         Wildlife Tourism
## 1289           Leisure and Holidays       Conference Tourism
## 1290           Leisure and Holidays       Conference Tourism
## 1291           Leisure and Holidays         Cultural Tourism
## 1292           Leisure and Holidays          Widlife Tourism
## 1293           Leisure and Holidays          Hunting Tourism
## 1294           Leisure and Holidays          Widlife Tourism
## 1295           Leisure and Holidays          Widlife Tourism
## 1296           Leisure and Holidays          Widlife Tourism
## 1298 Visiting Friends and Relatives            Beach Tourism
## 1299           Leisure and Holidays            Beach Tourism
## 1300           Leisure and Holidays            Beach Tourism
## 1301           Leisure and Holidays          Widlife Tourism
## 1302           Leisure and Holidays          Widlife Tourism
## 1303 Visiting Friends and Relatives          Widlife Tourism
## 1304        Meetings and Conference            Beach Tourism
## 1305           Leisure and Holidays       Conference Tourism
## 1306                       Business         Wildlife Tourism
## 1307           Leisure and Holidays            Beach Tourism
## 1308           Leisure and Holidays          Widlife Tourism
## 1309           Leisure and Holidays         Wildlife Tourism
## 1310           Leisure and Holidays          Widlife Tourism
## 1311           Leisure and Holidays          Widlife Tourism
## 1312 Visiting Friends and Relatives          Hunting Tourism
## 1313           Leisure and Holidays          Widlife Tourism
## 1314        Meetings and Conference       Conference Tourism
## 1315           Leisure and Holidays         Wildlife Tourism
## 1316                       Business            Beach Tourism
## 1317           Leisure and Holidays            Beach Tourism
## 1318        Meetings and Conference       Conference Tourism
## 1319           Leisure and Holidays          Widlife Tourism
## 1320           Leisure and Holidays            Beach Tourism
## 1321           Leisure and Holidays         Cultural Tourism
## 1322           Leisure and Holidays         Cultural Tourism
## 1323           Leisure and Holidays         Wildlife Tourism
## 1324                       Business         Wildlife Tourism
## 1326           Leisure and Holidays          Widlife Tourism
## 1327           Leisure and Holidays          Widlife Tourism
## 1328           Leisure and Holidays       Conference Tourism
## 1330        Meetings and Conference       Conference Tourism
## 1331           Leisure and Holidays         Wildlife Tourism
## 1332           Leisure and Holidays         Wildlife Tourism
## 1333           Leisure and Holidays          Widlife Tourism
## 1334        Meetings and Conference          Widlife Tourism
## 1335 Visiting Friends and Relatives          Hunting Tourism
## 1336           Leisure and Holidays          Widlife Tourism
## 1337 Visiting Friends and Relatives         Cultural Tourism
## 1338           Leisure and Holidays         Cultural Tourism
## 1339           Leisure and Holidays          Widlife Tourism
## 1340 Visiting Friends and Relatives          Hunting Tourism
## 1341 Visiting Friends and Relatives             Bird Tourism
## 1342 Visiting Friends and Relatives            Beach Tourism
## 1343           Leisure and Holidays            Beach Tourism
## 1345 Visiting Friends and Relatives            Beach Tourism
## 1346           Leisure and Holidays       Conference Tourism
## 1347        Meetings and Conference          Widlife Tourism
## 1348           Leisure and Holidays            Beach Tourism
## 1349           Leisure and Holidays          Widlife Tourism
## 1350           Leisure and Holidays          Widlife Tourism
## 1351           Leisure and Holidays       Conference Tourism
## 1352           Leisure and Holidays         Cultural Tourism
## 1354           Leisure and Holidays          Widlife Tourism
## 1355           Leisure and Holidays         Cultural Tourism
## 1356 Visiting Friends and Relatives            Beach Tourism
## 1357           Leisure and Holidays            Beach Tourism
## 1358           Leisure and Holidays            Beach Tourism
## 1359           Leisure and Holidays          Widlife Tourism
## 1360           Leisure and Holidays            Beach Tourism
## 1361           Leisure and Holidays            Beach Tourism
## 1362                       Business         Cultural Tourism
## 1363           Leisure and Holidays          Widlife Tourism
## 1364           Leisure and Holidays       Conference Tourism
## 1365                       Business          Hunting Tourism
## 1366 Visiting Friends and Relatives            Beach Tourism
## 1367           Leisure and Holidays         Wildlife Tourism
## 1368           Leisure and Holidays            Beach Tourism
## 1369           Leisure and Holidays            Beach Tourism
## 1370           Leisure and Holidays            Beach Tourism
## 1371                       Business          Hunting Tourism
## 1372           Leisure and Holidays          Widlife Tourism
## 1373           Leisure and Holidays          Widlife Tourism
## 1374           Leisure and Holidays            Beach Tourism
## 1375 Visiting Friends and Relatives          Widlife Tourism
## 1376           Leisure and Holidays         Wildlife Tourism
## 1377           Leisure and Holidays            Beach Tourism
## 1379                       Business            Beach Tourism
## 1380                       Business          Widlife Tourism
## 1381           Leisure and Holidays          Widlife Tourism
## 1382           Leisure and Holidays          Widlife Tourism
## 1383        Meetings and Conference        Mountain Climbing
## 1385           Leisure and Holidays         Cultural Tourism
## 1386 Visiting Friends and Relatives          Hunting Tourism
## 1387        Scientific and Academic          Widlife Tourism
## 1388           Leisure and Holidays          Widlife Tourism
## 1389                       Business         Wildlife Tourism
## 1390        Meetings and Conference            Beach Tourism
## 1391                          Other       Conference Tourism
## 1392           Leisure and Holidays          Widlife Tourism
## 1393                       Business         Wildlife Tourism
## 1394                       Business         Wildlife Tourism
## 1395           Leisure and Holidays         Wildlife Tourism
## 1396        Meetings and Conference        Mountain Climbing
## 1397           Leisure and Holidays            Beach Tourism
## 1398           Leisure and Holidays          Widlife Tourism
## 1400           Leisure and Holidays          Widlife Tourism
## 1401           Leisure and Holidays       Conference Tourism
## 1402                       Business                 Business
## 1403           Leisure and Holidays          Widlife Tourism
## 1404           Leisure and Holidays            Beach Tourism
## 1405                       Business            Beach Tourism
## 1406                   Volunteering          Hunting Tourism
## 1407           Leisure and Holidays            Beach Tourism
## 1408           Leisure and Holidays        Mountain Climbing
## 1409                          Other            Beach Tourism
## 1410        Meetings and Conference        Mountain Climbing
## 1411           Leisure and Holidays          Widlife Tourism
## 1412           Leisure and Holidays            Beach Tourism
## 1413           Leisure and Holidays          Hunting Tourism
## 1414           Leisure and Holidays            Beach Tourism
## 1415           Leisure and Holidays          Widlife Tourism
## 1416                       Business            Beach Tourism
## 1417           Leisure and Holidays       Conference Tourism
## 1418           Leisure and Holidays            Beach Tourism
## 1420           Leisure and Holidays          Widlife Tourism
## 1421           Leisure and Holidays          Widlife Tourism
## 1422           Leisure and Holidays          Widlife Tourism
## 1423           Leisure and Holidays         Cultural Tourism
## 1424           Leisure and Holidays            Beach Tourism
## 1425                          Other          Hunting Tourism
## 1426           Leisure and Holidays          Widlife Tourism
## 1428           Leisure and Holidays          Widlife Tourism
## 1429           Leisure and Holidays          Widlife Tourism
## 1430                       Business          Hunting Tourism
## 1431                   Volunteering          Hunting Tourism
## 1432           Leisure and Holidays          Widlife Tourism
## 1433           Leisure and Holidays          Widlife Tourism
## 1434           Leisure and Holidays          Widlife Tourism
## 1435 Visiting Friends and Relatives          Hunting Tourism
## 1436           Leisure and Holidays            Beach Tourism
## 1437 Visiting Friends and Relatives            Beach Tourism
## 1438                       Business          Widlife Tourism
## 1439                       Business          Widlife Tourism
## 1441                       Business          Hunting Tourism
## 1442           Leisure and Holidays         Wildlife Tourism
## 1443           Leisure and Holidays            Beach Tourism
## 1444           Leisure and Holidays            Beach Tourism
## 1445           Leisure and Holidays          Widlife Tourism
## 1446           Leisure and Holidays            Beach Tourism
## 1447           Leisure and Holidays         Cultural Tourism
## 1448           Leisure and Holidays          Widlife Tourism
## 1449           Leisure and Holidays            Beach Tourism
## 1450           Leisure and Holidays          Widlife Tourism
## 1451           Leisure and Holidays          Hunting Tourism
## 1452           Leisure and Holidays          Widlife Tourism
## 1453 Visiting Friends and Relatives         Wildlife Tourism
## 1454           Leisure and Holidays            Beach Tourism
## 1455 Visiting Friends and Relatives          Hunting Tourism
## 1456           Leisure and Holidays       Conference Tourism
## 1457           Leisure and Holidays         Cultural Tourism
## 1458           Leisure and Holidays         Cultural Tourism
## 1459           Leisure and Holidays       Conference Tourism
## 1460 Visiting Friends and Relatives       Conference Tourism
## 1461                       Business         Wildlife Tourism
## 1462           Leisure and Holidays          Widlife Tourism
## 1463           Leisure and Holidays          Widlife Tourism
## 1464           Leisure and Holidays          Widlife Tourism
## 1465           Leisure and Holidays          Widlife Tourism
## 1466           Leisure and Holidays          Widlife Tourism
## 1467 Visiting Friends and Relatives         Cultural Tourism
## 1468           Leisure and Holidays         Wildlife Tourism
## 1469                       Business          Hunting Tourism
## 1470                       Business          Hunting Tourism
## 1471                       Business            Beach Tourism
## 1472           Leisure and Holidays          Widlife Tourism
## 1473           Leisure and Holidays         Wildlife Tourism
## 1474           Leisure and Holidays          Widlife Tourism
## 1475           Leisure and Holidays         Cultural Tourism
## 1476           Leisure and Holidays            Beach Tourism
## 1478                       Business          Widlife Tourism
## 1479           Leisure and Holidays          Widlife Tourism
## 1480           Leisure and Holidays          Widlife Tourism
## 1481           Leisure and Holidays          Widlife Tourism
## 1482                       Business         Wildlife Tourism
## 1483           Leisure and Holidays          Widlife Tourism
## 1484           Leisure and Holidays         Wildlife Tourism
## 1485           Leisure and Holidays            Beach Tourism
## 1486                          Other          Hunting Tourism
## 1487           Leisure and Holidays         Cultural Tourism
## 1488           Leisure and Holidays         Cultural Tourism
## 1490        Meetings and Conference          Widlife Tourism
## 1491           Leisure and Holidays         Cultural Tourism
## 1492           Leisure and Holidays         Wildlife Tourism
## 1493 Visiting Friends and Relatives          Widlife Tourism
## 1495        Meetings and Conference         Cultural Tourism
## 1496 Visiting Friends and Relatives            Beach Tourism
## 1497 Visiting Friends and Relatives            Beach Tourism
## 1498                       Business        Mountain Climbing
## 1499           Leisure and Holidays          Widlife Tourism
## 1500           Leisure and Holidays          Hunting Tourism
## 1501           Leisure and Holidays            Beach Tourism
## 1502           Leisure and Holidays          Widlife Tourism
## 1503           Leisure and Holidays            Beach Tourism
## 1504                       Business            Beach Tourism
## 1505           Leisure and Holidays          Widlife Tourism
## 1506        Scientific and Academic        Mountain Climbing
## 1507           Leisure and Holidays       Conference Tourism
## 1508           Leisure and Holidays            Beach Tourism
## 1509           Leisure and Holidays          Widlife Tourism
## 1511           Leisure and Holidays       Conference Tourism
## 1512           Leisure and Holidays         Wildlife Tourism
## 1513           Leisure and Holidays          Widlife Tourism
## 1514                   Volunteering         Cultural Tourism
## 1515           Leisure and Holidays         Wildlife Tourism
## 1516           Leisure and Holidays                 Business
## 1517 Visiting Friends and Relatives          Hunting Tourism
## 1518           Leisure and Holidays          Widlife Tourism
## 1519           Leisure and Holidays          Widlife Tourism
## 1520           Leisure and Holidays         Wildlife Tourism
## 1521 Visiting Friends and Relatives            Beach Tourism
## 1522           Leisure and Holidays            Beach Tourism
## 1523 Visiting Friends and Relatives         Cultural Tourism
## 1524        Meetings and Conference       Conference Tourism
## 1525           Leisure and Holidays          Widlife Tourism
## 1526 Visiting Friends and Relatives         Wildlife Tourism
## 1527           Leisure and Holidays          Widlife Tourism
## 1528 Visiting Friends and Relatives          Hunting Tourism
## 1529                       Business          Hunting Tourism
## 1530           Leisure and Holidays          Widlife Tourism
## 1531                   Volunteering            Beach Tourism
## 1532        Meetings and Conference         Cultural Tourism
## 1533                          Other          Hunting Tourism
## 1534        Meetings and Conference        Mountain Climbing
## 1536 Visiting Friends and Relatives          Widlife Tourism
## 1537           Leisure and Holidays            Beach Tourism
## 1538        Meetings and Conference        Mountain Climbing
## 1539           Leisure and Holidays       Conference Tourism
## 1540           Leisure and Holidays            Beach Tourism
## 1541 Visiting Friends and Relatives            Beach Tourism
## 1542           Leisure and Holidays          Widlife Tourism
## 1543           Leisure and Holidays          Widlife Tourism
## 1544                          Other          Hunting Tourism
## 1545 Visiting Friends and Relatives          Widlife Tourism
## 1546 Visiting Friends and Relatives            Beach Tourism
## 1547           Leisure and Holidays          Widlife Tourism
## 1548 Visiting Friends and Relatives          Hunting Tourism
## 1549           Leisure and Holidays          Widlife Tourism
## 1550           Leisure and Holidays          Widlife Tourism
## 1551           Leisure and Holidays          Widlife Tourism
## 1552           Leisure and Holidays          Widlife Tourism
## 1553           Leisure and Holidays            Beach Tourism
## 1554           Leisure and Holidays          Widlife Tourism
## 1555           Leisure and Holidays            Beach Tourism
## 1556                   Volunteering          Hunting Tourism
## 1557 Visiting Friends and Relatives       Conference Tourism
## 1558           Leisure and Holidays          Widlife Tourism
## 1559           Leisure and Holidays          Widlife Tourism
## 1560           Leisure and Holidays          Widlife Tourism
## 1561           Leisure and Holidays          Widlife Tourism
## 1562           Leisure and Holidays          Widlife Tourism
## 1564 Visiting Friends and Relatives          Hunting Tourism
## 1565        Meetings and Conference          Widlife Tourism
## 1566           Leisure and Holidays          Widlife Tourism
## 1567 Visiting Friends and Relatives          Hunting Tourism
## 1568           Leisure and Holidays          Widlife Tourism
## 1569           Leisure and Holidays         Wildlife Tourism
## 1570           Leisure and Holidays            Beach Tourism
## 1571           Leisure and Holidays       Conference Tourism
## 1574           Leisure and Holidays          Widlife Tourism
## 1575           Leisure and Holidays          Widlife Tourism
## 1576           Leisure and Holidays       Conference Tourism
## 1578           Leisure and Holidays            Beach Tourism
## 1579           Leisure and Holidays       Conference Tourism
## 1580           Leisure and Holidays            Beach Tourism
## 1581           Leisure and Holidays            Beach Tourism
## 1582                       Business          Widlife Tourism
## 1584                       Business          Widlife Tourism
## 1585           Leisure and Holidays          Widlife Tourism
## 1586           Leisure and Holidays            Beach Tourism
## 1587           Leisure and Holidays         Wildlife Tourism
## 1588                          Other          Hunting Tourism
## 1589           Leisure and Holidays            Beach Tourism
## 1590           Leisure and Holidays          Widlife Tourism
## 1591           Leisure and Holidays       Conference Tourism
## 1592           Leisure and Holidays         Wildlife Tourism
## 1593                   Volunteering            Beach Tourism
## 1594           Leisure and Holidays       Conference Tourism
## 1595                       Business          Hunting Tourism
## 1596           Leisure and Holidays            Beach Tourism
## 1597                       Business            Beach Tourism
## 1598        Scientific and Academic          Hunting Tourism
## 1600           Leisure and Holidays            Beach Tourism
## 1601           Leisure and Holidays         Wildlife Tourism
## 1602           Leisure and Holidays          Widlife Tourism
## 1603                       Business        Mountain Climbing
## 1604 Visiting Friends and Relatives          Hunting Tourism
## 1605           Leisure and Holidays          Widlife Tourism
## 1606           Leisure and Holidays          Widlife Tourism
## 1607           Leisure and Holidays          Widlife Tourism
## 1608           Leisure and Holidays            Beach Tourism
## 1609           Leisure and Holidays            Beach Tourism
## 1610           Leisure and Holidays         Wildlife Tourism
## 1611           Leisure and Holidays            Beach Tourism
## 1612           Leisure and Holidays          Widlife Tourism
## 1613           Leisure and Holidays       Conference Tourism
## 1614 Visiting Friends and Relatives         Wildlife Tourism
## 1615        Meetings and Conference         Cultural Tourism
## 1616           Leisure and Holidays         Cultural Tourism
## 1617           Leisure and Holidays            Beach Tourism
## 1618                       Business            Beach Tourism
## 1619           Leisure and Holidays            Beach Tourism
## 1620           Leisure and Holidays            Beach Tourism
## 1621           Leisure and Holidays          Widlife Tourism
## 1622                       Business          Hunting Tourism
## 1624 Visiting Friends and Relatives          Hunting Tourism
## 1625           Leisure and Holidays          Widlife Tourism
## 1626           Leisure and Holidays       Conference Tourism
## 1627                       Business          Hunting Tourism
## 1629                       Business            Beach Tourism
## 1630                   Volunteering          Widlife Tourism
## 1631           Leisure and Holidays         Cultural Tourism
## 1633        Meetings and Conference       Conference Tourism
## 1634           Leisure and Holidays          Widlife Tourism
## 1635           Leisure and Holidays            Beach Tourism
## 1636           Leisure and Holidays          Widlife Tourism
## 1637           Leisure and Holidays       Conference Tourism
## 1638           Leisure and Holidays            Beach Tourism
## 1640           Leisure and Holidays       Conference Tourism
## 1641           Leisure and Holidays          Widlife Tourism
## 1642 Visiting Friends and Relatives          Widlife Tourism
## 1643           Leisure and Holidays            Beach Tourism
## 1644                       Business          Widlife Tourism
## 1645           Leisure and Holidays          Hunting Tourism
## 1646                       Business         Wildlife Tourism
## 1647 Visiting Friends and Relatives          Hunting Tourism
## 1648           Leisure and Holidays       Conference Tourism
## 1649           Leisure and Holidays          Widlife Tourism
## 1651                       Business             Bird Tourism
## 1652           Leisure and Holidays            Beach Tourism
## 1653        Scientific and Academic         Wildlife Tourism
## 1654                       Business       Conference Tourism
## 1655           Leisure and Holidays          Widlife Tourism
## 1656           Leisure and Holidays          Widlife Tourism
## 1657           Leisure and Holidays                 Business
## 1658 Visiting Friends and Relatives            Beach Tourism
## 1659           Leisure and Holidays          Widlife Tourism
## 1662                       Business        Mountain Climbing
## 1663           Leisure and Holidays          Widlife Tourism
## 1664                       Business            Beach Tourism
## 1665           Leisure and Holidays          Widlife Tourism
## 1666           Leisure and Holidays            Beach Tourism
## 1667           Leisure and Holidays          Widlife Tourism
## 1669 Visiting Friends and Relatives         Cultural Tourism
## 1670        Scientific and Academic          Widlife Tourism
## 1671        Meetings and Conference        Mountain Climbing
## 1672           Leisure and Holidays            Beach Tourism
## 1673           Leisure and Holidays          Widlife Tourism
## 1674           Leisure and Holidays          Widlife Tourism
## 1675           Leisure and Holidays         Wildlife Tourism
## 1676           Leisure and Holidays            Beach Tourism
## 1677        Meetings and Conference            Beach Tourism
## 1678        Meetings and Conference        Mountain Climbing
## 1679                       Business       Conference Tourism
## 1680           Leisure and Holidays            Beach Tourism
## 1681           Leisure and Holidays       Conference Tourism
## 1682                       Business          Hunting Tourism
## 1683                       Business         Wildlife Tourism
## 1684           Leisure and Holidays         Wildlife Tourism
## 1685                       Business         Wildlife Tourism
## 1687 Visiting Friends and Relatives          Widlife Tourism
## 1688 Visiting Friends and Relatives            Beach Tourism
## 1689 Visiting Friends and Relatives            Beach Tourism
## 1690 Visiting Friends and Relatives            Beach Tourism
## 1691 Visiting Friends and Relatives            Beach Tourism
## 1692           Leisure and Holidays            Beach Tourism
## 1693           Leisure and Holidays          Widlife Tourism
## 1694                       Business            Beach Tourism
## 1695        Meetings and Conference       Conference Tourism
## 1696        Meetings and Conference          Widlife Tourism
## 1697        Meetings and Conference       Conference Tourism
## 1698           Leisure and Holidays          Widlife Tourism
## 1699           Leisure and Holidays       Conference Tourism
## 1700           Leisure and Holidays            Beach Tourism
## 1701           Leisure and Holidays         Wildlife Tourism
## 1702           Leisure and Holidays       Conference Tourism
## 1703           Leisure and Holidays            Beach Tourism
## 1704 Visiting Friends and Relatives         Cultural Tourism
## 1705 Visiting Friends and Relatives         Wildlife Tourism
## 1706           Leisure and Holidays            Beach Tourism
## 1707           Leisure and Holidays          Widlife Tourism
## 1708           Leisure and Holidays            Beach Tourism
## 1709           Leisure and Holidays            Beach Tourism
## 1710                   Volunteering          Widlife Tourism
## 1711           Leisure and Holidays          Widlife Tourism
## 1712                       Business         Wildlife Tourism
## 1713                   Volunteering            Beach Tourism
## 1714        Meetings and Conference       Conference Tourism
## 1715                       Business          Widlife Tourism
## 1716                          Other          Hunting Tourism
## 1717           Leisure and Holidays         Wildlife Tourism
## 1718        Meetings and Conference         Cultural Tourism
## 1719           Leisure and Holidays       Conference Tourism
## 1720                       Business         Wildlife Tourism
## 1721                       Business             Bird Tourism
## 1723                       Business          Hunting Tourism
## 1724           Leisure and Holidays          Widlife Tourism
## 1725        Meetings and Conference         Wildlife Tourism
## 1726           Leisure and Holidays          Widlife Tourism
## 1727           Leisure and Holidays          Widlife Tourism
## 1728           Leisure and Holidays            Beach Tourism
## 1729           Leisure and Holidays          Widlife Tourism
## 1730           Leisure and Holidays         Wildlife Tourism
## 1731           Leisure and Holidays          Widlife Tourism
## 1732 Visiting Friends and Relatives          Hunting Tourism
## 1733 Visiting Friends and Relatives          Hunting Tourism
## 1734                       Business          Widlife Tourism
## 1735           Leisure and Holidays          Widlife Tourism
## 1736           Leisure and Holidays            Beach Tourism
## 1737                          Other          Hunting Tourism
## 1738                       Business        Mountain Climbing
## 1739           Leisure and Holidays       Conference Tourism
## 1740        Meetings and Conference        Mountain Climbing
## 1741                       Business            Beach Tourism
## 1742 Visiting Friends and Relatives          Hunting Tourism
## 1743           Leisure and Holidays       Conference Tourism
## 1744           Leisure and Holidays            Beach Tourism
## 1745           Leisure and Holidays            Beach Tourism
## 1746           Leisure and Holidays          Widlife Tourism
## 1747           Leisure and Holidays         Wildlife Tourism
## 1748                       Business          Widlife Tourism
## 1749           Leisure and Holidays          Widlife Tourism
## 1750           Leisure and Holidays         Wildlife Tourism
## 1751                       Business         Wildlife Tourism
## 1752        Meetings and Conference            Beach Tourism
## 1753           Leisure and Holidays            Beach Tourism
## 1754           Leisure and Holidays       Conference Tourism
## 1756           Leisure and Holidays          Widlife Tourism
## 1757           Leisure and Holidays         Wildlife Tourism
## 1758           Leisure and Holidays       Conference Tourism
## 1759 Visiting Friends and Relatives         Cultural Tourism
## 1760           Leisure and Holidays         Wildlife Tourism
## 1761           Leisure and Holidays            Beach Tourism
## 1762           Leisure and Holidays            Beach Tourism
## 1763        Meetings and Conference          Widlife Tourism
## 1764                       Business          Hunting Tourism
## 1765 Visiting Friends and Relatives          Hunting Tourism
## 1766 Visiting Friends and Relatives          Widlife Tourism
## 1768                   Volunteering          Widlife Tourism
## 1769           Leisure and Holidays         Cultural Tourism
## 1770           Leisure and Holidays       Conference Tourism
## 1771 Visiting Friends and Relatives          Widlife Tourism
## 1772           Leisure and Holidays          Widlife Tourism
## 1773           Leisure and Holidays         Wildlife Tourism
## 1774           Leisure and Holidays          Widlife Tourism
## 1775           Leisure and Holidays          Widlife Tourism
## 1776           Leisure and Holidays            Beach Tourism
## 1777           Leisure and Holidays            Beach Tourism
## 1778 Visiting Friends and Relatives         Cultural Tourism
## 1779           Leisure and Holidays         Wildlife Tourism
## 1780           Leisure and Holidays          Widlife Tourism
## 1781 Visiting Friends and Relatives          Hunting Tourism
## 1782           Leisure and Holidays            Beach Tourism
## 1783 Visiting Friends and Relatives          Hunting Tourism
## 1784           Leisure and Holidays         Wildlife Tourism
## 1785 Visiting Friends and Relatives         Cultural Tourism
## 1786           Leisure and Holidays          Widlife Tourism
## 1787           Leisure and Holidays            Beach Tourism
## 1788           Leisure and Holidays          Widlife Tourism
## 1789           Leisure and Holidays            Beach Tourism
## 1790                       Business            Beach Tourism
## 1791                       Business        Mountain Climbing
## 1792                       Business       Conference Tourism
## 1793           Leisure and Holidays          Widlife Tourism
## 1794                       Business         Wildlife Tourism
## 1795           Leisure and Holidays            Beach Tourism
## 1796                          Other            Beach Tourism
## 1797           Leisure and Holidays       Conference Tourism
## 1798           Leisure and Holidays       Conference Tourism
## 1799           Leisure and Holidays         Wildlife Tourism
## 1801           Leisure and Holidays            Beach Tourism
## 1802           Leisure and Holidays          Hunting Tourism
## 1803                       Business          Widlife Tourism
## 1804           Leisure and Holidays          Widlife Tourism
## 1805           Leisure and Holidays       Conference Tourism
## 1806 Visiting Friends and Relatives         Wildlife Tourism
## 1808           Leisure and Holidays         Cultural Tourism
## 1809           Leisure and Holidays          Widlife Tourism
## 1810           Leisure and Holidays         Wildlife Tourism
## 1811                       Business            Beach Tourism
## 1812           Leisure and Holidays         Wildlife Tourism
## 1813           Leisure and Holidays          Widlife Tourism
## 1814           Leisure and Holidays         Cultural Tourism
## 1815 Visiting Friends and Relatives          Widlife Tourism
## 1816           Leisure and Holidays            Beach Tourism
## 1817        Meetings and Conference          Widlife Tourism
## 1818 Visiting Friends and Relatives         Cultural Tourism
## 1819           Leisure and Holidays          Widlife Tourism
## 1820           Leisure and Holidays       Conference Tourism
## 1821                       Business            Beach Tourism
## 1822           Leisure and Holidays          Widlife Tourism
## 1823        Meetings and Conference            Beach Tourism
## 1824                       Business        Mountain Climbing
## 1825           Leisure and Holidays            Beach Tourism
## 1826                       Business          Widlife Tourism
## 1827                       Business         Wildlife Tourism
## 1828           Leisure and Holidays            Beach Tourism
## 1830           Leisure and Holidays            Beach Tourism
## 1831           Leisure and Holidays          Widlife Tourism
## 1832                       Business             Bird Tourism
## 1833           Leisure and Holidays          Widlife Tourism
## 1834                   Volunteering       Conference Tourism
## 1835           Leisure and Holidays         Cultural Tourism
## 1836           Leisure and Holidays          Widlife Tourism
## 1837           Leisure and Holidays                 Business
## 1838           Leisure and Holidays       Conference Tourism
## 1839           Leisure and Holidays          Widlife Tourism
## 1840           Leisure and Holidays            Beach Tourism
## 1841           Leisure and Holidays       Conference Tourism
## 1842           Leisure and Holidays            Beach Tourism
## 1843 Visiting Friends and Relatives          Hunting Tourism
## 1844           Leisure and Holidays            Beach Tourism
## 1845 Visiting Friends and Relatives         Cultural Tourism
## 1846           Leisure and Holidays            Beach Tourism
## 1847        Meetings and Conference          Hunting Tourism
## 1848                       Business          Hunting Tourism
## 1849           Leisure and Holidays         Wildlife Tourism
## 1850                   Volunteering          Widlife Tourism
## 1851           Leisure and Holidays       Conference Tourism
## 1852        Meetings and Conference            Beach Tourism
## 1853           Leisure and Holidays            Beach Tourism
## 1854           Leisure and Holidays       Conference Tourism
## 1855           Leisure and Holidays          Hunting Tourism
## 1856           Leisure and Holidays          Widlife Tourism
## 1857           Leisure and Holidays          Widlife Tourism
## 1858 Visiting Friends and Relatives            Beach Tourism
## 1859           Leisure and Holidays       Conference Tourism
## 1860           Leisure and Holidays            Beach Tourism
## 1861           Leisure and Holidays       Conference Tourism
## 1862 Visiting Friends and Relatives            Beach Tourism
## 1863           Leisure and Holidays            Beach Tourism
## 1864           Leisure and Holidays          Widlife Tourism
## 1865           Leisure and Holidays          Widlife Tourism
## 1866           Leisure and Holidays         Cultural Tourism
## 1867           Leisure and Holidays            Beach Tourism
## 1868 Visiting Friends and Relatives          Hunting Tourism
## 1870           Leisure and Holidays          Widlife Tourism
## 1871 Visiting Friends and Relatives         Cultural Tourism
## 1872                          Other          Widlife Tourism
## 1873           Leisure and Holidays          Widlife Tourism
## 1874           Leisure and Holidays       Conference Tourism
## 1875                       Business            Beach Tourism
## 1876                       Business         Wildlife Tourism
## 1877           Leisure and Holidays          Widlife Tourism
## 1878           Leisure and Holidays          Widlife Tourism
## 1879                       Business          Widlife Tourism
## 1880           Leisure and Holidays          Widlife Tourism
## 1881        Meetings and Conference        Mountain Climbing
## 1882           Leisure and Holidays          Widlife Tourism
## 1883           Leisure and Holidays         Wildlife Tourism
## 1884           Leisure and Holidays          Widlife Tourism
## 1885           Leisure and Holidays       Conference Tourism
## 1886                       Business            Beach Tourism
## 1887           Leisure and Holidays            Beach Tourism
## 1888           Leisure and Holidays            Beach Tourism
## 1889           Leisure and Holidays          Widlife Tourism
## 1890           Leisure and Holidays            Beach Tourism
## 1891                       Business          Widlife Tourism
## 1892                       Business          Widlife Tourism
## 1893        Scientific and Academic         Wildlife Tourism
## 1894           Leisure and Holidays            Beach Tourism
## 1895           Leisure and Holidays          Widlife Tourism
## 1896 Visiting Friends and Relatives         Cultural Tourism
## 1897 Visiting Friends and Relatives            Beach Tourism
## 1898 Visiting Friends and Relatives         Cultural Tourism
## 1899           Leisure and Holidays       Conference Tourism
## 1900 Visiting Friends and Relatives            Beach Tourism
## 1901           Leisure and Holidays             Bird Tourism
## 1902           Leisure and Holidays            Beach Tourism
## 1903           Leisure and Holidays         Wildlife Tourism
## 1904           Leisure and Holidays            Beach Tourism
## 1905 Visiting Friends and Relatives          Hunting Tourism
## 1906                       Business          Hunting Tourism
## 1907                       Business          Widlife Tourism
## 1908           Leisure and Holidays       Conference Tourism
## 1909           Leisure and Holidays          Widlife Tourism
## 1912                       Business          Widlife Tourism
## 1913        Meetings and Conference        Mountain Climbing
## 1914                       Business          Widlife Tourism
## 1915           Leisure and Holidays       Conference Tourism
## 1916 Visiting Friends and Relatives            Beach Tourism
## 1917           Leisure and Holidays          Widlife Tourism
## 1918           Leisure and Holidays          Widlife Tourism
## 1919           Leisure and Holidays          Widlife Tourism
## 1920           Leisure and Holidays          Widlife Tourism
## 1921                       Business        Mountain Climbing
## 1922           Leisure and Holidays       Conference Tourism
## 1923 Visiting Friends and Relatives         Wildlife Tourism
## 1924           Leisure and Holidays          Widlife Tourism
## 1925           Leisure and Holidays            Beach Tourism
## 1926 Visiting Friends and Relatives                 Business
## 1927           Leisure and Holidays            Beach Tourism
## 1928           Leisure and Holidays            Beach Tourism
## 1929           Leisure and Holidays            Beach Tourism
## 1931           Leisure and Holidays          Widlife Tourism
## 1932           Leisure and Holidays          Widlife Tourism
## 1933                       Business            Beach Tourism
## 1934           Leisure and Holidays          Widlife Tourism
## 1935                       Business          Hunting Tourism
## 1936           Leisure and Holidays            Beach Tourism
## 1937           Leisure and Holidays         Wildlife Tourism
## 1938 Visiting Friends and Relatives         Cultural Tourism
## 1939                       Business          Hunting Tourism
## 1940           Leisure and Holidays            Beach Tourism
## 1941           Leisure and Holidays            Beach Tourism
## 1942        Meetings and Conference            Beach Tourism
## 1943           Leisure and Holidays             Bird Tourism
## 1945           Leisure and Holidays            Beach Tourism
## 1946           Leisure and Holidays            Beach Tourism
## 1947           Leisure and Holidays            Beach Tourism
## 1948           Leisure and Holidays            Beach Tourism
## 1949           Leisure and Holidays         Wildlife Tourism
## 1950           Leisure and Holidays            Beach Tourism
## 1951           Leisure and Holidays          Widlife Tourism
## 1952           Leisure and Holidays       Conference Tourism
## 1953           Leisure and Holidays          Widlife Tourism
## 1954           Leisure and Holidays          Widlife Tourism
## 1955           Leisure and Holidays         Wildlife Tourism
## 1956           Leisure and Holidays Diving and Sport Fishing
## 1957 Visiting Friends and Relatives         Cultural Tourism
## 1958           Leisure and Holidays            Beach Tourism
## 1959                       Business       Conference Tourism
## 1960           Leisure and Holidays         Cultural Tourism
## 1961           Leisure and Holidays            Beach Tourism
## 1962           Leisure and Holidays            Beach Tourism
## 1963           Leisure and Holidays            Beach Tourism
## 1964           Leisure and Holidays            Beach Tourism
## 1965           Leisure and Holidays         Cultural Tourism
## 1966           Leisure and Holidays          Widlife Tourism
## 1967                   Volunteering          Hunting Tourism
## 1968           Leisure and Holidays         Wildlife Tourism
## 1969           Leisure and Holidays       Conference Tourism
## 1970                       Business          Widlife Tourism
## 1972           Leisure and Holidays            Beach Tourism
## 1973 Visiting Friends and Relatives          Hunting Tourism
## 1974           Leisure and Holidays         Wildlife Tourism
## 1975 Visiting Friends and Relatives          Widlife Tourism
## 1976           Leisure and Holidays            Beach Tourism
## 1977                       Business          Widlife Tourism
## 1978           Leisure and Holidays       Conference Tourism
## 1979        Meetings and Conference        Mountain Climbing
## 1980           Leisure and Holidays          Widlife Tourism
## 1981           Leisure and Holidays             Bird Tourism
## 1982           Leisure and Holidays         Wildlife Tourism
## 1983           Leisure and Holidays          Widlife Tourism
## 1984           Leisure and Holidays       Conference Tourism
## 1985           Leisure and Holidays       Conference Tourism
## 1986           Leisure and Holidays            Beach Tourism
## 1987        Meetings and Conference       Conference Tourism
## 1988           Leisure and Holidays          Widlife Tourism
## 1990                       Business       Conference Tourism
## 1992                       Business          Hunting Tourism
## 1993                       Business          Hunting Tourism
## 1994           Leisure and Holidays            Beach Tourism
## 1995           Leisure and Holidays          Widlife Tourism
## 1996                       Business         Wildlife Tourism
## 1998           Leisure and Holidays          Widlife Tourism
## 1999                       Business        Mountain Climbing
## 2000           Leisure and Holidays            Beach Tourism
## 2001           Leisure and Holidays         Wildlife Tourism
## 2002        Meetings and Conference         Cultural Tourism
## 2003           Leisure and Holidays          Widlife Tourism
## 2004 Visiting Friends and Relatives       Conference Tourism
## 2005           Leisure and Holidays         Wildlife Tourism
## 2006           Leisure and Holidays         Wildlife Tourism
## 2007        Meetings and Conference          Hunting Tourism
## 2008 Visiting Friends and Relatives            Beach Tourism
## 2009           Leisure and Holidays       Conference Tourism
## 2010           Leisure and Holidays          Widlife Tourism
## 2011           Leisure and Holidays          Widlife Tourism
## 2014           Leisure and Holidays          Widlife Tourism
## 2015           Leisure and Holidays         Cultural Tourism
## 2016           Leisure and Holidays            Beach Tourism
## 2018 Visiting Friends and Relatives            Beach Tourism
## 2019           Leisure and Holidays            Beach Tourism
## 2020 Visiting Friends and Relatives         Cultural Tourism
## 2021           Leisure and Holidays          Widlife Tourism
## 2022           Leisure and Holidays         Wildlife Tourism
## 2023           Leisure and Holidays          Widlife Tourism
## 2024           Leisure and Holidays       Conference Tourism
## 2025           Leisure and Holidays          Widlife Tourism
## 2026                       Business          Hunting Tourism
## 2027           Leisure and Holidays          Widlife Tourism
## 2028 Visiting Friends and Relatives          Widlife Tourism
## 2029 Visiting Friends and Relatives          Hunting Tourism
## 2030                       Business         Wildlife Tourism
## 2031           Leisure and Holidays          Widlife Tourism
## 2032           Leisure and Holidays       Conference Tourism
## 2033           Leisure and Holidays         Wildlife Tourism
## 2034                   Volunteering         Wildlife Tourism
## 2036           Leisure and Holidays          Widlife Tourism
## 2037 Visiting Friends and Relatives            Beach Tourism
## 2038           Leisure and Holidays       Conference Tourism
## 2039           Leisure and Holidays          Widlife Tourism
## 2040           Leisure and Holidays            Beach Tourism
## 2041           Leisure and Holidays            Beach Tourism
## 2042 Visiting Friends and Relatives            Beach Tourism
## 2043           Leisure and Holidays             Bird Tourism
## 2044           Leisure and Holidays         Wildlife Tourism
## 2045           Leisure and Holidays          Widlife Tourism
## 2046           Leisure and Holidays          Widlife Tourism
## 2048           Leisure and Holidays       Conference Tourism
## 2049           Leisure and Holidays            Beach Tourism
## 2050           Leisure and Holidays          Widlife Tourism
## 2052        Meetings and Conference          Widlife Tourism
## 2053           Leisure and Holidays          Widlife Tourism
## 2054                       Business            Beach Tourism
## 2055 Visiting Friends and Relatives         Wildlife Tourism
## 2057           Leisure and Holidays          Widlife Tourism
## 2058        Meetings and Conference          Widlife Tourism
## 2059                   Volunteering          Hunting Tourism
## 2060           Leisure and Holidays            Beach Tourism
## 2061           Leisure and Holidays       Conference Tourism
## 2062           Leisure and Holidays          Widlife Tourism
## 2063 Visiting Friends and Relatives          Widlife Tourism
## 2064           Leisure and Holidays          Widlife Tourism
## 2065           Leisure and Holidays       Conference Tourism
## 2066           Leisure and Holidays         Cultural Tourism
## 2067        Scientific and Academic          Widlife Tourism
## 2069 Visiting Friends and Relatives         Cultural Tourism
## 2070           Leisure and Holidays            Beach Tourism
## 2071           Leisure and Holidays                 Business
## 2072           Leisure and Holidays            Beach Tourism
## 2074           Leisure and Holidays          Widlife Tourism
## 2075           Leisure and Holidays            Beach Tourism
## 2076                       Business          Widlife Tourism
## 2077           Leisure and Holidays       Conference Tourism
## 2078        Meetings and Conference       Conference Tourism
## 2079           Leisure and Holidays       Conference Tourism
## 2080                       Business          Widlife Tourism
## 2081           Leisure and Holidays          Widlife Tourism
## 2082 Visiting Friends and Relatives            Beach Tourism
## 2083           Leisure and Holidays         Wildlife Tourism
## 2084 Visiting Friends and Relatives         Wildlife Tourism
## 2085           Leisure and Holidays         Wildlife Tourism
## 2086           Leisure and Holidays          Widlife Tourism
## 2087        Meetings and Conference        Mountain Climbing
## 2088           Leisure and Holidays          Widlife Tourism
## 2089           Leisure and Holidays          Widlife Tourism
## 2090                       Business         Wildlife Tourism
## 2091                       Business         Wildlife Tourism
## 2092        Meetings and Conference         Cultural Tourism
## 2093           Leisure and Holidays          Widlife Tourism
## 2094           Leisure and Holidays          Widlife Tourism
## 2095           Leisure and Holidays            Beach Tourism
## 2096           Leisure and Holidays       Conference Tourism
## 2097           Leisure and Holidays            Beach Tourism
## 2098                       Business          Widlife Tourism
## 2099                       Business            Beach Tourism
## 2100                       Business            Beach Tourism
## 2101                       Business            Beach Tourism
## 2102                          Other       Conference Tourism
## 2103           Leisure and Holidays          Widlife Tourism
## 2104           Leisure and Holidays          Widlife Tourism
## 2105           Leisure and Holidays          Widlife Tourism
## 2107           Leisure and Holidays            Beach Tourism
## 2108 Visiting Friends and Relatives          Widlife Tourism
## 2110           Leisure and Holidays            Beach Tourism
## 2111           Leisure and Holidays          Hunting Tourism
## 2112           Leisure and Holidays          Widlife Tourism
## 2113           Leisure and Holidays       Conference Tourism
## 2114                       Business            Beach Tourism
## 2116                       Business          Hunting Tourism
## 2117                       Business            Beach Tourism
## 2118                       Business          Hunting Tourism
## 2119           Leisure and Holidays          Widlife Tourism
## 2120           Leisure and Holidays            Beach Tourism
## 2121 Visiting Friends and Relatives            Beach Tourism
## 2122           Leisure and Holidays          Widlife Tourism
## 2123                       Business            Beach Tourism
## 2124           Leisure and Holidays        Mountain Climbing
## 2125           Leisure and Holidays            Beach Tourism
## 2126           Leisure and Holidays          Widlife Tourism
## 2127           Leisure and Holidays            Beach Tourism
## 2128 Visiting Friends and Relatives          Widlife Tourism
## 2129           Leisure and Holidays            Beach Tourism
## 2130           Leisure and Holidays          Widlife Tourism
## 2131           Leisure and Holidays       Conference Tourism
## 2132           Leisure and Holidays          Widlife Tourism
## 2133           Leisure and Holidays            Beach Tourism
## 2134           Leisure and Holidays       Conference Tourism
## 2135           Leisure and Holidays          Widlife Tourism
## 2136                   Volunteering         Cultural Tourism
## 2137           Leisure and Holidays            Beach Tourism
## 2138           Leisure and Holidays          Widlife Tourism
## 2139           Leisure and Holidays          Widlife Tourism
## 2140           Leisure and Holidays            Beach Tourism
## 2141 Visiting Friends and Relatives          Hunting Tourism
## 2143           Leisure and Holidays         Wildlife Tourism
## 2144           Leisure and Holidays            Beach Tourism
## 2145 Visiting Friends and Relatives          Hunting Tourism
## 2146           Leisure and Holidays         Wildlife Tourism
## 2147 Visiting Friends and Relatives          Hunting Tourism
## 2148 Visiting Friends and Relatives            Beach Tourism
## 2149           Leisure and Holidays         Cultural Tourism
## 2150        Meetings and Conference        Mountain Climbing
## 2151           Leisure and Holidays            Beach Tourism
## 2152        Meetings and Conference            Beach Tourism
## 2153                          Other             Bird Tourism
## 2154           Leisure and Holidays            Beach Tourism
## 2155 Visiting Friends and Relatives            Beach Tourism
## 2156        Meetings and Conference       Conference Tourism
## 2157           Leisure and Holidays          Widlife Tourism
## 2158                       Business            Beach Tourism
## 2159 Visiting Friends and Relatives            Beach Tourism
## 2160                       Business         Wildlife Tourism
## 2161           Leisure and Holidays          Widlife Tourism
## 2162 Visiting Friends and Relatives         Cultural Tourism
## 2163           Leisure and Holidays         Wildlife Tourism
## 2164           Leisure and Holidays       Conference Tourism
## 2165           Leisure and Holidays          Widlife Tourism
## 2166           Leisure and Holidays          Widlife Tourism
## 2167           Leisure and Holidays         Cultural Tourism
## 2168           Leisure and Holidays         Wildlife Tourism
## 2169 Visiting Friends and Relatives         Cultural Tourism
## 2170                       Business          Widlife Tourism
## 2171           Leisure and Holidays            Beach Tourism
## 2172                       Business         Cultural Tourism
## 2173           Leisure and Holidays         Wildlife Tourism
## 2174           Leisure and Holidays         Wildlife Tourism
## 2175           Leisure and Holidays          Widlife Tourism
## 2176                       Business          Widlife Tourism
## 2177           Leisure and Holidays         Wildlife Tourism
## 2178           Leisure and Holidays            Beach Tourism
## 2179                       Business        Mountain Climbing
## 2180        Scientific and Academic         Cultural Tourism
## 2181        Scientific and Academic          Hunting Tourism
## 2182           Leisure and Holidays       Conference Tourism
## 2183                       Business          Widlife Tourism
## 2184        Meetings and Conference          Hunting Tourism
## 2185           Leisure and Holidays       Conference Tourism
## 2186           Leisure and Holidays            Beach Tourism
## 2187 Visiting Friends and Relatives            Beach Tourism
## 2188 Visiting Friends and Relatives         Cultural Tourism
## 2189           Leisure and Holidays       Conference Tourism
## 2191 Visiting Friends and Relatives         Cultural Tourism
## 2192           Leisure and Holidays         Wildlife Tourism
## 2193 Visiting Friends and Relatives            Beach Tourism
## 2194           Leisure and Holidays         Cultural Tourism
## 2195                       Business          Hunting Tourism
## 2196 Visiting Friends and Relatives          Hunting Tourism
## 2197 Visiting Friends and Relatives            Beach Tourism
## 2198           Leisure and Holidays          Widlife Tourism
## 2199           Leisure and Holidays         Wildlife Tourism
## 2200           Leisure and Holidays       Conference Tourism
## 2201           Leisure and Holidays            Beach Tourism
## 2202           Leisure and Holidays          Widlife Tourism
## 2203           Leisure and Holidays          Widlife Tourism
## 2204           Leisure and Holidays          Widlife Tourism
## 2205           Leisure and Holidays       Conference Tourism
## 2206           Leisure and Holidays            Beach Tourism
## 2207 Visiting Friends and Relatives            Beach Tourism
## 2208           Leisure and Holidays          Widlife Tourism
## 2209           Leisure and Holidays            Beach Tourism
## 2210           Leisure and Holidays            Beach Tourism
## 2211           Leisure and Holidays          Widlife Tourism
## 2212 Visiting Friends and Relatives          Hunting Tourism
## 2213 Visiting Friends and Relatives          Widlife Tourism
## 2214 Visiting Friends and Relatives            Beach Tourism
## 2215           Leisure and Holidays            Beach Tourism
## 2216                          Other          Widlife Tourism
## 2217 Visiting Friends and Relatives          Widlife Tourism
## 2218           Leisure and Holidays          Widlife Tourism
## 2219                       Business         Cultural Tourism
## 2220           Leisure and Holidays         Cultural Tourism
## 2222           Leisure and Holidays            Beach Tourism
## 2223           Leisure and Holidays         Wildlife Tourism
## 2224           Leisure and Holidays            Beach Tourism
## 2225        Meetings and Conference            Beach Tourism
## 2227           Leisure and Holidays          Widlife Tourism
## 2229           Leisure and Holidays            Beach Tourism
## 2230           Leisure and Holidays       Conference Tourism
## 2231           Leisure and Holidays          Widlife Tourism
## 2232                       Business            Beach Tourism
## 2233           Leisure and Holidays          Widlife Tourism
## 2234           Leisure and Holidays       Conference Tourism
## 2235           Leisure and Holidays                 Business
## 2236           Leisure and Holidays            Beach Tourism
## 2237           Leisure and Holidays          Widlife Tourism
## 2238           Leisure and Holidays       Conference Tourism
## 2239 Visiting Friends and Relatives            Beach Tourism
## 2241           Leisure and Holidays       Conference Tourism
## 2242           Leisure and Holidays          Widlife Tourism
## 2243                       Business         Cultural Tourism
## 2244                        Medical          Widlife Tourism
## 2245           Leisure and Holidays          Widlife Tourism
## 2246           Leisure and Holidays                 Business
## 2247           Leisure and Holidays            Beach Tourism
## 2248 Visiting Friends and Relatives          Hunting Tourism
## 2249 Visiting Friends and Relatives          Hunting Tourism
## 2250 Visiting Friends and Relatives         Cultural Tourism
## 2251        Meetings and Conference          Widlife Tourism
## 2252           Leisure and Holidays          Widlife Tourism
## 2254           Leisure and Holidays            Beach Tourism
## 2255           Leisure and Holidays       Conference Tourism
## 2256 Visiting Friends and Relatives            Beach Tourism
## 2257 Visiting Friends and Relatives            Beach Tourism
## 2258           Leisure and Holidays       Conference Tourism
## 2260 Visiting Friends and Relatives         Cultural Tourism
## 2261 Visiting Friends and Relatives          Hunting Tourism
## 2263           Leisure and Holidays            Beach Tourism
## 2264           Leisure and Holidays       Conference Tourism
## 2265           Leisure and Holidays          Widlife Tourism
## 2266           Leisure and Holidays            Beach Tourism
## 2267                       Business            Beach Tourism
## 2268           Leisure and Holidays          Widlife Tourism
## 2269 Visiting Friends and Relatives            Beach Tourism
## 2270                       Business          Hunting Tourism
## 2271           Leisure and Holidays         Wildlife Tourism
## 2272                       Business         Wildlife Tourism
## 2273           Leisure and Holidays       Conference Tourism
## 2275                   Volunteering          Hunting Tourism
## 2276           Leisure and Holidays          Widlife Tourism
## 2277           Leisure and Holidays            Beach Tourism
## 2278           Leisure and Holidays          Widlife Tourism
## 2279                       Business          Widlife Tourism
## 2280 Visiting Friends and Relatives          Widlife Tourism
## 2281                       Business            Beach Tourism
## 2282                       Business          Hunting Tourism
## 2283        Meetings and Conference         Wildlife Tourism
## 2284                       Business          Widlife Tourism
## 2285                   Volunteering         Cultural Tourism
## 2286           Leisure and Holidays          Widlife Tourism
## 2287 Visiting Friends and Relatives       Conference Tourism
## 2288           Leisure and Holidays          Widlife Tourism
## 2289           Leisure and Holidays          Widlife Tourism
## 2290 Visiting Friends and Relatives       Conference Tourism
## 2291 Visiting Friends and Relatives          Widlife Tourism
## 2292           Leisure and Holidays            Beach Tourism
## 2293                       Business            Beach Tourism
## 2294           Leisure and Holidays            Beach Tourism
## 2295                       Business         Wildlife Tourism
## 2296           Leisure and Holidays          Widlife Tourism
## 2297           Leisure and Holidays          Widlife Tourism
## 2298           Leisure and Holidays            Beach Tourism
## 2299           Leisure and Holidays            Beach Tourism
## 2300           Leisure and Holidays            Beach Tourism
## 2301           Leisure and Holidays          Widlife Tourism
## 2302                       Business          Widlife Tourism
## 2303                       Business        Mountain Climbing
## 2304        Meetings and Conference        Mountain Climbing
## 2305           Leisure and Holidays            Beach Tourism
## 2306           Leisure and Holidays         Wildlife Tourism
## 2307           Leisure and Holidays       Conference Tourism
## 2308           Leisure and Holidays         Wildlife Tourism
## 2309        Meetings and Conference        Mountain Climbing
## 2310        Meetings and Conference        Mountain Climbing
## 2311           Leisure and Holidays            Beach Tourism
## 2312           Leisure and Holidays            Beach Tourism
## 2313           Leisure and Holidays          Widlife Tourism
## 2315           Leisure and Holidays         Wildlife Tourism
## 2316           Leisure and Holidays          Widlife Tourism
## 2317 Visiting Friends and Relatives            Beach Tourism
## 2318           Leisure and Holidays            Beach Tourism
## 2319           Leisure and Holidays            Beach Tourism
## 2320           Leisure and Holidays            Beach Tourism
## 2321                       Business                 Business
## 2322           Leisure and Holidays          Widlife Tourism
## 2323           Leisure and Holidays          Widlife Tourism
## 2324           Leisure and Holidays       Conference Tourism
## 2325           Leisure and Holidays       Conference Tourism
## 2326           Leisure and Holidays            Beach Tourism
## 2327           Leisure and Holidays            Beach Tourism
## 2328 Visiting Friends and Relatives         Cultural Tourism
## 2329           Leisure and Holidays          Widlife Tourism
## 2330           Leisure and Holidays                 Business
## 2331           Leisure and Holidays          Widlife Tourism
## 2332 Visiting Friends and Relatives             Bird Tourism
## 2333        Meetings and Conference        Mountain Climbing
## 2334           Leisure and Holidays            Beach Tourism
## 2335           Leisure and Holidays         Cultural Tourism
## 2336           Leisure and Holidays         Wildlife Tourism
## 2337           Leisure and Holidays            Beach Tourism
## 2338           Leisure and Holidays            Beach Tourism
## 2339           Leisure and Holidays            Beach Tourism
## 2341        Scientific and Academic         Cultural Tourism
## 2342           Leisure and Holidays       Conference Tourism
## 2343           Leisure and Holidays          Widlife Tourism
## 2344           Leisure and Holidays          Widlife Tourism
## 2345           Leisure and Holidays            Beach Tourism
## 2347           Leisure and Holidays            Beach Tourism
## 2348           Leisure and Holidays          Widlife Tourism
## 2349                       Business         Cultural Tourism
## 2350           Leisure and Holidays          Widlife Tourism
## 2351 Visiting Friends and Relatives            Beach Tourism
## 2352           Leisure and Holidays         Cultural Tourism
## 2353 Visiting Friends and Relatives          Hunting Tourism
## 2354           Leisure and Holidays         Wildlife Tourism
## 2355                          Other          Hunting Tourism
## 2356                       Business         Cultural Tourism
## 2357           Leisure and Holidays          Widlife Tourism
## 2358 Visiting Friends and Relatives         Cultural Tourism
## 2359                   Volunteering          Widlife Tourism
## 2360 Visiting Friends and Relatives          Widlife Tourism
## 2361           Leisure and Holidays          Widlife Tourism
## 2362           Leisure and Holidays       Conference Tourism
## 2363                       Business          Widlife Tourism
## 2364           Leisure and Holidays            Beach Tourism
## 2365                       Business            Beach Tourism
## 2366                       Business          Widlife Tourism
## 2367 Visiting Friends and Relatives         Cultural Tourism
## 2368           Leisure and Holidays            Beach Tourism
## 2369           Leisure and Holidays         Wildlife Tourism
## 2370 Visiting Friends and Relatives         Wildlife Tourism
## 2371           Leisure and Holidays          Widlife Tourism
## 2372           Leisure and Holidays            Beach Tourism
## 2373           Leisure and Holidays          Widlife Tourism
## 2375                       Business            Beach Tourism
## 2376           Leisure and Holidays       Conference Tourism
## 2377           Leisure and Holidays            Beach Tourism
## 2378 Visiting Friends and Relatives          Hunting Tourism
## 2379           Leisure and Holidays         Wildlife Tourism
## 2380           Leisure and Holidays            Beach Tourism
## 2381 Visiting Friends and Relatives             Bird Tourism
## 2383           Leisure and Holidays         Cultural Tourism
## 2384        Meetings and Conference       Conference Tourism
## 2385           Leisure and Holidays         Cultural Tourism
## 2386 Visiting Friends and Relatives          Hunting Tourism
## 2387 Visiting Friends and Relatives          Hunting Tourism
## 2388           Leisure and Holidays         Wildlife Tourism
## 2389           Leisure and Holidays          Widlife Tourism
## 2390                       Business         Wildlife Tourism
## 2391                       Business         Wildlife Tourism
## 2392           Leisure and Holidays            Beach Tourism
## 2394           Leisure and Holidays          Widlife Tourism
## 2395                          Other          Hunting Tourism
## 2396           Leisure and Holidays          Widlife Tourism
## 2398           Leisure and Holidays       Conference Tourism
## 2400 Visiting Friends and Relatives          Hunting Tourism
## 2401 Visiting Friends and Relatives          Widlife Tourism
## 2402                       Business          Widlife Tourism
## 2403           Leisure and Holidays          Widlife Tourism
## 2404           Leisure and Holidays                 Business
## 2405                   Volunteering            Beach Tourism
## 2406           Leisure and Holidays          Widlife Tourism
## 2407        Meetings and Conference         Wildlife Tourism
## 2408                       Business            Beach Tourism
## 2409           Leisure and Holidays            Beach Tourism
## 2410           Leisure and Holidays          Widlife Tourism
## 2411           Leisure and Holidays         Wildlife Tourism
## 2412                   Volunteering         Cultural Tourism
## 2413           Leisure and Holidays          Widlife Tourism
## 2414           Leisure and Holidays            Beach Tourism
## 2415           Leisure and Holidays          Widlife Tourism
## 2416           Leisure and Holidays         Wildlife Tourism
## 2417        Scientific and Academic          Hunting Tourism
## 2418           Leisure and Holidays          Widlife Tourism
## 2419           Leisure and Holidays          Widlife Tourism
## 2420        Meetings and Conference        Mountain Climbing
## 2421           Leisure and Holidays          Widlife Tourism
## 2422           Leisure and Holidays         Cultural Tourism
## 2423           Leisure and Holidays            Beach Tourism
## 2424           Leisure and Holidays            Beach Tourism
## 2425           Leisure and Holidays          Widlife Tourism
## 2427        Meetings and Conference       Conference Tourism
## 2428           Leisure and Holidays          Widlife Tourism
## 2429           Leisure and Holidays         Wildlife Tourism
## 2430 Visiting Friends and Relatives          Hunting Tourism
## 2431           Leisure and Holidays                 Business
## 2432           Leisure and Holidays            Beach Tourism
## 2433           Leisure and Holidays          Widlife Tourism
## 2434           Leisure and Holidays          Widlife Tourism
## 2435 Visiting Friends and Relatives          Hunting Tourism
## 2436 Visiting Friends and Relatives          Hunting Tourism
## 2437           Leisure and Holidays            Beach Tourism
## 2438           Leisure and Holidays          Widlife Tourism
## 2439                   Volunteering            Beach Tourism
## 2440           Leisure and Holidays          Widlife Tourism
## 2441           Leisure and Holidays            Beach Tourism
## 2442        Meetings and Conference          Hunting Tourism
## 2443           Leisure and Holidays         Wildlife Tourism
## 2444 Visiting Friends and Relatives         Wildlife Tourism
## 2445        Meetings and Conference       Conference Tourism
## 2446           Leisure and Holidays          Widlife Tourism
## 2447        Scientific and Academic          Widlife Tourism
## 2448           Leisure and Holidays         Cultural Tourism
## 2449        Meetings and Conference          Widlife Tourism
## 2450           Leisure and Holidays         Wildlife Tourism
## 2451           Leisure and Holidays          Widlife Tourism
## 2453           Leisure and Holidays            Beach Tourism
## 2454           Leisure and Holidays          Widlife Tourism
## 2455 Visiting Friends and Relatives            Beach Tourism
## 2456           Leisure and Holidays          Widlife Tourism
## 2457                       Business         Wildlife Tourism
## 2458           Leisure and Holidays          Widlife Tourism
## 2459                       Business            Beach Tourism
## 2460 Visiting Friends and Relatives          Hunting Tourism
## 2461                       Business          Widlife Tourism
## 2463 Visiting Friends and Relatives         Wildlife Tourism
## 2464           Leisure and Holidays            Beach Tourism
## 2465           Leisure and Holidays          Widlife Tourism
## 2466           Leisure and Holidays        Mountain Climbing
## 2467           Leisure and Holidays          Widlife Tourism
## 2468           Leisure and Holidays            Beach Tourism
## 2470           Leisure and Holidays          Widlife Tourism
## 2471           Leisure and Holidays       Conference Tourism
## 2473                       Business       Conference Tourism
## 2474           Leisure and Holidays          Widlife Tourism
## 2475           Leisure and Holidays       Conference Tourism
## 2476           Leisure and Holidays          Widlife Tourism
## 2477 Visiting Friends and Relatives       Conference Tourism
## 2478 Visiting Friends and Relatives            Beach Tourism
## 2479           Leisure and Holidays          Widlife Tourism
## 2480           Leisure and Holidays          Hunting Tourism
## 2483           Leisure and Holidays          Widlife Tourism
## 2484           Leisure and Holidays                 Business
## 2485           Leisure and Holidays          Widlife Tourism
## 2486                       Business          Widlife Tourism
## 2487           Leisure and Holidays         Wildlife Tourism
## 2488           Leisure and Holidays          Widlife Tourism
## 2489           Leisure and Holidays          Hunting Tourism
## 2490           Leisure and Holidays          Widlife Tourism
## 2491           Leisure and Holidays         Cultural Tourism
## 2492           Leisure and Holidays         Cultural Tourism
## 2493           Leisure and Holidays          Widlife Tourism
## 2495 Visiting Friends and Relatives          Widlife Tourism
## 2496                       Business          Widlife Tourism
## 2497           Leisure and Holidays            Beach Tourism
## 2498           Leisure and Holidays          Widlife Tourism
## 2499           Leisure and Holidays       Conference Tourism
## 2500           Leisure and Holidays          Hunting Tourism
## 2501           Leisure and Holidays            Beach Tourism
## 2502           Leisure and Holidays          Widlife Tourism
## 2503 Visiting Friends and Relatives            Beach Tourism
## 2504           Leisure and Holidays            Beach Tourism
## 2505           Leisure and Holidays       Conference Tourism
## 2506                   Volunteering         Wildlife Tourism
## 2507        Meetings and Conference         Wildlife Tourism
## 2508           Leisure and Holidays         Wildlife Tourism
## 2509           Leisure and Holidays            Beach Tourism
## 2510           Leisure and Holidays         Wildlife Tourism
## 2511                   Volunteering          Hunting Tourism
## 2512                       Business        Mountain Climbing
## 2513           Leisure and Holidays            Beach Tourism
## 2514           Leisure and Holidays            Beach Tourism
## 2515           Leisure and Holidays         Wildlife Tourism
## 2518           Leisure and Holidays          Widlife Tourism
## 2519           Leisure and Holidays            Beach Tourism
## 2520           Leisure and Holidays          Widlife Tourism
## 2521           Leisure and Holidays          Widlife Tourism
## 2522           Leisure and Holidays          Widlife Tourism
## 2523                   Volunteering          Hunting Tourism
## 2524           Leisure and Holidays          Widlife Tourism
## 2525           Leisure and Holidays       Conference Tourism
## 2526        Meetings and Conference         Wildlife Tourism
## 2527           Leisure and Holidays         Wildlife Tourism
## 2528           Leisure and Holidays                 Business
## 2529           Leisure and Holidays         Wildlife Tourism
## 2531                       Business         Wildlife Tourism
## 2532           Leisure and Holidays            Beach Tourism
## 2534                        Medical            Beach Tourism
## 2535           Leisure and Holidays            Beach Tourism
## 2536           Leisure and Holidays          Widlife Tourism
## 2537                   Volunteering          Hunting Tourism
## 2538           Leisure and Holidays            Beach Tourism
## 2539                       Business          Widlife Tourism
## 2540                       Business          Widlife Tourism
## 2541           Leisure and Holidays          Widlife Tourism
## 2542           Leisure and Holidays          Widlife Tourism
## 2543           Leisure and Holidays       Conference Tourism
## 2544           Leisure and Holidays            Beach Tourism
## 2545           Leisure and Holidays          Widlife Tourism
## 2546           Leisure and Holidays             Bird Tourism
## 2547           Leisure and Holidays            Beach Tourism
## 2548           Leisure and Holidays          Widlife Tourism
## 2550           Leisure and Holidays         Wildlife Tourism
## 2551 Visiting Friends and Relatives          Widlife Tourism
## 2552           Leisure and Holidays            Beach Tourism
## 2553                       Business          Widlife Tourism
## 2554           Leisure and Holidays          Widlife Tourism
## 2555                       Business          Hunting Tourism
## 2556           Leisure and Holidays         Cultural Tourism
## 2558                       Business            Beach Tourism
## 2559                       Business          Widlife Tourism
## 2560           Leisure and Holidays          Widlife Tourism
## 2561           Leisure and Holidays            Beach Tourism
## 2562           Leisure and Holidays       Conference Tourism
## 2563           Leisure and Holidays          Widlife Tourism
## 2564           Leisure and Holidays         Wildlife Tourism
## 2565           Leisure and Holidays            Beach Tourism
## 2566        Meetings and Conference       Conference Tourism
## 2567           Leisure and Holidays         Wildlife Tourism
## 2568           Leisure and Holidays          Widlife Tourism
## 2569           Leisure and Holidays                 Business
## 2570                       Business         Cultural Tourism
## 2571           Leisure and Holidays            Beach Tourism
## 2572                       Business         Cultural Tourism
## 2573           Leisure and Holidays          Widlife Tourism
## 2574           Leisure and Holidays            Beach Tourism
## 2575           Leisure and Holidays          Widlife Tourism
## 2576           Leisure and Holidays          Widlife Tourism
## 2577                   Volunteering       Conference Tourism
## 2578           Leisure and Holidays       Conference Tourism
## 2579           Leisure and Holidays          Widlife Tourism
## 2580           Leisure and Holidays          Widlife Tourism
## 2581           Leisure and Holidays            Beach Tourism
## 2582 Visiting Friends and Relatives            Beach Tourism
## 2583                       Business            Beach Tourism
## 2584           Leisure and Holidays          Widlife Tourism
## 2585           Leisure and Holidays          Widlife Tourism
## 2586                       Business          Widlife Tourism
## 2587           Leisure and Holidays          Widlife Tourism
## 2588           Leisure and Holidays            Beach Tourism
## 2589           Leisure and Holidays          Widlife Tourism
## 2590           Leisure and Holidays            Beach Tourism
## 2591           Leisure and Holidays                 Business
## 2592           Leisure and Holidays          Widlife Tourism
## 2593        Meetings and Conference        Mountain Climbing
## 2594                   Volunteering          Widlife Tourism
## 2595 Visiting Friends and Relatives         Cultural Tourism
## 2596           Leisure and Holidays         Wildlife Tourism
## 2598           Leisure and Holidays          Widlife Tourism
## 2599           Leisure and Holidays          Widlife Tourism
## 2600           Leisure and Holidays            Beach Tourism
## 2601           Leisure and Holidays            Beach Tourism
## 2602           Leisure and Holidays            Beach Tourism
## 2603           Leisure and Holidays       Conference Tourism
## 2604           Leisure and Holidays          Widlife Tourism
## 2605        Meetings and Conference          Hunting Tourism
## 2606           Leisure and Holidays         Wildlife Tourism
## 2607           Leisure and Holidays          Hunting Tourism
## 2608           Leisure and Holidays          Widlife Tourism
## 2609                       Business        Mountain Climbing
## 2610           Leisure and Holidays         Cultural Tourism
## 2611                       Business          Widlife Tourism
## 2612           Leisure and Holidays          Widlife Tourism
## 2613           Leisure and Holidays          Widlife Tourism
## 2614           Leisure and Holidays          Widlife Tourism
## 2615 Visiting Friends and Relatives          Hunting Tourism
## 2616           Leisure and Holidays            Beach Tourism
## 2617           Leisure and Holidays         Wildlife Tourism
## 2618           Leisure and Holidays            Beach Tourism
## 2619                       Business          Hunting Tourism
## 2620 Visiting Friends and Relatives         Cultural Tourism
## 2621 Visiting Friends and Relatives          Hunting Tourism
## 2622                       Business          Widlife Tourism
## 2623           Leisure and Holidays          Widlife Tourism
## 2624           Leisure and Holidays          Widlife Tourism
## 2625           Leisure and Holidays          Widlife Tourism
## 2626           Leisure and Holidays          Widlife Tourism
## 2627           Leisure and Holidays            Beach Tourism
## 2628                       Business          Widlife Tourism
## 2629           Leisure and Holidays          Widlife Tourism
## 2630           Leisure and Holidays          Hunting Tourism
## 2631           Leisure and Holidays          Widlife Tourism
## 2632           Leisure and Holidays         Wildlife Tourism
## 2633        Meetings and Conference       Conference Tourism
## 2634 Visiting Friends and Relatives          Hunting Tourism
## 2635           Leisure and Holidays            Beach Tourism
## 2636           Leisure and Holidays       Conference Tourism
## 2637           Leisure and Holidays         Wildlife Tourism
## 2638 Visiting Friends and Relatives          Widlife Tourism
## 2639                   Volunteering          Hunting Tourism
## 2640                       Business            Beach Tourism
## 2641           Leisure and Holidays         Wildlife Tourism
## 2642           Leisure and Holidays            Beach Tourism
## 2643           Leisure and Holidays         Wildlife Tourism
## 2644                       Business            Beach Tourism
## 2645           Leisure and Holidays         Cultural Tourism
## 2646                       Business          Hunting Tourism
## 2648           Leisure and Holidays       Conference Tourism
## 2649           Leisure and Holidays        Mountain Climbing
## 2650        Meetings and Conference       Conference Tourism
## 2651                       Business          Hunting Tourism
## 2652           Leisure and Holidays          Widlife Tourism
## 2653           Leisure and Holidays          Widlife Tourism
## 2654           Leisure and Holidays         Wildlife Tourism
## 2655        Meetings and Conference        Mountain Climbing
## 2656           Leisure and Holidays            Beach Tourism
## 2657           Leisure and Holidays         Wildlife Tourism
## 2659           Leisure and Holidays          Widlife Tourism
## 2660 Visiting Friends and Relatives            Beach Tourism
## 2661                       Business            Beach Tourism
## 2662 Visiting Friends and Relatives          Hunting Tourism
## 2665           Leisure and Holidays                 Business
## 2666           Leisure and Holidays          Widlife Tourism
## 2667                       Business            Beach Tourism
## 2669           Leisure and Holidays       Conference Tourism
## 2670           Leisure and Holidays         Wildlife Tourism
## 2672                       Business          Hunting Tourism
## 2673 Visiting Friends and Relatives         Cultural Tourism
## 2674           Leisure and Holidays          Widlife Tourism
## 2675           Leisure and Holidays          Widlife Tourism
## 2676           Leisure and Holidays          Widlife Tourism
## 2677           Leisure and Holidays          Widlife Tourism
## 2678           Leisure and Holidays            Beach Tourism
## 2679           Leisure and Holidays          Widlife Tourism
## 2680           Leisure and Holidays       Conference Tourism
## 2681           Leisure and Holidays          Widlife Tourism
## 2682           Leisure and Holidays          Widlife Tourism
## 2684           Leisure and Holidays          Widlife Tourism
## 2685           Leisure and Holidays       Conference Tourism
## 2686           Leisure and Holidays          Widlife Tourism
## 2687           Leisure and Holidays         Wildlife Tourism
## 2688                       Business          Widlife Tourism
## 2689           Leisure and Holidays       Conference Tourism
## 2690           Leisure and Holidays          Widlife Tourism
## 2691           Leisure and Holidays          Widlife Tourism
## 2693        Meetings and Conference          Widlife Tourism
## 2695           Leisure and Holidays          Widlife Tourism
## 2696           Leisure and Holidays          Widlife Tourism
## 2697           Leisure and Holidays         Wildlife Tourism
## 2698           Leisure and Holidays          Widlife Tourism
## 2699 Visiting Friends and Relatives            Beach Tourism
## 2700           Leisure and Holidays         Cultural Tourism
## 2701 Visiting Friends and Relatives         Cultural Tourism
## 2702                          Other          Hunting Tourism
## 2703           Leisure and Holidays       Conference Tourism
## 2704           Leisure and Holidays         Wildlife Tourism
## 2705                   Volunteering            Beach Tourism
## 2706                       Business          Widlife Tourism
## 2707                       Business         Wildlife Tourism
## 2708                       Business          Hunting Tourism
## 2709           Leisure and Holidays            Beach Tourism
## 2710           Leisure and Holidays            Beach Tourism
## 2711           Leisure and Holidays          Widlife Tourism
## 2713           Leisure and Holidays          Widlife Tourism
## 2714 Visiting Friends and Relatives            Beach Tourism
## 2715 Visiting Friends and Relatives         Cultural Tourism
## 2716                          Other             Bird Tourism
## 2717                       Business            Beach Tourism
## 2718           Leisure and Holidays         Wildlife Tourism
## 2720           Leisure and Holidays          Widlife Tourism
## 2721           Leisure and Holidays         Wildlife Tourism
## 2722                       Business          Widlife Tourism
## 2723           Leisure and Holidays            Beach Tourism
## 2724           Leisure and Holidays          Hunting Tourism
## 2725        Meetings and Conference       Conference Tourism
## 2726                       Business          Widlife Tourism
## 2727                       Business          Widlife Tourism
## 2728           Leisure and Holidays          Widlife Tourism
## 2729           Leisure and Holidays          Widlife Tourism
## 2730           Leisure and Holidays       Conference Tourism
## 2731 Visiting Friends and Relatives          Hunting Tourism
## 2732           Leisure and Holidays          Widlife Tourism
## 2733           Leisure and Holidays         Cultural Tourism
## 2734           Leisure and Holidays          Widlife Tourism
## 2735           Leisure and Holidays            Beach Tourism
## 2737        Meetings and Conference            Beach Tourism
## 2738           Leisure and Holidays            Beach Tourism
## 2739           Leisure and Holidays            Beach Tourism
## 2740           Leisure and Holidays          Widlife Tourism
## 2741                   Volunteering          Hunting Tourism
## 2742           Leisure and Holidays       Conference Tourism
## 2743           Leisure and Holidays          Widlife Tourism
## 2744           Leisure and Holidays            Beach Tourism
## 2745           Leisure and Holidays         Wildlife Tourism
## 2746           Leisure and Holidays            Beach Tourism
## 2747           Leisure and Holidays       Conference Tourism
## 2748           Leisure and Holidays            Beach Tourism
## 2749           Leisure and Holidays       Conference Tourism
## 2750                   Volunteering          Hunting Tourism
## 2751           Leisure and Holidays            Beach Tourism
## 2752 Visiting Friends and Relatives            Beach Tourism
## 2753           Leisure and Holidays            Beach Tourism
## 2755           Leisure and Holidays          Widlife Tourism
## 2756        Meetings and Conference       Conference Tourism
## 2757           Leisure and Holidays            Beach Tourism
## 2760           Leisure and Holidays            Beach Tourism
## 2761                       Business          Widlife Tourism
## 2762                   Volunteering          Widlife Tourism
## 2763           Leisure and Holidays          Widlife Tourism
## 2764           Leisure and Holidays         Wildlife Tourism
## 2765                          Other          Hunting Tourism
## 2766           Leisure and Holidays       Conference Tourism
## 2767                       Business         Wildlife Tourism
## 2768           Leisure and Holidays       Conference Tourism
## 2769           Leisure and Holidays          Widlife Tourism
## 2770           Leisure and Holidays          Widlife Tourism
## 2771           Leisure and Holidays            Beach Tourism
## 2772           Leisure and Holidays          Widlife Tourism
## 2773           Leisure and Holidays       Conference Tourism
## 2774 Visiting Friends and Relatives         Cultural Tourism
## 2775        Meetings and Conference       Conference Tourism
## 2776           Leisure and Holidays       Conference Tourism
## 2777           Leisure and Holidays            Beach Tourism
## 2778           Leisure and Holidays          Widlife Tourism
## 2779           Leisure and Holidays         Cultural Tourism
## 2780                       Business            Beach Tourism
## 2781           Leisure and Holidays          Widlife Tourism
## 2782        Meetings and Conference          Widlife Tourism
## 2783 Visiting Friends and Relatives         Cultural Tourism
## 2784                       Business             Bird Tourism
## 2785           Leisure and Holidays            Beach Tourism
## 2786           Leisure and Holidays          Widlife Tourism
## 2787        Meetings and Conference       Conference Tourism
## 2788           Leisure and Holidays       Conference Tourism
## 2789           Leisure and Holidays          Widlife Tourism
## 2790 Visiting Friends and Relatives          Hunting Tourism
## 2791           Leisure and Holidays Diving and Sport Fishing
## 2792           Leisure and Holidays          Widlife Tourism
## 2793           Leisure and Holidays         Wildlife Tourism
## 2794 Visiting Friends and Relatives            Beach Tourism
## 2795        Meetings and Conference            Beach Tourism
## 2796           Leisure and Holidays          Widlife Tourism
## 2797        Meetings and Conference          Widlife Tourism
## 2798           Leisure and Holidays            Beach Tourism
## 2799        Meetings and Conference       Conference Tourism
## 2800           Leisure and Holidays          Widlife Tourism
## 2801 Visiting Friends and Relatives            Beach Tourism
## 2802 Visiting Friends and Relatives            Beach Tourism
## 2803           Leisure and Holidays          Widlife Tourism
## 2804           Leisure and Holidays            Beach Tourism
## 2805           Leisure and Holidays            Beach Tourism
## 2806                       Business         Wildlife Tourism
## 2807           Leisure and Holidays                 Business
## 2808           Leisure and Holidays         Cultural Tourism
## 2809           Leisure and Holidays         Cultural Tourism
## 2810                       Business         Wildlife Tourism
## 2811           Leisure and Holidays          Widlife Tourism
## 2813           Leisure and Holidays          Widlife Tourism
## 2814           Leisure and Holidays          Hunting Tourism
## 2815           Leisure and Holidays            Beach Tourism
## 2816           Leisure and Holidays       Conference Tourism
## 2817           Leisure and Holidays          Hunting Tourism
## 2818           Leisure and Holidays            Beach Tourism
## 2821           Leisure and Holidays          Widlife Tourism
## 2822           Leisure and Holidays             Bird Tourism
## 2823 Visiting Friends and Relatives            Beach Tourism
## 2824           Leisure and Holidays          Widlife Tourism
## 2825           Leisure and Holidays          Widlife Tourism
## 2826 Visiting Friends and Relatives            Beach Tourism
## 2827           Leisure and Holidays            Beach Tourism
## 2828           Leisure and Holidays          Widlife Tourism
## 2829                       Business          Widlife Tourism
## 2831           Leisure and Holidays         Wildlife Tourism
## 2832           Leisure and Holidays            Beach Tourism
## 2833           Leisure and Holidays          Widlife Tourism
## 2834           Leisure and Holidays         Wildlife Tourism
## 2835           Leisure and Holidays            Beach Tourism
## 2836           Leisure and Holidays          Widlife Tourism
## 2837           Leisure and Holidays          Widlife Tourism
## 2838        Meetings and Conference          Widlife Tourism
## 2839           Leisure and Holidays            Beach Tourism
## 2840                       Business            Beach Tourism
## 2841           Leisure and Holidays       Conference Tourism
## 2842           Leisure and Holidays       Conference Tourism
## 2843                       Business       Conference Tourism
## 2844           Leisure and Holidays          Widlife Tourism
## 2845           Leisure and Holidays          Widlife Tourism
## 2846           Leisure and Holidays          Widlife Tourism
## 2850           Leisure and Holidays          Widlife Tourism
## 2851                       Business          Hunting Tourism
## 2852                       Business          Widlife Tourism
## 2853           Leisure and Holidays            Beach Tourism
## 2854           Leisure and Holidays       Conference Tourism
## 2855           Leisure and Holidays            Beach Tourism
## 2856           Leisure and Holidays          Widlife Tourism
## 2857           Leisure and Holidays         Cultural Tourism
## 2858           Leisure and Holidays            Beach Tourism
## 2859           Leisure and Holidays          Widlife Tourism
## 2860                       Business          Widlife Tourism
## 2862                       Business         Cultural Tourism
## 2863           Leisure and Holidays         Cultural Tourism
## 2864           Leisure and Holidays                 Business
## 2865        Meetings and Conference        Mountain Climbing
## 2866           Leisure and Holidays         Wildlife Tourism
## 2868 Visiting Friends and Relatives          Widlife Tourism
## 2869           Leisure and Holidays            Beach Tourism
## 2870           Leisure and Holidays            Beach Tourism
## 2871           Leisure and Holidays          Widlife Tourism
## 2872           Leisure and Holidays          Widlife Tourism
## 2874                       Business                 Business
## 2875                       Business          Hunting Tourism
## 2876 Visiting Friends and Relatives            Beach Tourism
## 2877           Leisure and Holidays       Conference Tourism
## 2878           Leisure and Holidays       Conference Tourism
## 2879           Leisure and Holidays            Beach Tourism
## 2880           Leisure and Holidays            Beach Tourism
## 2881           Leisure and Holidays          Widlife Tourism
## 2882                       Business          Hunting Tourism
## 2883        Scientific and Academic          Hunting Tourism
## 2885           Leisure and Holidays          Widlife Tourism
## 2886           Leisure and Holidays            Beach Tourism
## 2887           Leisure and Holidays            Beach Tourism
## 2888           Leisure and Holidays          Widlife Tourism
## 2889           Leisure and Holidays          Widlife Tourism
## 2890           Leisure and Holidays          Widlife Tourism
## 2891           Leisure and Holidays            Beach Tourism
## 2892           Leisure and Holidays            Beach Tourism
## 2893        Scientific and Academic            Beach Tourism
## 2894           Leisure and Holidays       Conference Tourism
## 2895           Leisure and Holidays            Beach Tourism
## 2896 Visiting Friends and Relatives            Beach Tourism
## 2897           Leisure and Holidays       Conference Tourism
## 2898                       Business          Hunting Tourism
## 2899           Leisure and Holidays         Cultural Tourism
## 2900 Visiting Friends and Relatives            Beach Tourism
## 2901           Leisure and Holidays         Cultural Tourism
## 2902           Leisure and Holidays            Beach Tourism
## 2903        Meetings and Conference        Mountain Climbing
## 2904           Leisure and Holidays          Widlife Tourism
## 2905                       Business         Wildlife Tourism
## 2906 Visiting Friends and Relatives            Beach Tourism
## 2909           Leisure and Holidays          Hunting Tourism
## 2910                          Other          Hunting Tourism
## 2911           Leisure and Holidays         Cultural Tourism
## 2912           Leisure and Holidays         Wildlife Tourism
## 2913           Leisure and Holidays         Wildlife Tourism
## 2914 Visiting Friends and Relatives            Beach Tourism
## 2915                       Business         Wildlife Tourism
## 2916           Leisure and Holidays          Widlife Tourism
## 2917           Leisure and Holidays          Widlife Tourism
## 2918           Leisure and Holidays       Conference Tourism
## 2919                   Volunteering         Cultural Tourism
## 2921           Leisure and Holidays            Beach Tourism
## 2922        Meetings and Conference        Mountain Climbing
## 2923                       Business          Widlife Tourism
## 2924        Meetings and Conference            Beach Tourism
## 2925 Visiting Friends and Relatives          Hunting Tourism
## 2926        Meetings and Conference                 Business
## 2927 Visiting Friends and Relatives            Beach Tourism
## 2928           Leisure and Holidays         Wildlife Tourism
## 2929           Leisure and Holidays            Beach Tourism
## 2930           Leisure and Holidays          Widlife Tourism
## 2931                   Volunteering          Hunting Tourism
## 2932 Visiting Friends and Relatives         Cultural Tourism
## 2933           Leisure and Holidays          Widlife Tourism
## 2934           Leisure and Holidays         Wildlife Tourism
## 2935           Leisure and Holidays            Beach Tourism
## 2936           Leisure and Holidays          Widlife Tourism
## 2937           Leisure and Holidays         Wildlife Tourism
## 2938           Leisure and Holidays       Conference Tourism
## 2939           Leisure and Holidays          Widlife Tourism
## 2940           Leisure and Holidays         Wildlife Tourism
## 2941           Leisure and Holidays          Widlife Tourism
## 2942 Visiting Friends and Relatives          Widlife Tourism
## 2943                          Other            Beach Tourism
## 2944                       Business          Hunting Tourism
## 2946           Leisure and Holidays            Beach Tourism
## 2947           Leisure and Holidays         Wildlife Tourism
## 2948           Leisure and Holidays          Widlife Tourism
## 2949           Leisure and Holidays         Wildlife Tourism
## 2950           Leisure and Holidays            Beach Tourism
## 2951           Leisure and Holidays       Conference Tourism
## 2952        Scientific and Academic          Hunting Tourism
## 2953           Leisure and Holidays         Wildlife Tourism
## 2954                       Business          Widlife Tourism
## 2955 Visiting Friends and Relatives            Beach Tourism
## 2956 Visiting Friends and Relatives         Wildlife Tourism
## 2957           Leisure and Holidays          Widlife Tourism
## 2958           Leisure and Holidays          Widlife Tourism
## 2959           Leisure and Holidays       Conference Tourism
## 2960 Visiting Friends and Relatives            Beach Tourism
## 2961           Leisure and Holidays            Beach Tourism
## 2962        Meetings and Conference            Beach Tourism
## 2964           Leisure and Holidays                 Business
## 2965           Leisure and Holidays            Beach Tourism
## 2966           Leisure and Holidays       Conference Tourism
## 2967 Visiting Friends and Relatives         Cultural Tourism
## 2968           Leisure and Holidays          Widlife Tourism
## 2969           Leisure and Holidays          Widlife Tourism
## 2970           Leisure and Holidays          Widlife Tourism
## 2971           Leisure and Holidays          Widlife Tourism
## 2972           Leisure and Holidays            Beach Tourism
## 2973           Leisure and Holidays         Wildlife Tourism
## 2974                          Other            Beach Tourism
## 2975 Visiting Friends and Relatives          Widlife Tourism
## 2976           Leisure and Holidays          Widlife Tourism
## 2977           Leisure and Holidays       Conference Tourism
## 2978           Leisure and Holidays       Conference Tourism
## 2980                       Business          Hunting Tourism
## 2982           Leisure and Holidays          Widlife Tourism
## 2983                       Business                 Business
## 2984           Leisure and Holidays          Widlife Tourism
## 2985           Leisure and Holidays          Widlife Tourism
## 2986           Leisure and Holidays       Conference Tourism
## 2987           Leisure and Holidays       Conference Tourism
## 2988        Meetings and Conference       Conference Tourism
## 2989           Leisure and Holidays         Wildlife Tourism
## 2990 Visiting Friends and Relatives          Widlife Tourism
## 2991 Visiting Friends and Relatives            Beach Tourism
## 2992           Leisure and Holidays         Wildlife Tourism
## 2993           Leisure and Holidays         Wildlife Tourism
## 2994           Leisure and Holidays            Beach Tourism
## 2995           Leisure and Holidays          Widlife Tourism
## 2996           Leisure and Holidays            Beach Tourism
## 2997 Visiting Friends and Relatives            Beach Tourism
## 2998           Leisure and Holidays         Wildlife Tourism
## 2999           Leisure and Holidays          Widlife Tourism
## 3000           Leisure and Holidays Diving and Sport Fishing
## 3002           Leisure and Holidays            Beach Tourism
## 3003           Leisure and Holidays         Wildlife Tourism
## 3004                       Business          Widlife Tourism
## 3005           Leisure and Holidays            Beach Tourism
## 3006                       Business        Mountain Climbing
## 3007           Leisure and Holidays            Beach Tourism
## 3008           Leisure and Holidays         Wildlife Tourism
## 3009           Leisure and Holidays          Widlife Tourism
## 3010           Leisure and Holidays         Wildlife Tourism
## 3011           Leisure and Holidays            Beach Tourism
## 3012                   Volunteering          Widlife Tourism
## 3013           Leisure and Holidays            Beach Tourism
## 3015           Leisure and Holidays          Widlife Tourism
## 3016 Visiting Friends and Relatives             Bird Tourism
## 3017           Leisure and Holidays            Beach Tourism
## 3018                          Other          Hunting Tourism
## 3019           Leisure and Holidays          Widlife Tourism
## 3020           Leisure and Holidays          Widlife Tourism
## 3021           Leisure and Holidays       Conference Tourism
## 3022           Leisure and Holidays          Widlife Tourism
## 3023           Leisure and Holidays         Wildlife Tourism
## 3024           Leisure and Holidays       Conference Tourism
## 3025           Leisure and Holidays         Wildlife Tourism
## 3027           Leisure and Holidays       Conference Tourism
## 3028           Leisure and Holidays          Widlife Tourism
## 3029        Meetings and Conference          Widlife Tourism
## 3030           Leisure and Holidays          Widlife Tourism
## 3031 Visiting Friends and Relatives          Widlife Tourism
## 3032           Leisure and Holidays          Widlife Tourism
## 3033           Leisure and Holidays            Beach Tourism
## 3034 Visiting Friends and Relatives          Hunting Tourism
## 3035           Leisure and Holidays          Widlife Tourism
## 3036           Leisure and Holidays          Widlife Tourism
## 3037           Leisure and Holidays          Widlife Tourism
## 3038 Visiting Friends and Relatives                 Business
## 3039           Leisure and Holidays          Widlife Tourism
## 3040           Leisure and Holidays         Wildlife Tourism
## 3041 Visiting Friends and Relatives         Cultural Tourism
## 3042           Leisure and Holidays          Widlife Tourism
## 3044           Leisure and Holidays       Conference Tourism
## 3045                       Business          Hunting Tourism
## 3046           Leisure and Holidays         Wildlife Tourism
## 3047 Visiting Friends and Relatives         Cultural Tourism
## 3048           Leisure and Holidays         Cultural Tourism
## 3049                       Business          Hunting Tourism
## 3050           Leisure and Holidays          Widlife Tourism
## 3051           Leisure and Holidays          Widlife Tourism
## 3053        Meetings and Conference        Mountain Climbing
## 3054        Meetings and Conference            Beach Tourism
## 3055           Leisure and Holidays            Beach Tourism
## 3056                       Business          Hunting Tourism
## 3057        Meetings and Conference         Cultural Tourism
## 3058           Leisure and Holidays          Widlife Tourism
## 3060           Leisure and Holidays            Beach Tourism
## 3061                       Business          Widlife Tourism
## 3062           Leisure and Holidays       Conference Tourism
## 3063           Leisure and Holidays          Widlife Tourism
## 3064           Leisure and Holidays          Hunting Tourism
## 3065                       Business          Hunting Tourism
## 3066           Leisure and Holidays         Wildlife Tourism
## 3067           Leisure and Holidays          Widlife Tourism
## 3068        Meetings and Conference          Hunting Tourism
## 3069           Leisure and Holidays            Beach Tourism
## 3070                       Business         Cultural Tourism
## 3071        Meetings and Conference        Mountain Climbing
## 3072           Leisure and Holidays         Wildlife Tourism
## 3073           Leisure and Holidays         Wildlife Tourism
## 3074                       Business          Widlife Tourism
## 3075           Leisure and Holidays            Beach Tourism
## 3076           Leisure and Holidays          Widlife Tourism
## 3078                       Business          Hunting Tourism
## 3079                       Business            Beach Tourism
## 3080 Visiting Friends and Relatives          Widlife Tourism
## 3081           Leisure and Holidays            Beach Tourism
## 3082           Leisure and Holidays          Widlife Tourism
## 3084           Leisure and Holidays          Widlife Tourism
## 3085                       Business        Mountain Climbing
## 3086           Leisure and Holidays          Widlife Tourism
## 3087                   Volunteering          Widlife Tourism
## 3088           Leisure and Holidays            Beach Tourism
## 3090           Leisure and Holidays       Conference Tourism
## 3091           Leisure and Holidays          Widlife Tourism
## 3092           Leisure and Holidays            Beach Tourism
## 3093        Meetings and Conference        Mountain Climbing
## 3094 Visiting Friends and Relatives            Beach Tourism
## 3095                       Business         Wildlife Tourism
## 3096        Meetings and Conference          Hunting Tourism
## 3097           Leisure and Holidays         Wildlife Tourism
## 3098           Leisure and Holidays       Conference Tourism
## 3099           Leisure and Holidays       Conference Tourism
## 3100           Leisure and Holidays            Beach Tourism
## 3101           Leisure and Holidays          Widlife Tourism
## 3102           Leisure and Holidays            Beach Tourism
## 3103                       Business         Cultural Tourism
## 3104           Leisure and Holidays         Wildlife Tourism
## 3105                       Business          Hunting Tourism
## 3106 Visiting Friends and Relatives          Widlife Tourism
## 3107           Leisure and Holidays          Widlife Tourism
## 3108           Leisure and Holidays            Beach Tourism
## 3109           Leisure and Holidays            Beach Tourism
## 3110                       Business          Hunting Tourism
## 3111           Leisure and Holidays            Beach Tourism
## 3112                       Business         Cultural Tourism
## 3113           Leisure and Holidays          Widlife Tourism
## 3114           Leisure and Holidays          Widlife Tourism
## 3115           Leisure and Holidays       Conference Tourism
## 3116           Leisure and Holidays          Widlife Tourism
## 3117           Leisure and Holidays            Beach Tourism
## 3118 Visiting Friends and Relatives          Hunting Tourism
## 3119           Leisure and Holidays          Widlife Tourism
## 3120           Leisure and Holidays       Conference Tourism
## 3121           Leisure and Holidays            Beach Tourism
## 3122        Meetings and Conference        Mountain Climbing
## 3123           Leisure and Holidays          Widlife Tourism
## 3124           Leisure and Holidays       Conference Tourism
## 3126           Leisure and Holidays       Conference Tourism
## 3127 Visiting Friends and Relatives          Widlife Tourism
## 3128           Leisure and Holidays            Beach Tourism
## 3129        Meetings and Conference        Mountain Climbing
## 3130           Leisure and Holidays       Conference Tourism
## 3131           Leisure and Holidays            Beach Tourism
## 3132        Meetings and Conference          Hunting Tourism
## 3133        Meetings and Conference       Conference Tourism
## 3134           Leisure and Holidays            Beach Tourism
## 3136           Leisure and Holidays          Widlife Tourism
## 3137           Leisure and Holidays          Widlife Tourism
## 3138           Leisure and Holidays          Widlife Tourism
## 3139           Leisure and Holidays            Beach Tourism
## 3140                       Business            Beach Tourism
## 3141           Leisure and Holidays            Beach Tourism
## 3142           Leisure and Holidays            Beach Tourism
## 3143        Meetings and Conference          Widlife Tourism
## 3144           Leisure and Holidays          Widlife Tourism
## 3145           Leisure and Holidays          Widlife Tourism
## 3146           Leisure and Holidays            Beach Tourism
## 3147           Leisure and Holidays            Beach Tourism
## 3148           Leisure and Holidays            Beach Tourism
## 3149 Visiting Friends and Relatives         Wildlife Tourism
## 3150 Visiting Friends and Relatives            Beach Tourism
## 3151 Visiting Friends and Relatives         Cultural Tourism
## 3152 Visiting Friends and Relatives            Beach Tourism
## 3153           Leisure and Holidays          Widlife Tourism
## 3154                       Business         Wildlife Tourism
## 3155           Leisure and Holidays            Beach Tourism
## 3156        Meetings and Conference         Wildlife Tourism
## 3157           Leisure and Holidays          Widlife Tourism
## 3158           Leisure and Holidays          Widlife Tourism
## 3159           Leisure and Holidays          Widlife Tourism
## 3160                       Business         Cultural Tourism
## 3161           Leisure and Holidays                 Business
## 3162           Leisure and Holidays          Widlife Tourism
## 3163 Visiting Friends and Relatives         Cultural Tourism
## 3164           Leisure and Holidays          Widlife Tourism
## 3165           Leisure and Holidays         Wildlife Tourism
## 3166                       Business         Wildlife Tourism
## 3167           Leisure and Holidays          Widlife Tourism
## 3168           Leisure and Holidays          Widlife Tourism
## 3169                       Business         Wildlife Tourism
## 3170           Leisure and Holidays          Widlife Tourism
## 3171                       Business          Hunting Tourism
## 3172 Visiting Friends and Relatives         Cultural Tourism
## 3173           Leisure and Holidays            Beach Tourism
## 3174           Leisure and Holidays          Widlife Tourism
## 3175           Leisure and Holidays         Wildlife Tourism
## 3177 Visiting Friends and Relatives          Hunting Tourism
## 3178        Meetings and Conference          Widlife Tourism
## 3179                       Business            Beach Tourism
## 3180           Leisure and Holidays          Widlife Tourism
## 3181           Leisure and Holidays         Cultural Tourism
## 3182                       Business          Widlife Tourism
## 3183 Visiting Friends and Relatives            Beach Tourism
## 3184 Visiting Friends and Relatives          Widlife Tourism
## 3185           Leisure and Holidays          Widlife Tourism
## 3186           Leisure and Holidays          Widlife Tourism
## 3187           Leisure and Holidays          Widlife Tourism
## 3188           Leisure and Holidays          Widlife Tourism
## 3189           Leisure and Holidays            Beach Tourism
## 3190           Leisure and Holidays          Widlife Tourism
## 3191           Leisure and Holidays          Widlife Tourism
## 3192           Leisure and Holidays          Widlife Tourism
## 3193           Leisure and Holidays          Widlife Tourism
## 3194           Leisure and Holidays         Wildlife Tourism
## 3195 Visiting Friends and Relatives         Cultural Tourism
## 3196           Leisure and Holidays            Beach Tourism
## 3197           Leisure and Holidays       Conference Tourism
## 3198           Leisure and Holidays            Beach Tourism
## 3199 Visiting Friends and Relatives          Widlife Tourism
## 3200           Leisure and Holidays         Cultural Tourism
## 3201           Leisure and Holidays         Wildlife Tourism
## 3202           Leisure and Holidays            Beach Tourism
## 3203                       Business            Beach Tourism
## 3204           Leisure and Holidays            Beach Tourism
## 3205           Leisure and Holidays            Beach Tourism
## 3206           Leisure and Holidays         Wildlife Tourism
## 3207           Leisure and Holidays            Beach Tourism
## 3208           Leisure and Holidays            Beach Tourism
## 3210           Leisure and Holidays          Widlife Tourism
## 3211        Meetings and Conference        Mountain Climbing
## 3213           Leisure and Holidays         Cultural Tourism
## 3215           Leisure and Holidays          Widlife Tourism
## 3216           Leisure and Holidays          Widlife Tourism
## 3217                       Business          Widlife Tourism
## 3218           Leisure and Holidays       Conference Tourism
## 3219        Meetings and Conference          Widlife Tourism
## 3221        Meetings and Conference          Widlife Tourism
## 3222           Leisure and Holidays       Conference Tourism
## 3223 Visiting Friends and Relatives          Hunting Tourism
## 3224                       Business          Hunting Tourism
## 3225           Leisure and Holidays         Wildlife Tourism
## 3226           Leisure and Holidays          Widlife Tourism
## 3227                          Other            Beach Tourism
## 3228           Leisure and Holidays          Widlife Tourism
## 3229           Leisure and Holidays         Cultural Tourism
## 3230           Leisure and Holidays            Beach Tourism
## 3231           Leisure and Holidays         Wildlife Tourism
## 3232 Visiting Friends and Relatives            Beach Tourism
## 3233           Leisure and Holidays            Beach Tourism
## 3234           Leisure and Holidays         Wildlife Tourism
## 3235           Leisure and Holidays       Conference Tourism
## 3236           Leisure and Holidays          Widlife Tourism
## 3238                          Other            Beach Tourism
## 3239           Leisure and Holidays          Widlife Tourism
## 3240           Leisure and Holidays            Beach Tourism
## 3241           Leisure and Holidays          Widlife Tourism
## 3242           Leisure and Holidays       Conference Tourism
## 3243                       Business            Beach Tourism
## 3244           Leisure and Holidays         Wildlife Tourism
## 3245        Meetings and Conference        Mountain Climbing
## 3246           Leisure and Holidays          Widlife Tourism
## 3247           Leisure and Holidays            Beach Tourism
## 3248                       Business          Widlife Tourism
## 3249           Leisure and Holidays          Widlife Tourism
## 3250 Visiting Friends and Relatives         Cultural Tourism
## 3251 Visiting Friends and Relatives            Beach Tourism
## 3252           Leisure and Holidays            Beach Tourism
## 3253        Meetings and Conference       Conference Tourism
## 3254           Leisure and Holidays          Widlife Tourism
## 3255 Visiting Friends and Relatives          Hunting Tourism
## 3256           Leisure and Holidays            Beach Tourism
## 3257        Scientific and Academic          Hunting Tourism
## 3258           Leisure and Holidays          Hunting Tourism
## 3259                       Business        Mountain Climbing
## 3260           Leisure and Holidays          Widlife Tourism
## 3261 Visiting Friends and Relatives         Wildlife Tourism
## 3262           Leisure and Holidays         Wildlife Tourism
## 3263           Leisure and Holidays            Beach Tourism
## 3264           Leisure and Holidays            Beach Tourism
## 3266           Leisure and Holidays         Cultural Tourism
## 3267           Leisure and Holidays       Conference Tourism
## 3268           Leisure and Holidays            Beach Tourism
## 3269           Leisure and Holidays            Beach Tourism
## 3270           Leisure and Holidays       Conference Tourism
## 3271           Leisure and Holidays         Cultural Tourism
## 3272           Leisure and Holidays            Beach Tourism
## 3273 Visiting Friends and Relatives          Hunting Tourism
## 3274           Leisure and Holidays       Conference Tourism
## 3275           Leisure and Holidays       Conference Tourism
## 3276           Leisure and Holidays         Cultural Tourism
## 3277           Leisure and Holidays       Conference Tourism
## 3278                   Volunteering          Widlife Tourism
## 3279 Visiting Friends and Relatives          Widlife Tourism
## 3280           Leisure and Holidays            Beach Tourism
## 3282           Leisure and Holidays          Widlife Tourism
## 3283           Leisure and Holidays         Wildlife Tourism
## 3284                       Business          Widlife Tourism
## 3285           Leisure and Holidays          Widlife Tourism
## 3286           Leisure and Holidays         Wildlife Tourism
## 3287           Leisure and Holidays            Beach Tourism
## 3288           Leisure and Holidays       Conference Tourism
## 3289           Leisure and Holidays          Widlife Tourism
## 3290           Leisure and Holidays         Cultural Tourism
## 3291           Leisure and Holidays         Wildlife Tourism
## 3292           Leisure and Holidays          Widlife Tourism
## 3293           Leisure and Holidays         Wildlife Tourism
## 3294           Leisure and Holidays          Widlife Tourism
## 3295           Leisure and Holidays                 Business
## 3296                       Business          Widlife Tourism
## 3297           Leisure and Holidays            Beach Tourism
## 3298           Leisure and Holidays          Widlife Tourism
## 3299           Leisure and Holidays          Widlife Tourism
## 3300           Leisure and Holidays            Beach Tourism
## 3301           Leisure and Holidays       Conference Tourism
## 3302           Leisure and Holidays         Wildlife Tourism
## 3303           Leisure and Holidays          Widlife Tourism
## 3305 Visiting Friends and Relatives          Hunting Tourism
## 3306                       Business          Hunting Tourism
## 3307           Leisure and Holidays            Beach Tourism
## 3308           Leisure and Holidays          Widlife Tourism
## 3309 Visiting Friends and Relatives            Beach Tourism
## 3310           Leisure and Holidays          Widlife Tourism
## 3312                       Business         Cultural Tourism
## 3313 Visiting Friends and Relatives            Beach Tourism
## 3314           Leisure and Holidays       Conference Tourism
## 3315 Visiting Friends and Relatives          Widlife Tourism
## 3316           Leisure and Holidays       Conference Tourism
## 3317 Visiting Friends and Relatives            Beach Tourism
## 3318           Leisure and Holidays          Widlife Tourism
## 3319                       Business         Wildlife Tourism
## 3320                          Other          Hunting Tourism
## 3321 Visiting Friends and Relatives          Hunting Tourism
## 3322           Leisure and Holidays         Wildlife Tourism
## 3323        Meetings and Conference            Beach Tourism
## 3324 Visiting Friends and Relatives          Hunting Tourism
## 3325           Leisure and Holidays          Hunting Tourism
## 3326                       Business            Beach Tourism
## 3327           Leisure and Holidays          Widlife Tourism
## 3328        Meetings and Conference          Widlife Tourism
## 3330           Leisure and Holidays            Beach Tourism
## 3331           Leisure and Holidays          Widlife Tourism
## 3332           Leisure and Holidays       Conference Tourism
## 3334           Leisure and Holidays         Wildlife Tourism
## 3335           Leisure and Holidays            Beach Tourism
## 3336           Leisure and Holidays          Widlife Tourism
## 3337                   Volunteering          Widlife Tourism
## 3338           Leisure and Holidays            Beach Tourism
## 3339                       Business          Hunting Tourism
## 3340 Visiting Friends and Relatives       Conference Tourism
## 3341           Leisure and Holidays       Conference Tourism
## 3342           Leisure and Holidays          Widlife Tourism
## 3343 Visiting Friends and Relatives            Beach Tourism
## 3344        Meetings and Conference        Mountain Climbing
## 3346           Leisure and Holidays          Widlife Tourism
## 3347           Leisure and Holidays          Widlife Tourism
## 3348           Leisure and Holidays       Conference Tourism
## 3349           Leisure and Holidays            Beach Tourism
## 3350           Leisure and Holidays         Wildlife Tourism
## 3351                       Business            Beach Tourism
## 3352           Leisure and Holidays          Widlife Tourism
## 3353           Leisure and Holidays          Widlife Tourism
## 3354           Leisure and Holidays            Beach Tourism
## 3355           Leisure and Holidays            Beach Tourism
## 3356           Leisure and Holidays         Wildlife Tourism
## 3357 Visiting Friends and Relatives            Beach Tourism
## 3358           Leisure and Holidays            Beach Tourism
## 3359           Leisure and Holidays       Conference Tourism
## 3360           Leisure and Holidays         Wildlife Tourism
## 3361           Leisure and Holidays            Beach Tourism
## 3362           Leisure and Holidays         Wildlife Tourism
## 3363                       Business          Widlife Tourism
## 3364                       Business        Mountain Climbing
## 3365           Leisure and Holidays         Wildlife Tourism
## 3366                       Business         Cultural Tourism
## 3367           Leisure and Holidays          Widlife Tourism
## 3368 Visiting Friends and Relatives          Widlife Tourism
## 3369           Leisure and Holidays             Bird Tourism
## 3370           Leisure and Holidays          Widlife Tourism
## 3371 Visiting Friends and Relatives          Widlife Tourism
## 3372           Leisure and Holidays         Wildlife Tourism
## 3373           Leisure and Holidays            Beach Tourism
## 3374           Leisure and Holidays            Beach Tourism
## 3376        Meetings and Conference          Widlife Tourism
## 3377           Leisure and Holidays          Widlife Tourism
## 3378        Meetings and Conference          Widlife Tourism
## 3379                       Business          Widlife Tourism
## 3380           Leisure and Holidays            Beach Tourism
## 3381           Leisure and Holidays            Beach Tourism
## 3382           Leisure and Holidays          Widlife Tourism
## 3383           Leisure and Holidays            Beach Tourism
## 3384           Leisure and Holidays            Beach Tourism
## 3385           Leisure and Holidays       Conference Tourism
## 3386           Leisure and Holidays            Beach Tourism
## 3387           Leisure and Holidays         Wildlife Tourism
## 3388 Visiting Friends and Relatives            Beach Tourism
## 3389           Leisure and Holidays            Beach Tourism
## 3391           Leisure and Holidays         Wildlife Tourism
## 3392           Leisure and Holidays          Widlife Tourism
## 3393           Leisure and Holidays          Widlife Tourism
## 3394           Leisure and Holidays          Widlife Tourism
## 3395        Meetings and Conference       Conference Tourism
## 3396 Visiting Friends and Relatives            Beach Tourism
## 3398           Leisure and Holidays         Wildlife Tourism
## 3399        Meetings and Conference       Conference Tourism
## 3400           Leisure and Holidays          Widlife Tourism
## 3401                       Business          Widlife Tourism
## 3402           Leisure and Holidays          Widlife Tourism
## 3403           Leisure and Holidays          Widlife Tourism
## 3404           Leisure and Holidays          Widlife Tourism
## 3405 Visiting Friends and Relatives          Widlife Tourism
## 3406           Leisure and Holidays            Beach Tourism
## 3407           Leisure and Holidays          Widlife Tourism
## 3408           Leisure and Holidays            Beach Tourism
## 3409                       Business            Beach Tourism
## 3410           Leisure and Holidays          Widlife Tourism
## 3411           Leisure and Holidays          Widlife Tourism
## 3413                   Volunteering            Beach Tourism
## 3414           Leisure and Holidays            Beach Tourism
## 3415                          Other          Hunting Tourism
## 3416           Leisure and Holidays       Conference Tourism
## 3417                       Business         Cultural Tourism
## 3418           Leisure and Holidays          Widlife Tourism
## 3419           Leisure and Holidays          Widlife Tourism
## 3422           Leisure and Holidays         Wildlife Tourism
## 3423           Leisure and Holidays          Widlife Tourism
## 3424 Visiting Friends and Relatives          Hunting Tourism
## 3425           Leisure and Holidays         Wildlife Tourism
## 3426           Leisure and Holidays         Cultural Tourism
## 3428           Leisure and Holidays          Widlife Tourism
## 3429           Leisure and Holidays         Wildlife Tourism
## 3430           Leisure and Holidays          Widlife Tourism
## 3431           Leisure and Holidays         Wildlife Tourism
## 3432           Leisure and Holidays         Wildlife Tourism
## 3433 Visiting Friends and Relatives          Widlife Tourism
## 3434 Visiting Friends and Relatives          Widlife Tourism
## 3435           Leisure and Holidays            Beach Tourism
## 3436                       Business         Cultural Tourism
## 3437           Leisure and Holidays            Beach Tourism
## 3438           Leisure and Holidays            Beach Tourism
## 3439 Visiting Friends and Relatives         Cultural Tourism
## 3440           Leisure and Holidays            Beach Tourism
## 3441           Leisure and Holidays          Widlife Tourism
## 3442           Leisure and Holidays          Widlife Tourism
## 3443 Visiting Friends and Relatives            Beach Tourism
## 3444           Leisure and Holidays          Widlife Tourism
## 3445           Leisure and Holidays            Beach Tourism
## 3446                       Business                 Business
## 3447 Visiting Friends and Relatives         Wildlife Tourism
## 3448           Leisure and Holidays          Widlife Tourism
## 3449           Leisure and Holidays          Widlife Tourism
## 3450           Leisure and Holidays            Beach Tourism
## 3451           Leisure and Holidays          Widlife Tourism
## 3452           Leisure and Holidays          Widlife Tourism
## 3453           Leisure and Holidays         Wildlife Tourism
## 3454 Visiting Friends and Relatives          Widlife Tourism
## 3455           Leisure and Holidays          Widlife Tourism
## 3456           Leisure and Holidays         Cultural Tourism
## 3457        Meetings and Conference        Mountain Climbing
## 3458 Visiting Friends and Relatives          Widlife Tourism
## 3459           Leisure and Holidays            Beach Tourism
## 3460           Leisure and Holidays          Widlife Tourism
## 3461           Leisure and Holidays       Conference Tourism
## 3462                       Business          Hunting Tourism
## 3463           Leisure and Holidays            Beach Tourism
## 3464 Visiting Friends and Relatives          Widlife Tourism
## 3465           Leisure and Holidays            Beach Tourism
## 3466           Leisure and Holidays            Beach Tourism
## 3467 Visiting Friends and Relatives          Widlife Tourism
## 3468                   Volunteering         Cultural Tourism
## 3469           Leisure and Holidays          Widlife Tourism
## 3470           Leisure and Holidays          Widlife Tourism
## 3471                       Business          Widlife Tourism
## 3472                       Business         Cultural Tourism
## 3473        Scientific and Academic          Widlife Tourism
## 3474                       Business          Widlife Tourism
## 3476 Visiting Friends and Relatives          Hunting Tourism
## 3477           Leisure and Holidays          Widlife Tourism
## 3478                       Business          Widlife Tourism
## 3479           Leisure and Holidays            Beach Tourism
## 3480        Meetings and Conference       Conference Tourism
## 3481           Leisure and Holidays       Conference Tourism
## 3483           Leisure and Holidays          Widlife Tourism
## 3484 Visiting Friends and Relatives          Widlife Tourism
## 3485           Leisure and Holidays         Wildlife Tourism
## 3486           Leisure and Holidays       Conference Tourism
## 3487 Visiting Friends and Relatives            Beach Tourism
## 3489           Leisure and Holidays          Widlife Tourism
## 3490           Leisure and Holidays          Widlife Tourism
## 3491           Leisure and Holidays          Widlife Tourism
## 3492           Leisure and Holidays            Beach Tourism
## 3493           Leisure and Holidays          Widlife Tourism
## 3494           Leisure and Holidays          Widlife Tourism
## 3495           Leisure and Holidays          Widlife Tourism
## 3496           Leisure and Holidays         Cultural Tourism
## 3497           Leisure and Holidays          Widlife Tourism
## 3498           Leisure and Holidays       Conference Tourism
## 3499                       Business          Widlife Tourism
## 3500           Leisure and Holidays          Widlife Tourism
## 3501           Leisure and Holidays         Cultural Tourism
## 3502           Leisure and Holidays         Wildlife Tourism
## 3503 Visiting Friends and Relatives          Widlife Tourism
## 3504           Leisure and Holidays          Widlife Tourism
## 3505           Leisure and Holidays         Wildlife Tourism
## 3506           Leisure and Holidays          Widlife Tourism
## 3507           Leisure and Holidays          Widlife Tourism
## 3508                   Volunteering       Conference Tourism
## 3510           Leisure and Holidays          Widlife Tourism
## 3511           Leisure and Holidays            Beach Tourism
## 3512           Leisure and Holidays       Conference Tourism
## 3513           Leisure and Holidays          Widlife Tourism
## 3514           Leisure and Holidays          Widlife Tourism
## 3515           Leisure and Holidays          Widlife Tourism
## 3516           Leisure and Holidays          Widlife Tourism
## 3517           Leisure and Holidays          Widlife Tourism
## 3518                       Business          Widlife Tourism
## 3519           Leisure and Holidays         Cultural Tourism
## 3520           Leisure and Holidays         Wildlife Tourism
## 3521                       Business          Widlife Tourism
## 3522           Leisure and Holidays            Beach Tourism
## 3523           Leisure and Holidays          Widlife Tourism
## 3524           Leisure and Holidays            Beach Tourism
## 3525           Leisure and Holidays            Beach Tourism
## 3526           Leisure and Holidays          Widlife Tourism
## 3527 Visiting Friends and Relatives            Beach Tourism
## 3528                       Business            Beach Tourism
## 3529        Meetings and Conference       Conference Tourism
## 3530 Visiting Friends and Relatives         Wildlife Tourism
## 3531           Leisure and Holidays            Beach Tourism
## 3532           Leisure and Holidays          Widlife Tourism
## 3533                       Business        Mountain Climbing
## 3534           Leisure and Holidays          Widlife Tourism
## 3535        Meetings and Conference          Widlife Tourism
## 3536           Leisure and Holidays            Beach Tourism
## 3537                   Volunteering          Widlife Tourism
## 3538           Leisure and Holidays            Beach Tourism
## 3539        Meetings and Conference          Hunting Tourism
## 3540                   Volunteering       Conference Tourism
## 3541           Leisure and Holidays         Wildlife Tourism
## 3542           Leisure and Holidays       Conference Tourism
## 3544           Leisure and Holidays            Beach Tourism
## 3545 Visiting Friends and Relatives          Hunting Tourism
## 3546           Leisure and Holidays          Widlife Tourism
## 3547           Leisure and Holidays       Conference Tourism
## 3548           Leisure and Holidays         Wildlife Tourism
## 3549 Visiting Friends and Relatives         Cultural Tourism
## 3550           Leisure and Holidays       Conference Tourism
## 3551           Leisure and Holidays          Widlife Tourism
## 3552                   Volunteering            Beach Tourism
## 3553           Leisure and Holidays       Conference Tourism
## 3554           Leisure and Holidays          Widlife Tourism
## 3555           Leisure and Holidays       Conference Tourism
## 3556                       Business          Widlife Tourism
## 3557                       Business          Widlife Tourism
## 3558           Leisure and Holidays         Wildlife Tourism
## 3559           Leisure and Holidays         Wildlife Tourism
## 3560           Leisure and Holidays          Hunting Tourism
## 3561           Leisure and Holidays         Cultural Tourism
## 3562           Leisure and Holidays         Wildlife Tourism
## 3563        Meetings and Conference         Wildlife Tourism
## 3564           Leisure and Holidays          Widlife Tourism
## 3565           Leisure and Holidays          Widlife Tourism
## 3567           Leisure and Holidays         Wildlife Tourism
## 3568           Leisure and Holidays            Beach Tourism
## 3569           Leisure and Holidays         Cultural Tourism
## 3570           Leisure and Holidays          Widlife Tourism
## 3571           Leisure and Holidays            Beach Tourism
## 3573 Visiting Friends and Relatives            Beach Tourism
## 3574 Visiting Friends and Relatives          Hunting Tourism
## 3575           Leisure and Holidays          Widlife Tourism
## 3576                       Business          Hunting Tourism
## 3577           Leisure and Holidays         Wildlife Tourism
## 3578 Visiting Friends and Relatives          Hunting Tourism
## 3579                       Business            Beach Tourism
## 3580                       Business          Hunting Tourism
## 3581           Leisure and Holidays         Cultural Tourism
## 3582           Leisure and Holidays          Widlife Tourism
## 3583        Meetings and Conference            Beach Tourism
## 3584           Leisure and Holidays          Widlife Tourism
## 3585           Leisure and Holidays          Widlife Tourism
## 3586           Leisure and Holidays          Widlife Tourism
## 3587        Meetings and Conference       Conference Tourism
## 3588                       Business        Mountain Climbing
## 3589        Meetings and Conference        Mountain Climbing
## 3590                       Business       Conference Tourism
## 3591           Leisure and Holidays          Widlife Tourism
## 3592           Leisure and Holidays         Wildlife Tourism
## 3593           Leisure and Holidays       Conference Tourism
## 3594                       Business          Widlife Tourism
## 3595           Leisure and Holidays          Widlife Tourism
## 3596        Meetings and Conference          Widlife Tourism
## 3597           Leisure and Holidays          Widlife Tourism
## 3598           Leisure and Holidays            Beach Tourism
## 3599           Leisure and Holidays          Widlife Tourism
## 3600           Leisure and Holidays          Widlife Tourism
## 3601 Visiting Friends and Relatives          Widlife Tourism
## 3602                       Business          Widlife Tourism
## 3603           Leisure and Holidays          Widlife Tourism
## 3604           Leisure and Holidays            Beach Tourism
## 3605                       Business            Beach Tourism
## 3606                   Volunteering          Widlife Tourism
## 3607        Meetings and Conference            Beach Tourism
## 3608           Leisure and Holidays            Beach Tourism
## 3609                       Business          Widlife Tourism
## 3610           Leisure and Holidays          Widlife Tourism
## 3611           Leisure and Holidays            Beach Tourism
## 3612           Leisure and Holidays            Beach Tourism
## 3613           Leisure and Holidays       Conference Tourism
## 3614           Leisure and Holidays         Cultural Tourism
## 3615                       Business         Wildlife Tourism
## 3616           Leisure and Holidays          Widlife Tourism
## 3617                       Business          Hunting Tourism
## 3618           Leisure and Holidays            Beach Tourism
## 3619           Leisure and Holidays         Cultural Tourism
## 3620           Leisure and Holidays         Wildlife Tourism
## 3621 Visiting Friends and Relatives          Hunting Tourism
## 3622           Leisure and Holidays            Beach Tourism
## 3623 Visiting Friends and Relatives         Wildlife Tourism
## 3624           Leisure and Holidays            Beach Tourism
## 3625           Leisure and Holidays         Wildlife Tourism
## 3627           Leisure and Holidays          Widlife Tourism
## 3628           Leisure and Holidays          Widlife Tourism
## 3629        Meetings and Conference        Mountain Climbing
## 3630           Leisure and Holidays            Beach Tourism
## 3631           Leisure and Holidays            Beach Tourism
## 3632                       Business          Widlife Tourism
## 3633           Leisure and Holidays         Wildlife Tourism
## 3634           Leisure and Holidays          Widlife Tourism
## 3635           Leisure and Holidays            Beach Tourism
## 3637           Leisure and Holidays            Beach Tourism
## 3638           Leisure and Holidays             Bird Tourism
## 3639           Leisure and Holidays            Beach Tourism
## 3640        Meetings and Conference        Mountain Climbing
## 3641           Leisure and Holidays          Widlife Tourism
## 3642           Leisure and Holidays          Widlife Tourism
## 3643           Leisure and Holidays                 Business
## 3644           Leisure and Holidays          Widlife Tourism
## 3645 Visiting Friends and Relatives            Beach Tourism
## 3646           Leisure and Holidays       Conference Tourism
## 3647        Scientific and Academic          Widlife Tourism
## 3648           Leisure and Holidays          Widlife Tourism
## 3649                   Volunteering         Cultural Tourism
## 3650 Visiting Friends and Relatives          Hunting Tourism
## 3652                       Business          Hunting Tourism
## 3653                       Business            Beach Tourism
## 3654                       Business            Beach Tourism
## 3655        Meetings and Conference        Mountain Climbing
## 3656           Leisure and Holidays          Widlife Tourism
## 3657           Leisure and Holidays          Widlife Tourism
## 3658           Leisure and Holidays         Cultural Tourism
## 3659 Visiting Friends and Relatives          Hunting Tourism
## 3660           Leisure and Holidays          Widlife Tourism
## 3661           Leisure and Holidays            Beach Tourism
## 3662           Leisure and Holidays            Beach Tourism
## 3663           Leisure and Holidays         Cultural Tourism
## 3664           Leisure and Holidays         Wildlife Tourism
## 3665           Leisure and Holidays          Widlife Tourism
## 3667           Leisure and Holidays          Widlife Tourism
## 3668        Meetings and Conference       Conference Tourism
## 3670        Meetings and Conference       Conference Tourism
## 3671           Leisure and Holidays         Cultural Tourism
## 3672                       Business          Hunting Tourism
## 3673           Leisure and Holidays       Conference Tourism
## 3674                   Volunteering          Hunting Tourism
## 3675        Meetings and Conference        Mountain Climbing
## 3676 Visiting Friends and Relatives          Widlife Tourism
## 3677           Leisure and Holidays          Widlife Tourism
## 3678        Meetings and Conference          Widlife Tourism
## 3679           Leisure and Holidays            Beach Tourism
## 3680           Leisure and Holidays            Beach Tourism
## 3681           Leisure and Holidays          Widlife Tourism
## 3682           Leisure and Holidays          Widlife Tourism
## 3683           Leisure and Holidays          Widlife Tourism
## 3684           Leisure and Holidays            Beach Tourism
## 3685           Leisure and Holidays         Wildlife Tourism
## 3686        Scientific and Academic          Widlife Tourism
## 3687           Leisure and Holidays            Beach Tourism
## 3688           Leisure and Holidays       Conference Tourism
## 3689           Leisure and Holidays          Widlife Tourism
## 3690           Leisure and Holidays            Beach Tourism
## 3691                          Other          Hunting Tourism
## 3692           Leisure and Holidays          Widlife Tourism
## 3694           Leisure and Holidays            Beach Tourism
## 3695 Visiting Friends and Relatives         Cultural Tourism
## 3696           Leisure and Holidays          Widlife Tourism
## 3697           Leisure and Holidays          Widlife Tourism
## 3698           Leisure and Holidays         Wildlife Tourism
## 3699           Leisure and Holidays          Widlife Tourism
## 3700 Visiting Friends and Relatives          Hunting Tourism
## 3701        Scientific and Academic        Mountain Climbing
## 3702 Visiting Friends and Relatives            Beach Tourism
## 3703           Leisure and Holidays          Widlife Tourism
## 3704           Leisure and Holidays          Widlife Tourism
## 3706           Leisure and Holidays          Widlife Tourism
## 3707           Leisure and Holidays          Widlife Tourism
## 3708           Leisure and Holidays          Widlife Tourism
## 3709           Leisure and Holidays          Widlife Tourism
## 3710           Leisure and Holidays          Widlife Tourism
## 3711           Leisure and Holidays            Beach Tourism
## 3712           Leisure and Holidays          Widlife Tourism
## 3713           Leisure and Holidays       Conference Tourism
## 3714           Leisure and Holidays       Conference Tourism
## 3715           Leisure and Holidays          Widlife Tourism
## 3716           Leisure and Holidays            Beach Tourism
## 3717           Leisure and Holidays          Widlife Tourism
## 3718           Leisure and Holidays          Widlife Tourism
## 3719           Leisure and Holidays          Hunting Tourism
## 3720           Leisure and Holidays          Widlife Tourism
## 3721           Leisure and Holidays            Beach Tourism
## 3722           Leisure and Holidays          Widlife Tourism
## 3723           Leisure and Holidays            Beach Tourism
## 3724                       Business          Widlife Tourism
## 3725        Meetings and Conference        Mountain Climbing
## 3726        Meetings and Conference        Mountain Climbing
## 3727           Leisure and Holidays         Wildlife Tourism
## 3728           Leisure and Holidays          Widlife Tourism
## 3729        Meetings and Conference          Hunting Tourism
## 3730        Meetings and Conference        Mountain Climbing
## 3731           Leisure and Holidays         Cultural Tourism
## 3732           Leisure and Holidays         Wildlife Tourism
## 3733           Leisure and Holidays         Wildlife Tourism
## 3734           Leisure and Holidays            Beach Tourism
## 3736 Visiting Friends and Relatives          Hunting Tourism
## 3737           Leisure and Holidays          Hunting Tourism
## 3738                       Business         Wildlife Tourism
## 3739 Visiting Friends and Relatives            Beach Tourism
## 3740                        Medical          Hunting Tourism
## 3741        Scientific and Academic          Hunting Tourism
## 3742        Meetings and Conference         Cultural Tourism
## 3743           Leisure and Holidays Diving and Sport Fishing
## 3744           Leisure and Holidays          Widlife Tourism
## 3745           Leisure and Holidays       Conference Tourism
## 3746           Leisure and Holidays          Widlife Tourism
## 3747           Leisure and Holidays          Widlife Tourism
## 3748        Meetings and Conference          Hunting Tourism
## 3749           Leisure and Holidays       Conference Tourism
## 3750 Visiting Friends and Relatives          Hunting Tourism
## 3751           Leisure and Holidays          Widlife Tourism
## 3752           Leisure and Holidays            Beach Tourism
## 3753           Leisure and Holidays         Cultural Tourism
## 3754           Leisure and Holidays         Wildlife Tourism
## 3755           Leisure and Holidays          Widlife Tourism
## 3756        Meetings and Conference            Beach Tourism
## 3757           Leisure and Holidays         Wildlife Tourism
## 3758                       Business          Hunting Tourism
## 3759                   Volunteering          Widlife Tourism
## 3760           Leisure and Holidays          Widlife Tourism
## 3761           Leisure and Holidays            Beach Tourism
## 3762 Visiting Friends and Relatives            Beach Tourism
## 3763           Leisure and Holidays          Widlife Tourism
## 3764           Leisure and Holidays       Conference Tourism
## 3765           Leisure and Holidays            Beach Tourism
## 3766           Leisure and Holidays            Beach Tourism
## 3767                       Business            Beach Tourism
## 3768           Leisure and Holidays         Wildlife Tourism
## 3769                       Business            Beach Tourism
## 3770        Meetings and Conference       Conference Tourism
## 3771           Leisure and Holidays            Beach Tourism
## 3774        Meetings and Conference            Beach Tourism
## 3775        Meetings and Conference       Conference Tourism
## 3776           Leisure and Holidays          Widlife Tourism
## 3777           Leisure and Holidays       Conference Tourism
## 3778        Meetings and Conference         Cultural Tourism
## 3779           Leisure and Holidays       Conference Tourism
## 3780           Leisure and Holidays          Widlife Tourism
## 3781           Leisure and Holidays          Widlife Tourism
## 3782                       Business        Mountain Climbing
## 3783           Leisure and Holidays          Widlife Tourism
## 3784           Leisure and Holidays            Beach Tourism
## 3785                       Business          Hunting Tourism
## 3786           Leisure and Holidays            Beach Tourism
## 3787                   Volunteering          Hunting Tourism
## 3788           Leisure and Holidays            Beach Tourism
## 3789                       Business            Beach Tourism
## 3790           Leisure and Holidays            Beach Tourism
## 3791           Leisure and Holidays          Widlife Tourism
## 3792           Leisure and Holidays            Beach Tourism
## 3793                       Business          Widlife Tourism
## 3794           Leisure and Holidays          Widlife Tourism
## 3795           Leisure and Holidays          Widlife Tourism
## 3796           Leisure and Holidays       Conference Tourism
## 3797           Leisure and Holidays       Conference Tourism
## 3798 Visiting Friends and Relatives         Cultural Tourism
## 3800           Leisure and Holidays          Widlife Tourism
## 3801 Visiting Friends and Relatives            Beach Tourism
## 3802           Leisure and Holidays         Wildlife Tourism
## 3803           Leisure and Holidays          Widlife Tourism
## 3804           Leisure and Holidays          Widlife Tourism
## 3806           Leisure and Holidays          Widlife Tourism
## 3807           Leisure and Holidays            Beach Tourism
## 3808           Leisure and Holidays            Beach Tourism
## 3809                       Business          Widlife Tourism
## 3810           Leisure and Holidays            Beach Tourism
## 3811           Leisure and Holidays          Widlife Tourism
## 3812                       Business          Hunting Tourism
## 3813           Leisure and Holidays          Widlife Tourism
## 3814           Leisure and Holidays            Beach Tourism
## 3815                       Business          Widlife Tourism
## 3816           Leisure and Holidays         Wildlife Tourism
## 3817           Leisure and Holidays       Conference Tourism
## 3818           Leisure and Holidays         Cultural Tourism
## 3819           Leisure and Holidays          Widlife Tourism
## 3820                          Other          Hunting Tourism
## 3821           Leisure and Holidays         Wildlife Tourism
## 3822           Leisure and Holidays            Beach Tourism
## 3823           Leisure and Holidays          Widlife Tourism
## 3824 Visiting Friends and Relatives         Wildlife Tourism
## 3825           Leisure and Holidays            Beach Tourism
## 3826           Leisure and Holidays         Cultural Tourism
## 3827           Leisure and Holidays       Conference Tourism
## 3828                       Business          Widlife Tourism
## 3829           Leisure and Holidays         Wildlife Tourism
## 3830           Leisure and Holidays          Widlife Tourism
## 3831           Leisure and Holidays          Widlife Tourism
## 3832           Leisure and Holidays          Hunting Tourism
## 3833           Leisure and Holidays         Wildlife Tourism
## 3834           Leisure and Holidays         Wildlife Tourism
## 3835           Leisure and Holidays            Beach Tourism
## 3836           Leisure and Holidays          Hunting Tourism
## 3837           Leisure and Holidays          Widlife Tourism
## 3838           Leisure and Holidays          Widlife Tourism
## 3839           Leisure and Holidays            Beach Tourism
## 3840           Leisure and Holidays          Widlife Tourism
## 3841           Leisure and Holidays          Widlife Tourism
## 3842           Leisure and Holidays         Wildlife Tourism
## 3843           Leisure and Holidays            Beach Tourism
## 3844           Leisure and Holidays            Beach Tourism
## 3846           Leisure and Holidays       Conference Tourism
## 3847           Leisure and Holidays          Widlife Tourism
## 3848                       Business         Wildlife Tourism
## 3849           Leisure and Holidays         Cultural Tourism
## 3850           Leisure and Holidays          Widlife Tourism
## 3851           Leisure and Holidays            Beach Tourism
## 3852           Leisure and Holidays            Beach Tourism
## 3853                       Business          Widlife Tourism
## 3854           Leisure and Holidays            Beach Tourism
## 3855           Leisure and Holidays          Widlife Tourism
## 3856           Leisure and Holidays         Wildlife Tourism
## 3857           Leisure and Holidays          Widlife Tourism
## 3858                       Business          Widlife Tourism
## 3859           Leisure and Holidays       Conference Tourism
## 3860           Leisure and Holidays         Wildlife Tourism
## 3861                   Volunteering          Widlife Tourism
## 3862                       Business          Hunting Tourism
## 3863           Leisure and Holidays         Wildlife Tourism
## 3864                       Business         Cultural Tourism
## 3865           Leisure and Holidays         Wildlife Tourism
## 3866           Leisure and Holidays          Widlife Tourism
## 3867           Leisure and Holidays       Conference Tourism
## 3868                       Business          Widlife Tourism
## 3869                       Business         Cultural Tourism
## 3870           Leisure and Holidays       Conference Tourism
## 3871           Leisure and Holidays            Beach Tourism
## 3872                       Business          Widlife Tourism
## 3873           Leisure and Holidays         Cultural Tourism
## 3874        Meetings and Conference          Widlife Tourism
## 3875           Leisure and Holidays       Conference Tourism
## 3876           Leisure and Holidays          Widlife Tourism
## 3877           Leisure and Holidays          Widlife Tourism
## 3878           Leisure and Holidays         Wildlife Tourism
## 3879           Leisure and Holidays       Conference Tourism
## 3880                   Volunteering         Cultural Tourism
## 3881           Leisure and Holidays          Widlife Tourism
## 3882           Leisure and Holidays          Widlife Tourism
## 3883           Leisure and Holidays          Widlife Tourism
## 3884           Leisure and Holidays          Widlife Tourism
## 3885           Leisure and Holidays          Widlife Tourism
## 3886           Leisure and Holidays       Conference Tourism
## 3887           Leisure and Holidays                 Business
## 3888           Leisure and Holidays          Widlife Tourism
## 3889           Leisure and Holidays          Widlife Tourism
## 3890           Leisure and Holidays            Beach Tourism
## 3891           Leisure and Holidays         Wildlife Tourism
## 3892 Visiting Friends and Relatives          Widlife Tourism
## 3893           Leisure and Holidays          Widlife Tourism
## 3894           Leisure and Holidays          Widlife Tourism
## 3895 Visiting Friends and Relatives            Beach Tourism
## 3896           Leisure and Holidays         Wildlife Tourism
## 3897 Visiting Friends and Relatives          Widlife Tourism
## 3898           Leisure and Holidays                 Business
## 3899           Leisure and Holidays            Beach Tourism
## 3900 Visiting Friends and Relatives          Hunting Tourism
## 3902           Leisure and Holidays            Beach Tourism
## 3903           Leisure and Holidays          Widlife Tourism
## 3904           Leisure and Holidays          Widlife Tourism
## 3905           Leisure and Holidays       Conference Tourism
## 3906           Leisure and Holidays          Widlife Tourism
## 3907           Leisure and Holidays         Wildlife Tourism
## 3908           Leisure and Holidays          Widlife Tourism
## 3909           Leisure and Holidays            Beach Tourism
## 3910           Leisure and Holidays            Beach Tourism
## 3911           Leisure and Holidays            Beach Tourism
## 3912           Leisure and Holidays          Widlife Tourism
## 3913           Leisure and Holidays          Widlife Tourism
## 3914                       Business            Beach Tourism
## 3915           Leisure and Holidays         Wildlife Tourism
## 3916 Visiting Friends and Relatives            Beach Tourism
## 3917           Leisure and Holidays          Widlife Tourism
## 3918        Meetings and Conference        Mountain Climbing
## 3919           Leisure and Holidays                 Business
## 3920                       Business         Cultural Tourism
## 3921                       Business          Hunting Tourism
## 3922        Meetings and Conference          Hunting Tourism
## 3923           Leisure and Holidays         Wildlife Tourism
## 3924 Visiting Friends and Relatives            Beach Tourism
## 3925                       Business       Conference Tourism
## 3926        Meetings and Conference          Widlife Tourism
## 3927           Leisure and Holidays         Wildlife Tourism
## 3928           Leisure and Holidays          Widlife Tourism
## 3929           Leisure and Holidays            Beach Tourism
## 3930                       Business          Widlife Tourism
## 3931           Leisure and Holidays          Widlife Tourism
## 3932           Leisure and Holidays       Conference Tourism
## 3933           Leisure and Holidays         Wildlife Tourism
## 3934           Leisure and Holidays         Wildlife Tourism
## 3935                       Business          Widlife Tourism
## 3936           Leisure and Holidays            Beach Tourism
## 3937           Leisure and Holidays          Widlife Tourism
## 3939           Leisure and Holidays            Beach Tourism
## 3940           Leisure and Holidays       Conference Tourism
## 3941                   Volunteering          Hunting Tourism
## 3943           Leisure and Holidays            Beach Tourism
## 3944                       Business          Hunting Tourism
## 3945        Meetings and Conference       Conference Tourism
## 3946           Leisure and Holidays            Beach Tourism
## 3947           Leisure and Holidays            Beach Tourism
## 3949           Leisure and Holidays          Widlife Tourism
## 3950           Leisure and Holidays       Conference Tourism
## 3952           Leisure and Holidays            Beach Tourism
## 3953                       Business            Beach Tourism
## 3954           Leisure and Holidays            Beach Tourism
## 3955        Scientific and Academic        Mountain Climbing
## 3957           Leisure and Holidays          Widlife Tourism
## 3958                       Business          Widlife Tourism
## 3959           Leisure and Holidays          Widlife Tourism
## 3960        Meetings and Conference       Conference Tourism
## 3961           Leisure and Holidays            Beach Tourism
## 3962                       Business             Bird Tourism
## 3963           Leisure and Holidays          Widlife Tourism
## 3964                          Other          Hunting Tourism
## 3965                          Other          Hunting Tourism
## 3966           Leisure and Holidays          Widlife Tourism
## 3967           Leisure and Holidays         Cultural Tourism
## 3968 Visiting Friends and Relatives          Hunting Tourism
## 3969           Leisure and Holidays          Widlife Tourism
## 3970 Visiting Friends and Relatives          Widlife Tourism
## 3971           Leisure and Holidays          Widlife Tourism
## 3972           Leisure and Holidays            Beach Tourism
## 3973           Leisure and Holidays          Widlife Tourism
## 3974                       Business          Widlife Tourism
## 3975           Leisure and Holidays            Beach Tourism
## 3976           Leisure and Holidays         Cultural Tourism
## 3978 Visiting Friends and Relatives          Widlife Tourism
## 3979           Leisure and Holidays          Widlife Tourism
## 3980           Leisure and Holidays            Beach Tourism
## 3981           Leisure and Holidays            Beach Tourism
## 3982                       Business         Wildlife Tourism
## 3983           Leisure and Holidays          Widlife Tourism
## 3984           Leisure and Holidays          Widlife Tourism
## 3985           Leisure and Holidays          Widlife Tourism
## 3986           Leisure and Holidays          Widlife Tourism
## 3987           Leisure and Holidays            Beach Tourism
## 3988 Visiting Friends and Relatives          Hunting Tourism
## 3989                       Business          Widlife Tourism
## 3990           Leisure and Holidays            Beach Tourism
## 3991           Leisure and Holidays            Beach Tourism
## 3992           Leisure and Holidays          Widlife Tourism
## 3993           Leisure and Holidays         Wildlife Tourism
## 3994           Leisure and Holidays          Widlife Tourism
## 3995           Leisure and Holidays            Beach Tourism
## 3996           Leisure and Holidays             Bird Tourism
## 3997           Leisure and Holidays                 Business
## 3998                       Business            Beach Tourism
## 3999           Leisure and Holidays            Beach Tourism
## 4000           Leisure and Holidays            Beach Tourism
## 4001 Visiting Friends and Relatives          Hunting Tourism
## 4002 Visiting Friends and Relatives         Cultural Tourism
## 4003           Leisure and Holidays          Widlife Tourism
## 4004        Meetings and Conference        Mountain Climbing
## 4005           Leisure and Holidays            Beach Tourism
## 4006 Visiting Friends and Relatives         Wildlife Tourism
## 4007           Leisure and Holidays       Conference Tourism
## 4008 Visiting Friends and Relatives            Beach Tourism
## 4009        Meetings and Conference       Conference Tourism
## 4010           Leisure and Holidays       Conference Tourism
## 4011           Leisure and Holidays         Wildlife Tourism
## 4012           Leisure and Holidays         Cultural Tourism
## 4013           Leisure and Holidays          Widlife Tourism
## 4014           Leisure and Holidays          Widlife Tourism
## 4015                       Business         Cultural Tourism
## 4016           Leisure and Holidays         Wildlife Tourism
## 4017 Visiting Friends and Relatives         Cultural Tourism
## 4018 Visiting Friends and Relatives         Cultural Tourism
## 4019           Leisure and Holidays         Wildlife Tourism
## 4020           Leisure and Holidays         Wildlife Tourism
## 4021           Leisure and Holidays            Beach Tourism
## 4022                   Volunteering       Conference Tourism
## 4023           Leisure and Holidays          Widlife Tourism
## 4024        Meetings and Conference        Mountain Climbing
## 4025           Leisure and Holidays         Wildlife Tourism
## 4026 Visiting Friends and Relatives          Widlife Tourism
## 4027                       Business        Mountain Climbing
## 4028        Meetings and Conference       Conference Tourism
## 4029           Leisure and Holidays          Widlife Tourism
## 4030                       Business         Cultural Tourism
## 4031           Leisure and Holidays          Widlife Tourism
## 4032           Leisure and Holidays            Beach Tourism
## 4033                       Business          Widlife Tourism
## 4034 Visiting Friends and Relatives            Beach Tourism
## 4035           Leisure and Holidays            Beach Tourism
## 4036           Leisure and Holidays          Widlife Tourism
## 4037           Leisure and Holidays       Conference Tourism
## 4038           Leisure and Holidays         Wildlife Tourism
## 4039           Leisure and Holidays            Beach Tourism
## 4040                       Business            Beach Tourism
## 4041           Leisure and Holidays          Widlife Tourism
## 4042                   Volunteering         Wildlife Tourism
## 4043           Leisure and Holidays          Widlife Tourism
## 4044           Leisure and Holidays       Conference Tourism
## 4046           Leisure and Holidays         Wildlife Tourism
## 4047           Leisure and Holidays       Conference Tourism
## 4048           Leisure and Holidays            Beach Tourism
## 4049           Leisure and Holidays         Wildlife Tourism
## 4050           Leisure and Holidays          Widlife Tourism
## 4051           Leisure and Holidays         Cultural Tourism
## 4052           Leisure and Holidays         Cultural Tourism
## 4053           Leisure and Holidays          Widlife Tourism
## 4054                          Other          Hunting Tourism
## 4055           Leisure and Holidays            Beach Tourism
## 4056                       Business          Widlife Tourism
## 4057                          Other         Wildlife Tourism
## 4058 Visiting Friends and Relatives            Beach Tourism
## 4061                   Volunteering         Cultural Tourism
## 4062        Meetings and Conference          Hunting Tourism
## 4063                       Business        Mountain Climbing
## 4064 Visiting Friends and Relatives          Widlife Tourism
## 4065           Leisure and Holidays Diving and Sport Fishing
## 4067           Leisure and Holidays            Beach Tourism
## 4068                       Business          Widlife Tourism
## 4069           Leisure and Holidays                 Business
## 4070 Visiting Friends and Relatives          Hunting Tourism
## 4071           Leisure and Holidays          Widlife Tourism
## 4072 Visiting Friends and Relatives          Widlife Tourism
## 4073           Leisure and Holidays         Wildlife Tourism
## 4074           Leisure and Holidays          Widlife Tourism
## 4075           Leisure and Holidays            Beach Tourism
## 4076           Leisure and Holidays       Conference Tourism
## 4077           Leisure and Holidays          Widlife Tourism
## 4078           Leisure and Holidays       Conference Tourism
## 4079 Visiting Friends and Relatives          Hunting Tourism
## 4080           Leisure and Holidays          Widlife Tourism
## 4081           Leisure and Holidays         Cultural Tourism
## 4082           Leisure and Holidays       Conference Tourism
## 4083 Visiting Friends and Relatives         Cultural Tourism
## 4084           Leisure and Holidays          Widlife Tourism
## 4085           Leisure and Holidays          Widlife Tourism
## 4086        Meetings and Conference            Beach Tourism
## 4087           Leisure and Holidays          Widlife Tourism
## 4088           Leisure and Holidays         Wildlife Tourism
## 4089        Meetings and Conference          Widlife Tourism
## 4090           Leisure and Holidays          Widlife Tourism
## 4091           Leisure and Holidays          Widlife Tourism
## 4092        Meetings and Conference Diving and Sport Fishing
## 4094           Leisure and Holidays          Widlife Tourism
## 4095           Leisure and Holidays       Conference Tourism
## 4096           Leisure and Holidays                 Business
## 4097           Leisure and Holidays          Widlife Tourism
## 4098 Visiting Friends and Relatives          Hunting Tourism
## 4099                       Business          Hunting Tourism
## 4100           Leisure and Holidays          Widlife Tourism
## 4101           Leisure and Holidays          Widlife Tourism
## 4102           Leisure and Holidays       Conference Tourism
## 4103           Leisure and Holidays          Widlife Tourism
## 4104           Leisure and Holidays         Cultural Tourism
## 4105 Visiting Friends and Relatives            Beach Tourism
## 4106           Leisure and Holidays             Bird Tourism
## 4107           Leisure and Holidays          Widlife Tourism
## 4108           Leisure and Holidays            Beach Tourism
## 4109        Meetings and Conference       Conference Tourism
## 4111 Visiting Friends and Relatives          Hunting Tourism
## 4112        Scientific and Academic          Hunting Tourism
## 4113           Leisure and Holidays         Cultural Tourism
## 4114 Visiting Friends and Relatives         Cultural Tourism
## 4115 Visiting Friends and Relatives Diving and Sport Fishing
## 4116           Leisure and Holidays          Widlife Tourism
## 4117           Leisure and Holidays            Beach Tourism
## 4118 Visiting Friends and Relatives          Widlife Tourism
## 4119                       Business        Mountain Climbing
## 4121           Leisure and Holidays          Widlife Tourism
## 4122 Visiting Friends and Relatives         Cultural Tourism
## 4123           Leisure and Holidays       Conference Tourism
## 4124                          Other          Hunting Tourism
## 4126           Leisure and Holidays          Widlife Tourism
## 4127           Leisure and Holidays          Widlife Tourism
## 4130                       Business        Mountain Climbing
## 4131 Visiting Friends and Relatives          Widlife Tourism
## 4133           Leisure and Holidays            Beach Tourism
## 4134           Leisure and Holidays          Widlife Tourism
## 4135 Visiting Friends and Relatives          Widlife Tourism
## 4136        Meetings and Conference        Mountain Climbing
## 4137           Leisure and Holidays          Widlife Tourism
## 4138           Leisure and Holidays          Widlife Tourism
## 4139                          Other          Hunting Tourism
## 4140           Leisure and Holidays          Widlife Tourism
## 4141           Leisure and Holidays          Widlife Tourism
## 4142           Leisure and Holidays         Cultural Tourism
## 4143           Leisure and Holidays       Conference Tourism
## 4144           Leisure and Holidays            Beach Tourism
## 4145           Leisure and Holidays          Widlife Tourism
## 4146        Meetings and Conference        Mountain Climbing
## 4147           Leisure and Holidays          Widlife Tourism
## 4148                       Business            Beach Tourism
## 4149           Leisure and Holidays          Widlife Tourism
## 4150                       Business         Wildlife Tourism
## 4151           Leisure and Holidays            Beach Tourism
## 4152           Leisure and Holidays       Conference Tourism
## 4153           Leisure and Holidays       Conference Tourism
## 4154           Leisure and Holidays         Cultural Tourism
## 4155                       Business          Hunting Tourism
## 4156           Leisure and Holidays         Wildlife Tourism
## 4157                       Business          Hunting Tourism
## 4158           Leisure and Holidays          Widlife Tourism
## 4159           Leisure and Holidays         Wildlife Tourism
## 4160           Leisure and Holidays          Widlife Tourism
## 4161           Leisure and Holidays            Beach Tourism
## 4162           Leisure and Holidays         Wildlife Tourism
## 4163                       Business          Widlife Tourism
## 4164        Meetings and Conference            Beach Tourism
## 4165                       Business          Hunting Tourism
## 4166 Visiting Friends and Relatives          Hunting Tourism
## 4167           Leisure and Holidays       Conference Tourism
## 4168                          Other          Hunting Tourism
## 4169        Meetings and Conference        Mountain Climbing
## 4170 Visiting Friends and Relatives         Cultural Tourism
## 4171           Leisure and Holidays       Conference Tourism
## 4172           Leisure and Holidays          Widlife Tourism
## 4173                       Business            Beach Tourism
## 4174           Leisure and Holidays            Beach Tourism
## 4175           Leisure and Holidays            Beach Tourism
## 4176           Leisure and Holidays Diving and Sport Fishing
## 4177           Leisure and Holidays          Widlife Tourism
## 4178           Leisure and Holidays          Widlife Tourism
## 4179                       Business         Wildlife Tourism
## 4180           Leisure and Holidays       Conference Tourism
## 4181                       Business             Bird Tourism
## 4182                       Business          Widlife Tourism
## 4183           Leisure and Holidays            Beach Tourism
## 4184           Leisure and Holidays          Widlife Tourism
## 4185           Leisure and Holidays       Conference Tourism
## 4186           Leisure and Holidays            Beach Tourism
## 4187        Meetings and Conference        Mountain Climbing
## 4188           Leisure and Holidays          Widlife Tourism
## 4189           Leisure and Holidays          Widlife Tourism
## 4190 Visiting Friends and Relatives          Hunting Tourism
## 4191           Leisure and Holidays          Widlife Tourism
## 4192           Leisure and Holidays            Beach Tourism
## 4193 Visiting Friends and Relatives            Beach Tourism
## 4194           Leisure and Holidays       Conference Tourism
## 4195           Leisure and Holidays                 Business
## 4196           Leisure and Holidays          Widlife Tourism
## 4197                       Business          Hunting Tourism
## 4198 Visiting Friends and Relatives          Hunting Tourism
## 4199           Leisure and Holidays         Wildlife Tourism
## 4200                       Business                 Business
## 4201                       Business         Wildlife Tourism
## 4202                          Other          Hunting Tourism
## 4203 Visiting Friends and Relatives         Cultural Tourism
## 4204           Leisure and Holidays       Conference Tourism
## 4205 Visiting Friends and Relatives          Widlife Tourism
## 4206                       Business          Widlife Tourism
## 4207           Leisure and Holidays          Widlife Tourism
## 4209 Visiting Friends and Relatives            Beach Tourism
## 4211           Leisure and Holidays            Beach Tourism
## 4212 Visiting Friends and Relatives        Mountain Climbing
## 4213                   Volunteering          Hunting Tourism
## 4214        Meetings and Conference            Beach Tourism
## 4215 Visiting Friends and Relatives         Cultural Tourism
## 4216           Leisure and Holidays            Beach Tourism
## 4217           Leisure and Holidays          Widlife Tourism
## 4218           Leisure and Holidays          Widlife Tourism
## 4220           Leisure and Holidays            Beach Tourism
## 4221           Leisure and Holidays            Beach Tourism
## 4222                       Business         Wildlife Tourism
## 4223           Leisure and Holidays         Wildlife Tourism
## 4224                       Business        Mountain Climbing
## 4225           Leisure and Holidays       Conference Tourism
## 4226 Visiting Friends and Relatives            Beach Tourism
## 4227           Leisure and Holidays          Widlife Tourism
## 4228           Leisure and Holidays          Widlife Tourism
## 4229           Leisure and Holidays         Wildlife Tourism
## 4230 Visiting Friends and Relatives         Cultural Tourism
## 4232           Leisure and Holidays          Widlife Tourism
## 4233 Visiting Friends and Relatives         Wildlife Tourism
## 4234           Leisure and Holidays          Widlife Tourism
## 4235           Leisure and Holidays         Wildlife Tourism
## 4236           Leisure and Holidays         Wildlife Tourism
## 4237           Leisure and Holidays       Conference Tourism
## 4238 Visiting Friends and Relatives         Wildlife Tourism
## 4239           Leisure and Holidays          Hunting Tourism
## 4240           Leisure and Holidays       Conference Tourism
## 4241           Leisure and Holidays       Conference Tourism
## 4242                       Business         Wildlife Tourism
## 4243                          Other          Widlife Tourism
## 4244           Leisure and Holidays            Beach Tourism
## 4245           Leisure and Holidays         Wildlife Tourism
## 4246           Leisure and Holidays          Widlife Tourism
## 4247           Leisure and Holidays            Beach Tourism
## 4248           Leisure and Holidays            Beach Tourism
## 4249           Leisure and Holidays          Widlife Tourism
## 4250 Visiting Friends and Relatives         Cultural Tourism
## 4251           Leisure and Holidays          Hunting Tourism
## 4252           Leisure and Holidays          Widlife Tourism
## 4253                          Other          Hunting Tourism
## 4254           Leisure and Holidays          Widlife Tourism
## 4255        Meetings and Conference        Mountain Climbing
## 4257           Leisure and Holidays         Wildlife Tourism
## 4258           Leisure and Holidays          Widlife Tourism
## 4259                       Business         Wildlife Tourism
## 4260                       Business          Widlife Tourism
## 4261           Leisure and Holidays            Beach Tourism
## 4262           Leisure and Holidays          Widlife Tourism
## 4263           Leisure and Holidays          Widlife Tourism
## 4264           Leisure and Holidays            Beach Tourism
## 4265           Leisure and Holidays          Widlife Tourism
## 4266 Visiting Friends and Relatives          Widlife Tourism
## 4267        Meetings and Conference          Hunting Tourism
## 4268           Leisure and Holidays          Widlife Tourism
## 4269           Leisure and Holidays         Wildlife Tourism
## 4270                          Other         Wildlife Tourism
## 4271           Leisure and Holidays            Beach Tourism
## 4272           Leisure and Holidays            Beach Tourism
## 4273           Leisure and Holidays          Widlife Tourism
## 4275                       Business          Hunting Tourism
## 4276           Leisure and Holidays          Widlife Tourism
## 4277           Leisure and Holidays       Conference Tourism
## 4278           Leisure and Holidays          Widlife Tourism
## 4279           Leisure and Holidays       Conference Tourism
## 4280           Leisure and Holidays       Conference Tourism
## 4282           Leisure and Holidays          Widlife Tourism
## 4283                   Volunteering         Cultural Tourism
## 4285           Leisure and Holidays         Cultural Tourism
## 4286 Visiting Friends and Relatives          Hunting Tourism
## 4287           Leisure and Holidays       Conference Tourism
## 4288           Leisure and Holidays         Wildlife Tourism
## 4289           Leisure and Holidays         Cultural Tourism
## 4290           Leisure and Holidays         Wildlife Tourism
## 4291           Leisure and Holidays         Wildlife Tourism
## 4292                   Volunteering       Conference Tourism
## 4293 Visiting Friends and Relatives          Hunting Tourism
## 4294                          Other          Hunting Tourism
## 4295           Leisure and Holidays         Wildlife Tourism
## 4296           Leisure and Holidays          Widlife Tourism
## 4297 Visiting Friends and Relatives            Beach Tourism
## 4298           Leisure and Holidays            Beach Tourism
## 4299                       Business          Widlife Tourism
## 4300           Leisure and Holidays          Widlife Tourism
## 4301 Visiting Friends and Relatives          Hunting Tourism
## 4302           Leisure and Holidays         Wildlife Tourism
## 4303           Leisure and Holidays            Beach Tourism
## 4304           Leisure and Holidays         Wildlife Tourism
## 4305           Leisure and Holidays         Wildlife Tourism
## 4306        Meetings and Conference        Mountain Climbing
## 4307           Leisure and Holidays       Conference Tourism
## 4308                       Business          Hunting Tourism
## 4309                       Business          Hunting Tourism
## 4310           Leisure and Holidays            Beach Tourism
## 4311           Leisure and Holidays         Cultural Tourism
## 4312 Visiting Friends and Relatives            Beach Tourism
## 4313           Leisure and Holidays          Widlife Tourism
## 4314                       Business             Bird Tourism
## 4315           Leisure and Holidays          Widlife Tourism
## 4316           Leisure and Holidays       Conference Tourism
## 4317                       Business            Beach Tourism
## 4318           Leisure and Holidays          Widlife Tourism
## 4319           Leisure and Holidays          Widlife Tourism
## 4320           Leisure and Holidays          Widlife Tourism
## 4321           Leisure and Holidays          Widlife Tourism
## 4322           Leisure and Holidays          Widlife Tourism
## 4323           Leisure and Holidays          Widlife Tourism
## 4324           Leisure and Holidays          Widlife Tourism
## 4325           Leisure and Holidays          Widlife Tourism
## 4326           Leisure and Holidays          Hunting Tourism
## 4327 Visiting Friends and Relatives          Widlife Tourism
## 4328           Leisure and Holidays          Widlife Tourism
## 4329           Leisure and Holidays            Beach Tourism
## 4330 Visiting Friends and Relatives          Widlife Tourism
## 4331           Leisure and Holidays          Widlife Tourism
## 4332        Meetings and Conference       Conference Tourism
## 4333           Leisure and Holidays         Cultural Tourism
## 4334           Leisure and Holidays          Widlife Tourism
## 4335           Leisure and Holidays          Widlife Tourism
## 4336           Leisure and Holidays       Conference Tourism
## 4337 Visiting Friends and Relatives         Cultural Tourism
## 4338           Leisure and Holidays            Beach Tourism
## 4339                   Volunteering          Hunting Tourism
## 4340           Leisure and Holidays            Beach Tourism
## 4341           Leisure and Holidays            Beach Tourism
## 4342 Visiting Friends and Relatives                 Business
## 4343           Leisure and Holidays          Widlife Tourism
## 4344                       Business            Beach Tourism
## 4345           Leisure and Holidays            Beach Tourism
## 4346                       Business            Beach Tourism
## 4347           Leisure and Holidays                 Business
## 4348                       Business          Hunting Tourism
## 4349        Meetings and Conference            Beach Tourism
## 4350                       Business         Cultural Tourism
## 4351 Visiting Friends and Relatives         Cultural Tourism
## 4352           Leisure and Holidays            Beach Tourism
## 4353 Visiting Friends and Relatives          Hunting Tourism
## 4354                       Business          Hunting Tourism
## 4355        Meetings and Conference        Mountain Climbing
## 4356                       Business          Widlife Tourism
## 4357 Visiting Friends and Relatives         Cultural Tourism
## 4358           Leisure and Holidays          Widlife Tourism
## 4359        Scientific and Academic         Cultural Tourism
## 4360           Leisure and Holidays            Beach Tourism
## 4361           Leisure and Holidays         Wildlife Tourism
## 4362           Leisure and Holidays Diving and Sport Fishing
## 4363           Leisure and Holidays            Beach Tourism
## 4364           Leisure and Holidays            Beach Tourism
## 4365 Visiting Friends and Relatives          Hunting Tourism
## 4366                       Business          Widlife Tourism
## 4367           Leisure and Holidays          Widlife Tourism
## 4368           Leisure and Holidays          Widlife Tourism
## 4369           Leisure and Holidays            Beach Tourism
## 4370           Leisure and Holidays         Wildlife Tourism
## 4371        Meetings and Conference       Conference Tourism
## 4372           Leisure and Holidays       Conference Tourism
## 4373        Meetings and Conference       Conference Tourism
## 4374           Leisure and Holidays            Beach Tourism
## 4375                       Business         Cultural Tourism
## 4376 Visiting Friends and Relatives          Widlife Tourism
## 4377           Leisure and Holidays         Wildlife Tourism
## 4378           Leisure and Holidays         Wildlife Tourism
## 4379 Visiting Friends and Relatives            Beach Tourism
## 4380 Visiting Friends and Relatives          Hunting Tourism
## 4381                       Business            Beach Tourism
## 4383           Leisure and Holidays            Beach Tourism
## 4384           Leisure and Holidays          Widlife Tourism
## 4385                          Other         Wildlife Tourism
## 4386           Leisure and Holidays          Widlife Tourism
## 4387           Leisure and Holidays            Beach Tourism
## 4388           Leisure and Holidays          Widlife Tourism
## 4389           Leisure and Holidays         Cultural Tourism
## 4390           Leisure and Holidays            Beach Tourism
## 4391           Leisure and Holidays            Beach Tourism
## 4392           Leisure and Holidays          Widlife Tourism
## 4393           Leisure and Holidays             Bird Tourism
## 4394           Leisure and Holidays          Widlife Tourism
## 4395           Leisure and Holidays       Conference Tourism
## 4396                   Volunteering       Conference Tourism
## 4397           Leisure and Holidays         Wildlife Tourism
## 4398           Leisure and Holidays          Widlife Tourism
## 4400           Leisure and Holidays            Beach Tourism
## 4401           Leisure and Holidays         Wildlife Tourism
## 4402           Leisure and Holidays            Beach Tourism
## 4403           Leisure and Holidays          Widlife Tourism
## 4404        Meetings and Conference         Cultural Tourism
## 4405           Leisure and Holidays          Widlife Tourism
## 4406           Leisure and Holidays          Widlife Tourism
## 4407           Leisure and Holidays       Conference Tourism
## 4408                          Other            Beach Tourism
## 4409           Leisure and Holidays            Beach Tourism
## 4410           Leisure and Holidays         Wildlife Tourism
## 4411           Leisure and Holidays          Widlife Tourism
## 4412           Leisure and Holidays            Beach Tourism
## 4413                   Volunteering         Cultural Tourism
## 4414                       Business       Conference Tourism
## 4415        Meetings and Conference          Widlife Tourism
## 4416                          Other          Hunting Tourism
## 4417           Leisure and Holidays       Conference Tourism
## 4419                       Business         Wildlife Tourism
## 4420           Leisure and Holidays          Widlife Tourism
## 4421           Leisure and Holidays         Wildlife Tourism
## 4422           Leisure and Holidays            Beach Tourism
## 4423           Leisure and Holidays            Beach Tourism
## 4424           Leisure and Holidays       Conference Tourism
## 4425           Leisure and Holidays         Wildlife Tourism
## 4426           Leisure and Holidays         Wildlife Tourism
## 4427           Leisure and Holidays            Beach Tourism
## 4428 Visiting Friends and Relatives          Hunting Tourism
## 4429           Leisure and Holidays            Beach Tourism
## 4430           Leisure and Holidays         Wildlife Tourism
## 4431           Leisure and Holidays       Conference Tourism
## 4432           Leisure and Holidays          Widlife Tourism
## 4433           Leisure and Holidays          Widlife Tourism
## 4434           Leisure and Holidays          Widlife Tourism
## 4435        Meetings and Conference         Wildlife Tourism
## 4436           Leisure and Holidays          Widlife Tourism
## 4437           Leisure and Holidays          Widlife Tourism
## 4438                       Business          Hunting Tourism
## 4439           Leisure and Holidays            Beach Tourism
## 4440           Leisure and Holidays            Beach Tourism
## 4441           Leisure and Holidays            Beach Tourism
## 4442           Leisure and Holidays       Conference Tourism
## 4443                       Business            Beach Tourism
## 4444           Leisure and Holidays             Bird Tourism
## 4445                       Business          Widlife Tourism
## 4446           Leisure and Holidays          Widlife Tourism
## 4447           Leisure and Holidays       Conference Tourism
## 4448        Scientific and Academic          Hunting Tourism
## 4449                       Business          Hunting Tourism
## 4450                          Other          Hunting Tourism
## 4451           Leisure and Holidays          Hunting Tourism
## 4452           Leisure and Holidays         Wildlife Tourism
## 4453           Leisure and Holidays       Conference Tourism
## 4454           Leisure and Holidays            Beach Tourism
## 4455                       Business         Cultural Tourism
## 4456 Visiting Friends and Relatives            Beach Tourism
## 4457 Visiting Friends and Relatives            Beach Tourism
## 4458 Visiting Friends and Relatives          Widlife Tourism
## 4459        Meetings and Conference          Widlife Tourism
## 4460           Leisure and Holidays         Wildlife Tourism
## 4461           Leisure and Holidays            Beach Tourism
## 4462           Leisure and Holidays          Widlife Tourism
## 4463           Leisure and Holidays          Widlife Tourism
## 4464           Leisure and Holidays         Cultural Tourism
## 4465           Leisure and Holidays          Widlife Tourism
## 4466        Scientific and Academic          Hunting Tourism
## 4467           Leisure and Holidays          Widlife Tourism
## 4468           Leisure and Holidays            Beach Tourism
## 4469           Leisure and Holidays          Widlife Tourism
## 4471           Leisure and Holidays          Widlife Tourism
## 4472           Leisure and Holidays          Widlife Tourism
## 4473           Leisure and Holidays         Wildlife Tourism
## 4475           Leisure and Holidays         Cultural Tourism
## 4476                       Business            Beach Tourism
## 4477 Visiting Friends and Relatives         Cultural Tourism
## 4478                   Volunteering          Hunting Tourism
## 4479           Leisure and Holidays         Wildlife Tourism
## 4480 Visiting Friends and Relatives          Hunting Tourism
## 4481                       Business          Widlife Tourism
## 4482 Visiting Friends and Relatives         Cultural Tourism
## 4483 Visiting Friends and Relatives         Wildlife Tourism
## 4485                       Business          Hunting Tourism
## 4486                       Business          Hunting Tourism
## 4487                       Business        Mountain Climbing
## 4488           Leisure and Holidays          Widlife Tourism
## 4489           Leisure and Holidays            Beach Tourism
## 4490                       Business          Widlife Tourism
## 4491           Leisure and Holidays            Beach Tourism
## 4492           Leisure and Holidays          Widlife Tourism
## 4493           Leisure and Holidays                 Business
## 4494                       Business         Cultural Tourism
## 4495                       Business          Hunting Tourism
## 4496           Leisure and Holidays          Widlife Tourism
## 4497                       Business          Hunting Tourism
## 4498                       Business            Beach Tourism
## 4499           Leisure and Holidays          Widlife Tourism
## 4500           Leisure and Holidays          Widlife Tourism
## 4501           Leisure and Holidays          Widlife Tourism
## 4502           Leisure and Holidays       Conference Tourism
## 4504 Visiting Friends and Relatives            Beach Tourism
## 4505           Leisure and Holidays            Beach Tourism
## 4506           Leisure and Holidays            Beach Tourism
## 4507           Leisure and Holidays            Beach Tourism
## 4508           Leisure and Holidays          Widlife Tourism
## 4509 Visiting Friends and Relatives       Conference Tourism
## 4510           Leisure and Holidays          Widlife Tourism
## 4511                       Business          Hunting Tourism
## 4512           Leisure and Holidays            Beach Tourism
## 4513           Leisure and Holidays            Beach Tourism
## 4514           Leisure and Holidays         Wildlife Tourism
## 4515        Meetings and Conference         Cultural Tourism
## 4516           Leisure and Holidays            Beach Tourism
## 4517 Visiting Friends and Relatives          Hunting Tourism
## 4518           Leisure and Holidays          Widlife Tourism
## 4519           Leisure and Holidays         Wildlife Tourism
## 4520           Leisure and Holidays            Beach Tourism
## 4521           Leisure and Holidays            Beach Tourism
## 4522           Leisure and Holidays          Widlife Tourism
## 4523           Leisure and Holidays            Beach Tourism
## 4524        Meetings and Conference       Conference Tourism
## 4525           Leisure and Holidays         Wildlife Tourism
## 4526 Visiting Friends and Relatives            Beach Tourism
## 4528           Leisure and Holidays         Wildlife Tourism
## 4529           Leisure and Holidays          Widlife Tourism
## 4530                       Business            Beach Tourism
## 4531        Meetings and Conference          Hunting Tourism
## 4532 Visiting Friends and Relatives          Widlife Tourism
## 4533                       Business          Widlife Tourism
## 4534           Leisure and Holidays         Wildlife Tourism
## 4535           Leisure and Holidays          Widlife Tourism
## 4536           Leisure and Holidays            Beach Tourism
## 4537           Leisure and Holidays         Wildlife Tourism
## 4538           Leisure and Holidays          Widlife Tourism
## 4539           Leisure and Holidays            Beach Tourism
## 4540 Visiting Friends and Relatives            Beach Tourism
## 4541                       Business         Wildlife Tourism
## 4542                       Business         Wildlife Tourism
## 4543           Leisure and Holidays          Widlife Tourism
## 4545                       Business          Widlife Tourism
## 4546           Leisure and Holidays          Widlife Tourism
## 4547           Leisure and Holidays            Beach Tourism
## 4548 Visiting Friends and Relatives          Widlife Tourism
## 4549           Leisure and Holidays            Beach Tourism
## 4550           Leisure and Holidays       Conference Tourism
## 4551           Leisure and Holidays          Widlife Tourism
## 4552           Leisure and Holidays            Beach Tourism
## 4553 Visiting Friends and Relatives          Widlife Tourism
## 4554 Visiting Friends and Relatives                 Business
## 4555           Leisure and Holidays            Beach Tourism
## 4556           Leisure and Holidays            Beach Tourism
## 4557           Leisure and Holidays            Beach Tourism
## 4558           Leisure and Holidays         Wildlife Tourism
## 4559           Leisure and Holidays         Wildlife Tourism
## 4560           Leisure and Holidays            Beach Tourism
## 4561                       Business            Beach Tourism
## 4562 Visiting Friends and Relatives            Beach Tourism
## 4563           Leisure and Holidays            Beach Tourism
## 4564           Leisure and Holidays          Widlife Tourism
## 4565           Leisure and Holidays                 Business
## 4566           Leisure and Holidays          Widlife Tourism
## 4567           Leisure and Holidays            Beach Tourism
## 4568           Leisure and Holidays          Widlife Tourism
## 4569                       Business         Cultural Tourism
## 4570                       Business       Conference Tourism
## 4571                       Business          Hunting Tourism
## 4572                          Other          Hunting Tourism
## 4573           Leisure and Holidays          Widlife Tourism
## 4574           Leisure and Holidays         Wildlife Tourism
## 4575           Leisure and Holidays         Wildlife Tourism
## 4577 Visiting Friends and Relatives          Hunting Tourism
## 4578                       Business          Hunting Tourism
## 4579                          Other          Hunting Tourism
## 4580                       Business          Hunting Tourism
## 4581           Leisure and Holidays            Beach Tourism
## 4582           Leisure and Holidays       Conference Tourism
## 4583           Leisure and Holidays          Widlife Tourism
## 4584                       Business          Hunting Tourism
## 4585           Leisure and Holidays         Cultural Tourism
## 4586        Meetings and Conference       Conference Tourism
## 4587           Leisure and Holidays          Widlife Tourism
## 4588           Leisure and Holidays       Conference Tourism
## 4589           Leisure and Holidays          Widlife Tourism
## 4590                       Business       Conference Tourism
## 4591           Leisure and Holidays          Widlife Tourism
## 4592                       Business         Wildlife Tourism
## 4593           Leisure and Holidays          Widlife Tourism
## 4594           Leisure and Holidays                 Business
## 4595           Leisure and Holidays          Widlife Tourism
## 4596                       Business         Wildlife Tourism
## 4597 Visiting Friends and Relatives            Beach Tourism
## 4598           Leisure and Holidays         Wildlife Tourism
## 4599                       Business         Cultural Tourism
## 4600           Leisure and Holidays       Conference Tourism
## 4601                       Business       Conference Tourism
## 4602           Leisure and Holidays         Cultural Tourism
## 4603           Leisure and Holidays         Wildlife Tourism
## 4604           Leisure and Holidays          Widlife Tourism
## 4605           Leisure and Holidays            Beach Tourism
## 4606           Leisure and Holidays            Beach Tourism
## 4607           Leisure and Holidays          Hunting Tourism
## 4608           Leisure and Holidays       Conference Tourism
## 4609           Leisure and Holidays         Wildlife Tourism
## 4610           Leisure and Holidays         Wildlife Tourism
## 4611           Leisure and Holidays          Widlife Tourism
## 4612           Leisure and Holidays          Widlife Tourism
## 4615           Leisure and Holidays          Widlife Tourism
## 4616           Leisure and Holidays          Widlife Tourism
## 4617 Visiting Friends and Relatives          Widlife Tourism
## 4618           Leisure and Holidays            Beach Tourism
## 4619           Leisure and Holidays          Widlife Tourism
## 4620           Leisure and Holidays          Widlife Tourism
## 4621        Meetings and Conference            Beach Tourism
## 4622                       Business            Beach Tourism
## 4623           Leisure and Holidays          Hunting Tourism
## 4624           Leisure and Holidays            Beach Tourism
## 4625 Visiting Friends and Relatives            Beach Tourism
## 4626                       Business         Wildlife Tourism
## 4627           Leisure and Holidays          Widlife Tourism
## 4628                       Business            Beach Tourism
## 4629        Meetings and Conference        Mountain Climbing
## 4630           Leisure and Holidays         Wildlife Tourism
## 4631        Meetings and Conference       Conference Tourism
## 4633 Visiting Friends and Relatives         Cultural Tourism
## 4634 Visiting Friends and Relatives            Beach Tourism
## 4635                       Business            Beach Tourism
## 4636           Leisure and Holidays          Widlife Tourism
## 4637                       Business          Widlife Tourism
## 4638        Meetings and Conference          Widlife Tourism
## 4639        Meetings and Conference          Widlife Tourism
## 4640           Leisure and Holidays       Conference Tourism
## 4641                       Business        Mountain Climbing
## 4642           Leisure and Holidays          Widlife Tourism
## 4643           Leisure and Holidays                 Business
## 4644           Leisure and Holidays            Beach Tourism
## 4645           Leisure and Holidays       Conference Tourism
## 4646           Leisure and Holidays          Widlife Tourism
## 4647           Leisure and Holidays            Beach Tourism
## 4648           Leisure and Holidays          Widlife Tourism
## 4649        Meetings and Conference          Widlife Tourism
## 4650                       Business          Widlife Tourism
## 4651 Visiting Friends and Relatives          Hunting Tourism
## 4652           Leisure and Holidays            Beach Tourism
## 4654 Visiting Friends and Relatives            Beach Tourism
## 4655 Visiting Friends and Relatives         Cultural Tourism
## 4657        Meetings and Conference            Beach Tourism
## 4658           Leisure and Holidays       Conference Tourism
## 4660           Leisure and Holidays         Wildlife Tourism
## 4661           Leisure and Holidays            Beach Tourism
## 4662                       Business          Widlife Tourism
## 4663           Leisure and Holidays          Widlife Tourism
## 4664 Visiting Friends and Relatives       Conference Tourism
## 4665                          Other          Hunting Tourism
## 4666           Leisure and Holidays          Widlife Tourism
## 4667           Leisure and Holidays          Widlife Tourism
## 4670           Leisure and Holidays         Cultural Tourism
## 4671           Leisure and Holidays          Widlife Tourism
## 4672           Leisure and Holidays            Beach Tourism
## 4673        Meetings and Conference         Cultural Tourism
## 4674 Visiting Friends and Relatives         Wildlife Tourism
## 4675           Leisure and Holidays          Widlife Tourism
## 4676           Leisure and Holidays       Conference Tourism
## 4677                       Business          Hunting Tourism
## 4678           Leisure and Holidays            Beach Tourism
## 4679           Leisure and Holidays         Wildlife Tourism
## 4680 Visiting Friends and Relatives         Cultural Tourism
## 4681                       Business            Beach Tourism
## 4682                       Business        Mountain Climbing
## 4683 Visiting Friends and Relatives          Hunting Tourism
## 4684        Meetings and Conference          Widlife Tourism
## 4685                       Business            Beach Tourism
## 4687           Leisure and Holidays                 Business
## 4688           Leisure and Holidays          Widlife Tourism
## 4689        Meetings and Conference        Mountain Climbing
## 4690           Leisure and Holidays         Cultural Tourism
## 4691        Meetings and Conference          Hunting Tourism
## 4692           Leisure and Holidays          Widlife Tourism
## 4693 Visiting Friends and Relatives         Wildlife Tourism
## 4694                       Business            Beach Tourism
## 4695           Leisure and Holidays          Widlife Tourism
## 4696           Leisure and Holidays          Widlife Tourism
## 4697           Leisure and Holidays          Widlife Tourism
## 4698                       Business            Beach Tourism
## 4699                       Business            Beach Tourism
## 4700                       Business            Beach Tourism
## 4701           Leisure and Holidays          Widlife Tourism
## 4703           Leisure and Holidays          Widlife Tourism
## 4704           Leisure and Holidays          Widlife Tourism
## 4705           Leisure and Holidays         Wildlife Tourism
## 4706                       Business            Beach Tourism
## 4707           Leisure and Holidays            Beach Tourism
## 4708                       Business            Beach Tourism
## 4709 Visiting Friends and Relatives         Cultural Tourism
## 4710                   Volunteering          Widlife Tourism
## 4712           Leisure and Holidays            Beach Tourism
## 4713           Leisure and Holidays          Widlife Tourism
## 4714                       Business          Hunting Tourism
## 4715           Leisure and Holidays            Beach Tourism
## 4716                       Business          Widlife Tourism
## 4717           Leisure and Holidays          Widlife Tourism
## 4718        Meetings and Conference       Conference Tourism
## 4719           Leisure and Holidays            Beach Tourism
## 4720           Leisure and Holidays            Beach Tourism
## 4721           Leisure and Holidays         Wildlife Tourism
## 4722           Leisure and Holidays          Widlife Tourism
## 4723           Leisure and Holidays            Beach Tourism
## 4724                       Business          Hunting Tourism
## 4725           Leisure and Holidays          Widlife Tourism
## 4727           Leisure and Holidays            Beach Tourism
## 4728                       Business          Widlife Tourism
## 4729           Leisure and Holidays            Beach Tourism
## 4731 Visiting Friends and Relatives          Hunting Tourism
## 4732           Leisure and Holidays       Conference Tourism
## 4733                   Volunteering          Hunting Tourism
## 4734           Leisure and Holidays          Widlife Tourism
## 4735           Leisure and Holidays          Widlife Tourism
## 4736 Visiting Friends and Relatives          Widlife Tourism
## 4737           Leisure and Holidays            Beach Tourism
## 4738 Visiting Friends and Relatives            Beach Tourism
## 4739           Leisure and Holidays          Widlife Tourism
## 4740                          Other          Widlife Tourism
## 4741 Visiting Friends and Relatives          Widlife Tourism
## 4742                       Business          Hunting Tourism
## 4743                   Volunteering         Cultural Tourism
## 4744        Meetings and Conference        Mountain Climbing
## 4745           Leisure and Holidays          Widlife Tourism
## 4746           Leisure and Holidays            Beach Tourism
## 4748           Leisure and Holidays            Beach Tourism
## 4749           Leisure and Holidays         Wildlife Tourism
## 4750           Leisure and Holidays            Beach Tourism
## 4751           Leisure and Holidays         Cultural Tourism
## 4752 Visiting Friends and Relatives          Widlife Tourism
## 4754        Meetings and Conference          Hunting Tourism
## 4755           Leisure and Holidays          Widlife Tourism
## 4756           Leisure and Holidays       Conference Tourism
## 4757           Leisure and Holidays            Beach Tourism
## 4759 Visiting Friends and Relatives            Beach Tourism
## 4760           Leisure and Holidays         Wildlife Tourism
## 4761           Leisure and Holidays            Beach Tourism
## 4762           Leisure and Holidays          Widlife Tourism
## 4763                       Business            Beach Tourism
## 4764           Leisure and Holidays            Beach Tourism
## 4765           Leisure and Holidays            Beach Tourism
## 4766           Leisure and Holidays          Widlife Tourism
## 4767           Leisure and Holidays         Wildlife Tourism
## 4768           Leisure and Holidays         Wildlife Tourism
## 4769 Visiting Friends and Relatives          Hunting Tourism
## 4770           Leisure and Holidays       Conference Tourism
## 4771           Leisure and Holidays          Widlife Tourism
## 4773           Leisure and Holidays          Widlife Tourism
## 4774           Leisure and Holidays            Beach Tourism
## 4775           Leisure and Holidays         Cultural Tourism
## 4776           Leisure and Holidays         Wildlife Tourism
## 4777           Leisure and Holidays            Beach Tourism
## 4778           Leisure and Holidays            Beach Tourism
## 4779           Leisure and Holidays         Wildlife Tourism
## 4780                       Business          Widlife Tourism
## 4781           Leisure and Holidays            Beach Tourism
## 4782           Leisure and Holidays                 Business
## 4783 Visiting Friends and Relatives            Beach Tourism
## 4784           Leisure and Holidays          Widlife Tourism
## 4785           Leisure and Holidays            Beach Tourism
## 4787           Leisure and Holidays          Widlife Tourism
## 4788           Leisure and Holidays       Conference Tourism
## 4789                          Other          Hunting Tourism
## 4790           Leisure and Holidays            Beach Tourism
## 4791        Meetings and Conference         Cultural Tourism
## 4792           Leisure and Holidays          Widlife Tourism
## 4793           Leisure and Holidays          Hunting Tourism
## 4794 Visiting Friends and Relatives            Beach Tourism
## 4795           Leisure and Holidays         Wildlife Tourism
## 4796           Leisure and Holidays                 Business
## 4797           Leisure and Holidays         Wildlife Tourism
## 4798                       Business          Hunting Tourism
## 4799           Leisure and Holidays            Beach Tourism
## 4800           Leisure and Holidays            Beach Tourism
## 4801                       Business          Widlife Tourism
## 4802           Leisure and Holidays          Widlife Tourism
## 4803           Leisure and Holidays       Conference Tourism
## 4804        Meetings and Conference         Cultural Tourism
## 4805           Leisure and Holidays          Widlife Tourism
## 4806                       Business          Widlife Tourism
## 4807 Visiting Friends and Relatives             Bird Tourism
## 4808        Meetings and Conference       Conference Tourism
## 4809 Visiting Friends and Relatives            Beach Tourism
## 4810                       Business            Beach Tourism
## 4811           Leisure and Holidays            Beach Tourism
## 4812           Leisure and Holidays            Beach Tourism
## 4813           Leisure and Holidays            Beach Tourism
## 4815           Leisure and Holidays         Cultural Tourism
## 4817           Leisure and Holidays         Wildlife Tourism
## 4818           Leisure and Holidays         Wildlife Tourism
## 4820           Leisure and Holidays          Widlife Tourism
## 4821           Leisure and Holidays         Wildlife Tourism
## 4822           Leisure and Holidays            Beach Tourism
## 4823        Scientific and Academic          Hunting Tourism
## 4824                       Business          Widlife Tourism
## 4825           Leisure and Holidays         Wildlife Tourism
## 4826           Leisure and Holidays          Widlife Tourism
## 4827           Leisure and Holidays         Wildlife Tourism
## 4828           Leisure and Holidays         Wildlife Tourism
## 4829 Visiting Friends and Relatives          Widlife Tourism
## 4830           Leisure and Holidays       Conference Tourism
## 4831                       Business        Mountain Climbing
## 4832        Meetings and Conference       Conference Tourism
## 4833           Leisure and Holidays            Beach Tourism
## 4834 Visiting Friends and Relatives          Hunting Tourism
## 4835                       Business         Wildlife Tourism
## 4836 Visiting Friends and Relatives            Beach Tourism
## 4837           Leisure and Holidays       Conference Tourism
## 4838 Visiting Friends and Relatives            Beach Tourism
## 4839           Leisure and Holidays          Widlife Tourism
## 4840        Meetings and Conference          Hunting Tourism
## 4841                       Business            Beach Tourism
## 4842           Leisure and Holidays         Wildlife Tourism
## 4843           Leisure and Holidays          Widlife Tourism
## 4844 Visiting Friends and Relatives          Hunting Tourism
## 4845 Visiting Friends and Relatives            Beach Tourism
## 4846           Leisure and Holidays            Beach Tourism
## 4847           Leisure and Holidays         Wildlife Tourism
## 4848           Leisure and Holidays            Beach Tourism
## 4849 Visiting Friends and Relatives         Cultural Tourism
## 4850        Meetings and Conference        Mountain Climbing
## 4851                       Business            Beach Tourism
## 4852 Visiting Friends and Relatives         Cultural Tourism
## 4853        Scientific and Academic          Widlife Tourism
## 4854           Leisure and Holidays         Wildlife Tourism
## 4855        Meetings and Conference          Hunting Tourism
##                          info_source tour_arrangement package_transport_int
## 1                 Friends, relatives     Package Tour                   Yes
## 2        Travel agent, tour operator     Package Tour                   Yes
## 3        Travel agent, tour operator     Package Tour                   Yes
## 4                     Radio, TV, Web      Independent                    No
## 5        Travel agent, tour operator     Package Tour                   Yes
## 6    Newspaper, magazines, brochures     Package Tour                   Yes
## 7    Newspaper, magazines, brochures      Independent                    No
## 8        Travel agent, tour operator      Independent                    No
## 9                 Friends, relatives      Independent                    No
## 10       Travel agent, tour operator     Package Tour                   Yes
## 11       Travel agent, tour operator     Package Tour                    No
## 12                Friends, relatives     Package Tour                   Yes
## 13       Travel agent, tour operator     Package Tour                   Yes
## 14       Travel agent, tour operator     Package Tour                   Yes
## 15                Friends, relatives      Independent                    No
## 16                Friends, relatives     Package Tour                    No
## 17                Friends, relatives      Independent                    No
## 18       Travel agent, tour operator     Package Tour                   Yes
## 19       Travel agent, tour operator     Package Tour                    No
## 20                    Radio, TV, Web      Independent                    No
## 21   Newspaper, magazines, brochures      Independent                    No
## 22                Friends, relatives      Independent                    No
## 23                            Others      Independent                    No
## 24       Travel agent, tour operator     Package Tour                   Yes
## 26                    Radio, TV, Web     Package Tour                    No
## 27                Friends, relatives     Package Tour                   Yes
## 28                Friends, relatives      Independent                    No
## 29                Friends, relatives      Independent                    No
## 30       Travel agent, tour operator     Package Tour                    No
## 31       Travel agent, tour operator     Package Tour                    No
## 32                Friends, relatives      Independent                    No
## 33                Friends, relatives     Package Tour                    No
## 34       Travel agent, tour operator      Independent                    No
## 35       Travel agent, tour operator     Package Tour                   Yes
## 36   Newspaper, magazines, brochures     Package Tour                    No
## 37                    Radio, TV, Web      Independent                    No
## 38       Travel agent, tour operator     Package Tour                   Yes
## 39                Friends, relatives      Independent                    No
## 40       Travel agent, tour operator     Package Tour                   Yes
## 41                Friends, relatives      Independent                    No
## 42       Travel agent, tour operator      Independent                    No
## 43                    Radio, TV, Web      Independent                    No
## 44                Friends, relatives      Independent                    No
## 45                Friends, relatives     Package Tour                    No
## 46       Travel agent, tour operator      Independent                    No
## 47                Friends, relatives      Independent                    No
## 48       Travel agent, tour operator     Package Tour                    No
## 49                Friends, relatives      Independent                    No
## 50       Travel agent, tour operator     Package Tour                    No
## 51                Friends, relatives      Independent                    No
## 52                Friends, relatives      Independent                    No
## 53       Travel agent, tour operator     Package Tour                   Yes
## 54       Travel agent, tour operator      Independent                    No
## 55       Travel agent, tour operator     Package Tour                   Yes
## 56                Friends, relatives      Independent                    No
## 57       Travel agent, tour operator     Package Tour                    No
## 58                Friends, relatives      Independent                    No
## 59                Friends, relatives     Package Tour                   Yes
## 60                Friends, relatives      Independent                    No
## 61                Friends, relatives      Independent                    No
## 62       Travel agent, tour operator     Package Tour                    No
## 63       Travel agent, tour operator      Independent                    No
## 64   Newspaper, magazines, brochures     Package Tour                    No
## 65   Newspaper, magazines, brochures      Independent                    No
## 66                Friends, relatives      Independent                    No
## 67       Travel agent, tour operator      Independent                    No
## 68                Friends, relatives      Independent                    No
## 69                Friends, relatives      Independent                    No
## 70                Friends, relatives      Independent                    No
## 71   Newspaper, magazines, brochures     Package Tour                   Yes
## 72                            Others     Package Tour                    No
## 73                Friends, relatives      Independent                    No
## 74                    Radio, TV, Web      Independent                    No
## 75                Friends, relatives     Package Tour                    No
## 76                Friends, relatives      Independent                    No
## 77       Travel agent, tour operator     Package Tour                   Yes
## 78       Travel agent, tour operator     Package Tour                    No
## 79       Travel agent, tour operator     Package Tour                    No
## 80       Travel agent, tour operator     Package Tour                   Yes
## 81       Travel agent, tour operator     Package Tour                   Yes
## 83                Friends, relatives      Independent                    No
## 84                            Others      Independent                    No
## 85   Newspaper, magazines, brochures      Independent                    No
## 86       Travel agent, tour operator     Package Tour                   Yes
## 87       Travel agent, tour operator     Package Tour                    No
## 88                Friends, relatives     Package Tour                   Yes
## 89                Friends, relatives      Independent                    No
## 90                Friends, relatives      Independent                    No
## 91   Newspaper, magazines, brochures      Independent                    No
## 92       Travel agent, tour operator     Package Tour                   Yes
## 93       Travel agent, tour operator     Package Tour                   Yes
## 94       Travel agent, tour operator     Package Tour                    No
## 96       Travel agent, tour operator      Independent                    No
## 97                Friends, relatives      Independent                    No
## 98       Travel agent, tour operator     Package Tour                    No
## 99                Friends, relatives     Package Tour                   Yes
## 100               Friends, relatives      Independent                    No
## 101                           Others      Independent                    No
## 102          Tanzania Mission Abroad      Independent                    No
## 103                           Others      Independent                    No
## 104               Friends, relatives      Independent                    No
## 105      Travel agent, tour operator     Package Tour                   Yes
## 106               Friends, relatives     Package Tour                    No
## 107      Travel agent, tour operator     Package Tour                    No
## 108      Travel agent, tour operator     Package Tour                    No
## 109      Travel agent, tour operator     Package Tour                    No
## 110      Travel agent, tour operator      Independent                    No
## 111  Newspaper, magazines, brochures     Package Tour                   Yes
## 112      Travel agent, tour operator      Independent                    No
## 113               Friends, relatives      Independent                    No
## 114      Travel agent, tour operator     Package Tour                   Yes
## 115               Friends, relatives      Independent                    No
## 117                   Radio, TV, Web     Package Tour                    No
## 118      Travel agent, tour operator     Package Tour                   Yes
## 119      Travel agent, tour operator     Package Tour                    No
## 120                           Others     Package Tour                   Yes
## 121      Travel agent, tour operator     Package Tour                   Yes
## 123               Friends, relatives      Independent                    No
## 124      Travel agent, tour operator      Independent                    No
## 125               Friends, relatives     Package Tour                    No
## 126               Friends, relatives      Independent                    No
## 127      Travel agent, tour operator     Package Tour                   Yes
## 128                           Others      Independent                    No
## 129      Travel agent, tour operator     Package Tour                   Yes
## 130      Travel agent, tour operator     Package Tour                   Yes
## 131                           Others      Independent                    No
## 132      Travel agent, tour operator     Package Tour                   Yes
## 133  Newspaper, magazines, brochures     Package Tour                    No
## 134               Friends, relatives      Independent                    No
## 135      Travel agent, tour operator     Package Tour                   Yes
## 136      Travel agent, tour operator     Package Tour                   Yes
## 138      Travel agent, tour operator     Package Tour                    No
## 139                           Others     Package Tour                    No
## 140      Travel agent, tour operator      Independent                    No
## 141      Travel agent, tour operator     Package Tour                   Yes
## 142               Friends, relatives      Independent                    No
## 143      Travel agent, tour operator     Package Tour                   Yes
## 144                   Radio, TV, Web      Independent                    No
## 145      Travel agent, tour operator      Independent                    No
## 146               Friends, relatives      Independent                    No
## 147                   Radio, TV, Web     Package Tour                    No
## 148      Travel agent, tour operator     Package Tour                    No
## 149      Travel agent, tour operator     Package Tour                   Yes
## 150               Friends, relatives      Independent                    No
## 151               Friends, relatives      Independent                    No
## 152      Travel agent, tour operator     Package Tour                    No
## 153      Travel agent, tour operator     Package Tour                   Yes
## 154  Newspaper, magazines, brochures      Independent                    No
## 155      Travel agent, tour operator     Package Tour                   Yes
## 156      Travel agent, tour operator     Package Tour                   Yes
## 157      Travel agent, tour operator      Independent                    No
## 158          Tanzania Mission Abroad      Independent                    No
## 159      Travel agent, tour operator     Package Tour                   Yes
## 160                   Radio, TV, Web     Package Tour                    No
## 161               Friends, relatives     Package Tour                    No
## 162      Travel agent, tour operator     Package Tour                    No
## 163      Travel agent, tour operator     Package Tour                   Yes
## 164               Friends, relatives     Package Tour                   Yes
## 165                   Radio, TV, Web     Package Tour                   Yes
## 166      Travel agent, tour operator     Package Tour                   Yes
## 167                           Others     Package Tour                    No
## 168      Travel agent, tour operator     Package Tour                   Yes
## 169               Friends, relatives      Independent                    No
## 170                           Others      Independent                    No
## 171               Friends, relatives      Independent                    No
## 173      Travel agent, tour operator     Package Tour                    No
## 174                           Others      Independent                    No
## 175  Newspaper, magazines, brochures      Independent                    No
## 176      Travel agent, tour operator     Package Tour                   Yes
## 177               Friends, relatives      Independent                    No
## 178      Travel agent, tour operator     Package Tour                   Yes
## 179      Travel agent, tour operator     Package Tour                   Yes
## 180               Friends, relatives      Independent                    No
## 181      Travel agent, tour operator     Package Tour                   Yes
## 182               Friends, relatives      Independent                    No
## 183               Friends, relatives     Package Tour                   Yes
## 184      Travel agent, tour operator     Package Tour                   Yes
## 185               Friends, relatives     Package Tour                   Yes
## 186                   Radio, TV, Web      Independent                    No
## 187      Travel agent, tour operator     Package Tour                    No
## 188      Travel agent, tour operator     Package Tour                    No
## 189               Inflight magazines     Package Tour                   Yes
## 190      Travel agent, tour operator     Package Tour                   Yes
## 191               Friends, relatives      Independent                    No
## 192      Travel agent, tour operator     Package Tour                   Yes
## 193      Travel agent, tour operator     Package Tour                    No
## 194      Travel agent, tour operator     Package Tour                   Yes
## 195      Travel agent, tour operator     Package Tour                   Yes
## 196               Friends, relatives      Independent                    No
## 197               Friends, relatives      Independent                    No
## 198                   Radio, TV, Web      Independent                    No
## 199                           Others     Package Tour                   Yes
## 200      Travel agent, tour operator     Package Tour                   Yes
## 201                           Others      Independent                    No
## 202               Friends, relatives     Package Tour                   Yes
## 203      Travel agent, tour operator     Package Tour                   Yes
## 204                           Others      Independent                    No
## 205                   Radio, TV, Web     Package Tour                    No
## 206      Travel agent, tour operator     Package Tour                   Yes
## 207      Travel agent, tour operator     Package Tour                    No
## 208      Travel agent, tour operator     Package Tour                    No
## 209               Friends, relatives     Package Tour                    No
## 210      Travel agent, tour operator     Package Tour                   Yes
## 211               Friends, relatives      Independent                    No
## 212      Travel agent, tour operator     Package Tour                   Yes
## 213      Travel agent, tour operator     Package Tour                   Yes
## 214               Friends, relatives      Independent                    No
## 215      Travel agent, tour operator      Independent                    No
## 216      Travel agent, tour operator     Package Tour                   Yes
## 217      Travel agent, tour operator     Package Tour                   Yes
## 218  Newspaper, magazines, brochures      Independent                    No
## 219      Travel agent, tour operator     Package Tour                   Yes
## 220      Travel agent, tour operator     Package Tour                   Yes
## 221      Travel agent, tour operator     Package Tour                   Yes
## 222      Travel agent, tour operator     Package Tour                    No
## 223      Travel agent, tour operator      Independent                    No
## 224                           Others      Independent                    No
## 225               Friends, relatives     Package Tour                    No
## 226               Friends, relatives      Independent                    No
## 228               Friends, relatives      Independent                    No
## 229                           Others      Independent                    No
## 230               Friends, relatives      Independent                    No
## 231  Newspaper, magazines, brochures      Independent                    No
## 232                           Others      Independent                    No
## 233      Travel agent, tour operator     Package Tour                    No
## 234      Travel agent, tour operator     Package Tour                   Yes
## 235      Travel agent, tour operator      Independent                    No
## 237      Travel agent, tour operator     Package Tour                   Yes
## 238      Travel agent, tour operator     Package Tour                    No
## 239               Friends, relatives      Independent                    No
## 241  Newspaper, magazines, brochures      Independent                    No
## 242      Travel agent, tour operator     Package Tour                   Yes
## 243  Newspaper, magazines, brochures      Independent                    No
## 244               Friends, relatives      Independent                    No
## 245      Travel agent, tour operator     Package Tour                   Yes
## 246                   Radio, TV, Web      Independent                   Yes
## 247               Friends, relatives      Independent                    No
## 248      Travel agent, tour operator     Package Tour                   Yes
## 249      Travel agent, tour operator     Package Tour                   Yes
## 250      Travel agent, tour operator     Package Tour                   Yes
## 251      Travel agent, tour operator     Package Tour                    No
## 252      Travel agent, tour operator     Package Tour                   Yes
## 253      Travel agent, tour operator     Package Tour                   Yes
## 254      Travel agent, tour operator     Package Tour                   Yes
## 255      Travel agent, tour operator     Package Tour                   Yes
## 256               Friends, relatives      Independent                    No
## 257      Travel agent, tour operator      Independent                    No
## 258      Travel agent, tour operator     Package Tour                   Yes
## 259                           Others     Package Tour                   Yes
## 260                   Radio, TV, Web      Independent                    No
## 261      Travel agent, tour operator     Package Tour                    No
## 262                           Others     Package Tour                    No
## 264               Friends, relatives      Independent                    No
## 265               Friends, relatives     Package Tour                    No
## 266      Travel agent, tour operator     Package Tour                    No
## 267               Friends, relatives      Independent                    No
## 268               Friends, relatives     Package Tour                    No
## 269      Travel agent, tour operator     Package Tour                   Yes
## 270               Friends, relatives      Independent                    No
## 271               Friends, relatives      Independent                    No
## 272               Friends, relatives      Independent                    No
## 273  Newspaper, magazines, brochures     Package Tour                   Yes
## 274      Travel agent, tour operator     Package Tour                    No
## 275      Travel agent, tour operator      Independent                    No
## 276      Travel agent, tour operator     Package Tour                   Yes
## 277      Travel agent, tour operator     Package Tour                    No
## 278               Friends, relatives      Independent                    No
## 279      Travel agent, tour operator      Independent                    No
## 280               Friends, relatives      Independent                    No
## 282      Travel agent, tour operator     Package Tour                    No
## 283               Friends, relatives      Independent                    No
## 284      Travel agent, tour operator     Package Tour                   Yes
## 285               Friends, relatives     Package Tour                   Yes
## 286               Friends, relatives     Package Tour                    No
## 287               Friends, relatives     Package Tour                   Yes
## 288               Friends, relatives      Independent                    No
## 289                           Others      Independent                    No
## 290               Friends, relatives      Independent                    No
## 291               Friends, relatives     Package Tour                   Yes
## 292                   Radio, TV, Web      Independent                    No
## 293               Friends, relatives      Independent                    No
## 294                           Others      Independent                    No
## 295      Travel agent, tour operator     Package Tour                   Yes
## 296               Friends, relatives      Independent                    No
## 297               Friends, relatives      Independent                    No
## 298                   Radio, TV, Web      Independent                    No
## 299               Friends, relatives      Independent                    No
## 300                   Radio, TV, Web      Independent                    No
## 302  Newspaper, magazines, brochures      Independent                    No
## 303      Travel agent, tour operator     Package Tour                   Yes
## 305      Travel agent, tour operator     Package Tour                    No
## 306               Friends, relatives      Independent                    No
## 307               Friends, relatives      Independent                    No
## 308               Friends, relatives      Independent                    No
## 309                           Others      Independent                    No
## 310                           Others     Package Tour                   Yes
## 311      Travel agent, tour operator     Package Tour                   Yes
## 312                           Others      Independent                    No
## 313               Friends, relatives      Independent                    No
## 314               Friends, relatives     Package Tour                    No
## 315      Travel agent, tour operator     Package Tour                    No
## 316               Friends, relatives      Independent                    No
## 320               Friends, relatives      Independent                    No
## 321               Friends, relatives      Independent                    No
## 322  Newspaper, magazines, brochures      Independent                    No
## 323               Friends, relatives      Independent                    No
## 324      Travel agent, tour operator      Independent                    No
## 325                           Others      Independent                    No
## 326               Friends, relatives      Independent                    No
## 327      Travel agent, tour operator      Independent                    No
## 328      Travel agent, tour operator     Package Tour                   Yes
## 329               Friends, relatives      Independent                    No
## 330                           Others      Independent                    No
## 331      Travel agent, tour operator     Package Tour                    No
## 332      Travel agent, tour operator     Package Tour                   Yes
## 333      Travel agent, tour operator     Package Tour                   Yes
## 334      Travel agent, tour operator     Package Tour                   Yes
## 335               Friends, relatives      Independent                    No
## 336  Newspaper, magazines, brochures      Independent                    No
## 337      Travel agent, tour operator      Independent                    No
## 338      Travel agent, tour operator     Package Tour                   Yes
## 339      Travel agent, tour operator      Independent                    No
## 340               Friends, relatives     Package Tour                    No
## 341               Friends, relatives     Package Tour                    No
## 342                           Others      Independent                    No
## 343      Travel agent, tour operator      Independent                    No
## 344               Friends, relatives      Independent                    No
## 345      Travel agent, tour operator      Independent                    No
## 346                   Radio, TV, Web     Package Tour                   Yes
## 347          Tanzania Mission Abroad     Package Tour                    No
## 348               Friends, relatives      Independent                    No
## 349          Tanzania Mission Abroad      Independent                    No
## 350      Travel agent, tour operator     Package Tour                   Yes
## 351      Travel agent, tour operator     Package Tour                    No
## 352      Travel agent, tour operator     Package Tour                   Yes
## 354                           Others      Independent                    No
## 355      Travel agent, tour operator      Independent                    No
## 356      Travel agent, tour operator     Package Tour                   Yes
## 357               Friends, relatives     Package Tour                   Yes
## 358                   Radio, TV, Web     Package Tour                   Yes
## 359      Travel agent, tour operator     Package Tour                   Yes
## 360                           Others      Independent                    No
## 361      Travel agent, tour operator     Package Tour                   Yes
## 362      Travel agent, tour operator     Package Tour                   Yes
## 363      Travel agent, tour operator     Package Tour                    No
## 364      Travel agent, tour operator     Package Tour                   Yes
## 365               Friends, relatives      Independent                    No
## 366  Newspaper, magazines, brochures      Independent                    No
## 367          Tanzania Mission Abroad      Independent                    No
## 368      Travel agent, tour operator      Independent                    No
## 369      Travel agent, tour operator     Package Tour                   Yes
## 370                   Radio, TV, Web     Package Tour                   Yes
## 371      Travel agent, tour operator     Package Tour                   Yes
## 372                   Radio, TV, Web      Independent                    No
## 373      Travel agent, tour operator     Package Tour                    No
## 374               Friends, relatives      Independent                    No
## 375      Travel agent, tour operator     Package Tour                   Yes
## 376      Travel agent, tour operator     Package Tour                   Yes
## 377                   Radio, TV, Web      Independent                    No
## 378      Travel agent, tour operator     Package Tour                   Yes
## 379      Travel agent, tour operator     Package Tour                    No
## 380  Newspaper, magazines, brochures      Independent                    No
## 381               Friends, relatives      Independent                    No
## 382               Friends, relatives      Independent                    No
## 383               Friends, relatives      Independent                    No
## 384                       Trade fair      Independent                    No
## 385                           Others      Independent                    No
## 386  Newspaper, magazines, brochures     Package Tour                    No
## 387               Friends, relatives      Independent                    No
## 388      Travel agent, tour operator     Package Tour                   Yes
## 389      Travel agent, tour operator      Independent                    No
## 390               Friends, relatives      Independent                    No
## 391  Newspaper, magazines, brochures      Independent                    No
## 392                   Radio, TV, Web     Package Tour                    No
## 393      Travel agent, tour operator      Independent                    No
## 394               Friends, relatives      Independent                    No
## 396      Travel agent, tour operator     Package Tour                    No
## 397               Friends, relatives      Independent                    No
## 398               Friends, relatives      Independent                    No
## 399               Friends, relatives      Independent                    No
## 400      Travel agent, tour operator      Independent                    No
## 401  Newspaper, magazines, brochures     Package Tour                   Yes
## 402                   Radio, TV, Web      Independent                    No
## 403      Travel agent, tour operator     Package Tour                   Yes
## 404      Travel agent, tour operator     Package Tour                   Yes
## 405               Friends, relatives      Independent                    No
## 406                           Others      Independent                    No
## 407      Travel agent, tour operator     Package Tour                   Yes
## 408                           Others      Independent                    No
## 409               Friends, relatives     Package Tour                    No
## 410      Travel agent, tour operator      Independent                    No
## 411      Travel agent, tour operator     Package Tour                   Yes
## 412               Friends, relatives      Independent                    No
## 413               Friends, relatives      Independent                    No
## 414               Friends, relatives      Independent                    No
## 415               Friends, relatives      Independent                    No
## 416               Friends, relatives      Independent                    No
## 417      Travel agent, tour operator     Package Tour                    No
## 418               Friends, relatives      Independent                    No
## 419               Friends, relatives      Independent                    No
## 420                           Others      Independent                    No
## 422      Travel agent, tour operator     Package Tour                   Yes
## 423               Friends, relatives      Independent                    No
## 424               Friends, relatives      Independent                    No
## 426               Friends, relatives      Independent                    No
## 427               Friends, relatives      Independent                    No
## 428      Travel agent, tour operator     Package Tour                   Yes
## 429      Travel agent, tour operator     Package Tour                   Yes
## 430               Friends, relatives      Independent                    No
## 431      Travel agent, tour operator     Package Tour                   Yes
## 432               Friends, relatives     Package Tour                    No
## 433               Friends, relatives      Independent                    No
## 435      Travel agent, tour operator     Package Tour                    No
## 436               Friends, relatives      Independent                    No
## 437      Travel agent, tour operator     Package Tour                   Yes
## 439               Friends, relatives      Independent                    No
## 440               Friends, relatives      Independent                    No
## 441               Friends, relatives      Independent                    No
## 442               Friends, relatives      Independent                    No
## 443                           Others     Package Tour                   Yes
## 444      Travel agent, tour operator     Package Tour                   Yes
## 445                   Radio, TV, Web      Independent                    No
## 446      Travel agent, tour operator     Package Tour                   Yes
## 447               Friends, relatives      Independent                    No
## 448               Friends, relatives      Independent                    No
## 449                           Others     Package Tour                    No
## 450      Travel agent, tour operator     Package Tour                   Yes
## 451                           Others     Package Tour                   Yes
## 452               Friends, relatives      Independent                    No
## 453                           Others      Independent                    No
## 454      Travel agent, tour operator      Independent                    No
## 456               Friends, relatives      Independent                    No
## 457      Travel agent, tour operator      Independent                    No
## 458      Travel agent, tour operator     Package Tour                   Yes
## 459      Travel agent, tour operator     Package Tour                   Yes
## 460               Friends, relatives      Independent                    No
## 461               Friends, relatives      Independent                    No
## 462               Friends, relatives     Package Tour                   Yes
## 463                       Trade fair     Package Tour                   Yes
## 464               Friends, relatives     Package Tour                   Yes
## 465      Travel agent, tour operator     Package Tour                    No
## 466               Friends, relatives      Independent                    No
## 467      Travel agent, tour operator     Package Tour                    No
## 468      Travel agent, tour operator     Package Tour                    No
## 469      Travel agent, tour operator     Package Tour                    No
## 470      Travel agent, tour operator     Package Tour                   Yes
## 471                   Radio, TV, Web      Independent                    No
## 472               Friends, relatives      Independent                    No
## 473      Travel agent, tour operator     Package Tour                   Yes
## 474      Travel agent, tour operator     Package Tour                   Yes
## 475                   Radio, TV, Web     Package Tour                    No
## 476      Travel agent, tour operator     Package Tour                   Yes
## 477      Travel agent, tour operator     Package Tour                    No
## 478      Travel agent, tour operator     Package Tour                   Yes
## 479               Friends, relatives      Independent                    No
## 480      Travel agent, tour operator     Package Tour                    No
## 481  Newspaper, magazines, brochures      Independent                    No
## 482                           Others      Independent                    No
## 483                   Radio, TV, Web      Independent                    No
## 484               Friends, relatives     Package Tour                    No
## 485                           Others      Independent                    No
## 486               Friends, relatives      Independent                    No
## 487                   Radio, TV, Web     Package Tour                    No
## 488      Travel agent, tour operator     Package Tour                   Yes
## 489               Friends, relatives     Package Tour                   Yes
## 490               Friends, relatives      Independent                    No
## 491               Friends, relatives      Independent                    No
## 492               Friends, relatives      Independent                    No
## 493      Travel agent, tour operator      Independent                    No
## 494      Travel agent, tour operator     Package Tour                   Yes
## 495      Travel agent, tour operator     Package Tour                   Yes
## 497      Travel agent, tour operator     Package Tour                    No
## 498      Travel agent, tour operator      Independent                    No
## 499      Travel agent, tour operator     Package Tour                   Yes
## 500                           Others      Independent                    No
## 501      Travel agent, tour operator     Package Tour                   Yes
## 502      Travel agent, tour operator     Package Tour                    No
## 503                   Radio, TV, Web      Independent                    No
## 504                   Radio, TV, Web      Independent                    No
## 505               Friends, relatives      Independent                    No
## 506               Friends, relatives      Independent                    No
## 507               Friends, relatives      Independent                    No
## 508  Newspaper, magazines, brochures      Independent                    No
## 509                   Radio, TV, Web     Package Tour                    No
## 510               Friends, relatives      Independent                    No
## 511               Friends, relatives     Package Tour                   Yes
## 512      Travel agent, tour operator     Package Tour                   Yes
## 513      Travel agent, tour operator     Package Tour                   Yes
## 514          Tanzania Mission Abroad      Independent                    No
## 515      Travel agent, tour operator     Package Tour                   Yes
## 516      Travel agent, tour operator     Package Tour                   Yes
## 517               Friends, relatives     Package Tour                    No
## 518               Friends, relatives     Package Tour                   Yes
## 519               Inflight magazines      Independent                    No
## 520      Travel agent, tour operator     Package Tour                    No
## 521  Newspaper, magazines, brochures      Independent                    No
## 522      Travel agent, tour operator      Independent                   Yes
## 523               Friends, relatives      Independent                    No
## 524      Travel agent, tour operator     Package Tour                   Yes
## 526      Travel agent, tour operator     Package Tour                   Yes
## 527                       Trade fair      Independent                    No
## 528      Travel agent, tour operator     Package Tour                    No
## 529      Travel agent, tour operator      Independent                    No
## 530               Friends, relatives      Independent                    No
## 531      Travel agent, tour operator     Package Tour                    No
## 532                           Others      Independent                    No
## 533      Travel agent, tour operator     Package Tour                   Yes
## 534      Travel agent, tour operator     Package Tour                   Yes
## 535      Travel agent, tour operator     Package Tour                    No
## 536                   Radio, TV, Web     Package Tour                    No
## 537      Travel agent, tour operator     Package Tour                   Yes
## 538  Newspaper, magazines, brochures     Package Tour                   Yes
## 539      Travel agent, tour operator     Package Tour                   Yes
## 540               Friends, relatives     Package Tour                    No
## 541               Friends, relatives     Package Tour                    No
## 542  Newspaper, magazines, brochures      Independent                    No
## 543               Friends, relatives      Independent                    No
## 544               Friends, relatives      Independent                    No
## 545      Travel agent, tour operator     Package Tour                   Yes
## 546               Friends, relatives      Independent                    No
## 547               Friends, relatives      Independent                    No
## 548  Newspaper, magazines, brochures      Independent                    No
## 549      Travel agent, tour operator     Package Tour                    No
## 550  Newspaper, magazines, brochures     Package Tour                   Yes
## 551                           Others      Independent                    No
## 552  Newspaper, magazines, brochures      Independent                    No
## 553      Travel agent, tour operator     Package Tour                    No
## 554  Newspaper, magazines, brochures     Package Tour                   Yes
## 555      Travel agent, tour operator     Package Tour                   Yes
## 556  Newspaper, magazines, brochures     Package Tour                   Yes
## 557               Friends, relatives      Independent                    No
## 558                   Radio, TV, Web      Independent                    No
## 559      Travel agent, tour operator     Package Tour                   Yes
## 560      Travel agent, tour operator     Package Tour                    No
## 561               Friends, relatives     Package Tour                    No
## 562      Travel agent, tour operator     Package Tour                    No
## 563                   Radio, TV, Web      Independent                    No
## 564      Travel agent, tour operator     Package Tour                    No
## 565      Travel agent, tour operator     Package Tour                   Yes
## 566                           Others      Independent                    No
## 567      Travel agent, tour operator     Package Tour                   Yes
## 568  Newspaper, magazines, brochures     Package Tour                    No
## 570      Travel agent, tour operator     Package Tour                   Yes
## 571               Friends, relatives      Independent                    No
## 572      Travel agent, tour operator     Package Tour                   Yes
## 573      Travel agent, tour operator      Independent                   Yes
## 574      Travel agent, tour operator     Package Tour                   Yes
## 575      Travel agent, tour operator     Package Tour                    No
## 576                           Others     Package Tour                   Yes
## 577               Friends, relatives      Independent                    No
## 578      Travel agent, tour operator     Package Tour                   Yes
## 579                   Radio, TV, Web      Independent                    No
## 581               Friends, relatives      Independent                    No
## 582               Friends, relatives      Independent                    No
## 583      Travel agent, tour operator     Package Tour                   Yes
## 584      Travel agent, tour operator      Independent                    No
## 585                           Others      Independent                    No
## 586      Travel agent, tour operator     Package Tour                   Yes
## 587      Travel agent, tour operator     Package Tour                   Yes
## 588               Friends, relatives      Independent                    No
## 589                           Others      Independent                    No
## 590      Travel agent, tour operator     Package Tour                    No
## 591      Travel agent, tour operator     Package Tour                    No
## 592               Friends, relatives     Package Tour                    No
## 593                   Radio, TV, Web     Package Tour                    No
## 594      Travel agent, tour operator     Package Tour                   Yes
## 595                           Others      Independent                    No
## 596                           Others     Package Tour                    No
## 597               Friends, relatives      Independent                    No
## 598      Travel agent, tour operator     Package Tour                   Yes
## 599               Friends, relatives     Package Tour                   Yes
## 600               Friends, relatives     Package Tour                   Yes
## 601      Travel agent, tour operator     Package Tour                   Yes
## 602      Travel agent, tour operator     Package Tour                    No
## 603  Newspaper, magazines, brochures      Independent                    No
## 604               Friends, relatives     Package Tour                   Yes
## 605      Travel agent, tour operator     Package Tour                   Yes
## 606      Travel agent, tour operator     Package Tour                   Yes
## 607      Travel agent, tour operator     Package Tour                    No
## 608      Travel agent, tour operator     Package Tour                    No
## 609      Travel agent, tour operator     Package Tour                   Yes
## 611      Travel agent, tour operator     Package Tour                    No
## 612               Friends, relatives      Independent                    No
## 613               Friends, relatives      Independent                    No
## 614                   Radio, TV, Web      Independent                    No
## 615               Friends, relatives      Independent                    No
## 616      Travel agent, tour operator      Independent                    No
## 617               Inflight magazines      Independent                    No
## 618      Travel agent, tour operator     Package Tour                   Yes
## 619               Friends, relatives     Package Tour                    No
## 620                   Radio, TV, Web     Package Tour                    No
## 621               Friends, relatives     Package Tour                   Yes
## 622               Friends, relatives     Package Tour                   Yes
## 624               Friends, relatives     Package Tour                    No
## 625               Friends, relatives      Independent                    No
## 626      Travel agent, tour operator     Package Tour                    No
## 627      Travel agent, tour operator      Independent                    No
## 628                   Radio, TV, Web      Independent                    No
## 629      Travel agent, tour operator     Package Tour                   Yes
## 631      Travel agent, tour operator      Independent                    No
## 632               Friends, relatives     Package Tour                   Yes
## 633               Friends, relatives      Independent                    No
## 634               Friends, relatives      Independent                    No
## 635                   Radio, TV, Web      Independent                    No
## 636  Newspaper, magazines, brochures     Package Tour                    No
## 638      Travel agent, tour operator     Package Tour                   Yes
## 639      Travel agent, tour operator     Package Tour                    No
## 640               Friends, relatives      Independent                    No
## 641               Friends, relatives      Independent                    No
## 642                   Radio, TV, Web     Package Tour                    No
## 643      Travel agent, tour operator     Package Tour                    No
## 644  Newspaper, magazines, brochures     Package Tour                   Yes
## 645  Newspaper, magazines, brochures     Package Tour                   Yes
## 646               Friends, relatives     Package Tour                    No
## 647      Travel agent, tour operator     Package Tour                    No
## 648      Travel agent, tour operator     Package Tour                    No
## 649      Travel agent, tour operator     Package Tour                   Yes
## 650               Friends, relatives      Independent                    No
## 651               Friends, relatives      Independent                    No
## 652  Newspaper, magazines, brochures     Package Tour                    No
## 653      Travel agent, tour operator      Independent                    No
## 654               Friends, relatives      Independent                    No
## 655      Travel agent, tour operator     Package Tour                   Yes
## 656      Travel agent, tour operator     Package Tour                   Yes
## 657                   Radio, TV, Web      Independent                    No
## 658                   Radio, TV, Web      Independent                    No
## 659                   Radio, TV, Web     Package Tour                    No
## 660  Newspaper, magazines, brochures     Package Tour                    No
## 661  Newspaper, magazines, brochures      Independent                    No
## 662               Friends, relatives      Independent                    No
## 663      Travel agent, tour operator     Package Tour                   Yes
## 664      Travel agent, tour operator      Independent                    No
## 665               Friends, relatives      Independent                    No
## 666               Friends, relatives      Independent                    No
## 667                   Radio, TV, Web      Independent                    No
## 669               Friends, relatives      Independent                    No
## 670      Travel agent, tour operator     Package Tour                   Yes
## 671  Newspaper, magazines, brochures      Independent                    No
## 672                   Radio, TV, Web     Package Tour                   Yes
## 673      Travel agent, tour operator     Package Tour                   Yes
## 674      Travel agent, tour operator     Package Tour                    No
## 675                       Trade fair      Independent                    No
## 676               Friends, relatives     Package Tour                   Yes
## 677                           Others     Package Tour                    No
## 678               Friends, relatives      Independent                    No
## 679               Friends, relatives      Independent                    No
## 680                       Trade fair      Independent                    No
## 681      Travel agent, tour operator     Package Tour                   Yes
## 682               Friends, relatives      Independent                    No
## 683               Friends, relatives      Independent                    No
## 684      Travel agent, tour operator     Package Tour                   Yes
## 685                   Radio, TV, Web     Package Tour                    No
## 686                           Others      Independent                    No
## 688               Friends, relatives     Package Tour                   Yes
## 690      Travel agent, tour operator     Package Tour                   Yes
## 691      Travel agent, tour operator     Package Tour                   Yes
## 692               Friends, relatives     Package Tour                    No
## 693               Friends, relatives      Independent                    No
## 694      Travel agent, tour operator     Package Tour                   Yes
## 695  Newspaper, magazines, brochures     Package Tour                    No
## 696      Travel agent, tour operator      Independent                    No
## 697      Travel agent, tour operator     Package Tour                   Yes
## 698               Friends, relatives      Independent                    No
## 699                   Radio, TV, Web     Package Tour                    No
## 700      Travel agent, tour operator     Package Tour                   Yes
## 701                           Others      Independent                    No
## 702                           Others      Independent                    No
## 703      Travel agent, tour operator     Package Tour                    No
## 704                   Radio, TV, Web      Independent                    No
## 705               Friends, relatives      Independent                    No
## 706               Friends, relatives      Independent                    No
## 707      Travel agent, tour operator     Package Tour                   Yes
## 708               Friends, relatives      Independent                    No
## 709                           Others     Package Tour                    No
## 710               Friends, relatives     Package Tour                   Yes
## 711  Newspaper, magazines, brochures     Package Tour                   Yes
## 712      Travel agent, tour operator     Package Tour                   Yes
## 713               Friends, relatives      Independent                    No
## 714                           Others      Independent                    No
## 715               Friends, relatives      Independent                    No
## 716               Friends, relatives     Package Tour                   Yes
## 717               Friends, relatives      Independent                    No
## 718               Friends, relatives     Package Tour                   Yes
## 719      Travel agent, tour operator     Package Tour                   Yes
## 720                           Others     Package Tour                   Yes
## 721      Travel agent, tour operator     Package Tour                   Yes
## 722      Travel agent, tour operator      Independent                    No
## 723      Travel agent, tour operator     Package Tour                   Yes
## 724               Friends, relatives      Independent                    No
## 725      Travel agent, tour operator     Package Tour                   Yes
## 726                           Others      Independent                    No
## 727               Friends, relatives      Independent                    No
## 728  Newspaper, magazines, brochures      Independent                    No
## 729      Travel agent, tour operator     Package Tour                   Yes
## 731      Travel agent, tour operator     Package Tour                   Yes
## 732                       Trade fair      Independent                    No
## 733               Friends, relatives      Independent                    No
## 734               Friends, relatives     Package Tour                   Yes
## 735               Friends, relatives     Package Tour                    No
## 737  Newspaper, magazines, brochures      Independent                    No
## 738      Travel agent, tour operator     Package Tour                   Yes
## 739      Travel agent, tour operator     Package Tour                   Yes
## 741                   Radio, TV, Web      Independent                    No
## 742      Travel agent, tour operator     Package Tour                   Yes
## 743                           Others      Independent                    No
## 744                   Radio, TV, Web      Independent                    No
## 745  Newspaper, magazines, brochures     Package Tour                   Yes
## 746      Travel agent, tour operator     Package Tour                    No
## 747                       Trade fair      Independent                    No
## 748      Travel agent, tour operator     Package Tour                   Yes
## 749      Travel agent, tour operator      Independent                    No
## 750               Friends, relatives      Independent                    No
## 751      Travel agent, tour operator     Package Tour                    No
## 752                   Radio, TV, Web      Independent                    No
## 753      Travel agent, tour operator     Package Tour                   Yes
## 754      Travel agent, tour operator     Package Tour                    No
## 755                           Others      Independent                    No
## 756               Friends, relatives      Independent                   Yes
## 757               Friends, relatives     Package Tour                   Yes
## 758      Travel agent, tour operator     Package Tour                    No
## 759      Travel agent, tour operator     Package Tour                   Yes
## 760               Friends, relatives      Independent                    No
## 761      Travel agent, tour operator     Package Tour                    No
## 762               Friends, relatives     Package Tour                   Yes
## 763      Travel agent, tour operator     Package Tour                   Yes
## 764               Friends, relatives      Independent                    No
## 765               Friends, relatives      Independent                    No
## 766      Travel agent, tour operator     Package Tour                   Yes
## 767      Travel agent, tour operator     Package Tour                    No
## 768      Travel agent, tour operator     Package Tour                   Yes
## 769      Travel agent, tour operator     Package Tour                    No
## 770               Friends, relatives      Independent                    No
## 771                   Radio, TV, Web      Independent                    No
## 772      Travel agent, tour operator     Package Tour                    No
## 773  Newspaper, magazines, brochures      Independent                    No
## 774                           Others      Independent                    No
## 775                   Radio, TV, Web      Independent                    No
## 776      Travel agent, tour operator     Package Tour                   Yes
## 777               Friends, relatives      Independent                    No
## 778      Travel agent, tour operator     Package Tour                   Yes
## 779               Friends, relatives      Independent                    No
## 780      Travel agent, tour operator     Package Tour                    No
## 781               Friends, relatives      Independent                    No
## 782      Travel agent, tour operator     Package Tour                   Yes
## 783               Friends, relatives     Package Tour                   Yes
## 784      Travel agent, tour operator     Package Tour                   Yes
## 785      Travel agent, tour operator     Package Tour                    No
## 786      Travel agent, tour operator     Package Tour                    No
## 787      Travel agent, tour operator     Package Tour                    No
## 788      Travel agent, tour operator     Package Tour                   Yes
## 789      Travel agent, tour operator     Package Tour                   Yes
## 790      Travel agent, tour operator     Package Tour                   Yes
## 791      Travel agent, tour operator     Package Tour                   Yes
## 792      Travel agent, tour operator     Package Tour                   Yes
## 793                   Radio, TV, Web      Independent                    No
## 794      Travel agent, tour operator     Package Tour                   Yes
## 795      Travel agent, tour operator     Package Tour                   Yes
## 797               Friends, relatives      Independent                    No
## 798  Newspaper, magazines, brochures     Package Tour                   Yes
## 799      Travel agent, tour operator     Package Tour                   Yes
## 800      Travel agent, tour operator     Package Tour                   Yes
## 801               Friends, relatives      Independent                    No
## 802      Travel agent, tour operator      Independent                    No
## 803      Travel agent, tour operator     Package Tour                   Yes
## 804      Travel agent, tour operator     Package Tour                   Yes
## 805               Friends, relatives      Independent                    No
## 806  Newspaper, magazines, brochures      Independent                    No
## 807               Friends, relatives      Independent                    No
## 808                   Radio, TV, Web     Package Tour                   Yes
## 809  Newspaper, magazines, brochures     Package Tour                   Yes
## 810      Travel agent, tour operator     Package Tour                   Yes
## 811                           Others     Package Tour                   Yes
## 812  Newspaper, magazines, brochures      Independent                    No
## 814               Friends, relatives      Independent                    No
## 815      Travel agent, tour operator      Independent                    No
## 816  Newspaper, magazines, brochures      Independent                    No
## 817      Travel agent, tour operator     Package Tour                   Yes
## 818      Travel agent, tour operator     Package Tour                   Yes
## 820      Travel agent, tour operator     Package Tour                    No
## 821      Travel agent, tour operator     Package Tour                    No
## 822      Travel agent, tour operator     Package Tour                   Yes
## 823               Friends, relatives      Independent                    No
## 824      Travel agent, tour operator      Independent                    No
## 825      Travel agent, tour operator     Package Tour                   Yes
## 826      Travel agent, tour operator     Package Tour                   Yes
## 827               Friends, relatives      Independent                    No
## 828      Travel agent, tour operator     Package Tour                   Yes
## 829               Friends, relatives      Independent                    No
## 831               Friends, relatives      Independent                    No
## 832      Travel agent, tour operator     Package Tour                   Yes
## 833               Friends, relatives      Independent                    No
## 834                           Others      Independent                    No
## 835      Travel agent, tour operator     Package Tour                   Yes
## 836  Newspaper, magazines, brochures      Independent                    No
## 837                   Radio, TV, Web     Package Tour                    No
## 838      Travel agent, tour operator     Package Tour                   Yes
## 839      Travel agent, tour operator      Independent                    No
## 841               Friends, relatives      Independent                    No
## 842               Friends, relatives      Independent                    No
## 845      Travel agent, tour operator     Package Tour                    No
## 846      Travel agent, tour operator      Independent                    No
## 847      Travel agent, tour operator     Package Tour                   Yes
## 848      Travel agent, tour operator      Independent                    No
## 849               Friends, relatives      Independent                    No
## 850               Friends, relatives      Independent                    No
## 851      Travel agent, tour operator      Independent                    No
## 852      Travel agent, tour operator     Package Tour                   Yes
## 853  Newspaper, magazines, brochures      Independent                    No
## 854               Friends, relatives      Independent                    No
## 855      Travel agent, tour operator     Package Tour                   Yes
## 856               Friends, relatives     Package Tour                    No
## 857      Travel agent, tour operator      Independent                    No
## 858      Travel agent, tour operator     Package Tour                    No
## 859               Friends, relatives     Package Tour                   Yes
## 860               Friends, relatives      Independent                    No
## 861      Travel agent, tour operator     Package Tour                    No
## 862               Friends, relatives      Independent                    No
## 863      Travel agent, tour operator     Package Tour                    No
## 864      Travel agent, tour operator     Package Tour                   Yes
## 865      Travel agent, tour operator     Package Tour                   Yes
## 866               Friends, relatives      Independent                    No
## 867               Friends, relatives      Independent                    No
## 868      Travel agent, tour operator     Package Tour                   Yes
## 869               Friends, relatives      Independent                    No
## 870          Tanzania Mission Abroad     Package Tour                    No
## 871               Friends, relatives      Independent                    No
## 872      Travel agent, tour operator     Package Tour                   Yes
## 873                   Radio, TV, Web     Package Tour                    No
## 874               Friends, relatives     Package Tour                   Yes
## 875      Travel agent, tour operator     Package Tour                   Yes
## 876               Friends, relatives      Independent                    No
## 877               Friends, relatives      Independent                    No
## 878               Friends, relatives      Independent                    No
## 879      Travel agent, tour operator     Package Tour                   Yes
## 880                   Radio, TV, Web     Package Tour                    No
## 881               Friends, relatives      Independent                    No
## 882      Travel agent, tour operator     Package Tour                    No
## 883               Friends, relatives      Independent                    No
## 885                   Radio, TV, Web      Independent                    No
## 886      Travel agent, tour operator     Package Tour                    No
## 887               Friends, relatives      Independent                    No
## 889                           Others      Independent                    No
## 890      Travel agent, tour operator     Package Tour                    No
## 891      Travel agent, tour operator     Package Tour                    No
## 892               Friends, relatives      Independent                    No
## 893  Newspaper, magazines, brochures      Independent                    No
## 894                   Radio, TV, Web      Independent                    No
## 895               Friends, relatives      Independent                    No
## 896                   Radio, TV, Web     Package Tour                    No
## 897                           Others     Package Tour                    No
## 898               Friends, relatives     Package Tour                   Yes
## 899               Friends, relatives      Independent                    No
## 900               Friends, relatives      Independent                    No
## 902               Friends, relatives      Independent                    No
## 903      Travel agent, tour operator     Package Tour                   Yes
## 904      Travel agent, tour operator     Package Tour                   Yes
## 905                   Radio, TV, Web      Independent                    No
## 906      Travel agent, tour operator     Package Tour                   Yes
## 907      Travel agent, tour operator     Package Tour                    No
## 908                           Others      Independent                    No
## 909      Travel agent, tour operator     Package Tour                   Yes
## 910                           Others      Independent                    No
## 911                   Radio, TV, Web      Independent                    No
## 912                           Others      Independent                    No
## 913      Travel agent, tour operator     Package Tour                   Yes
## 914      Travel agent, tour operator     Package Tour                    No
## 915               Friends, relatives      Independent                    No
## 916               Friends, relatives      Independent                    No
## 917               Friends, relatives      Independent                    No
## 918               Friends, relatives     Package Tour                    No
## 919      Travel agent, tour operator     Package Tour                   Yes
## 920               Friends, relatives      Independent                    No
## 921      Travel agent, tour operator     Package Tour                   Yes
## 922      Travel agent, tour operator     Package Tour                   Yes
## 923      Travel agent, tour operator     Package Tour                    No
## 924      Travel agent, tour operator     Package Tour                   Yes
## 925                   Radio, TV, Web      Independent                    No
## 926  Newspaper, magazines, brochures     Package Tour                   Yes
## 927      Travel agent, tour operator     Package Tour                    No
## 928      Travel agent, tour operator     Package Tour                    No
## 929                           Others      Independent                    No
## 930               Friends, relatives      Independent                    No
## 931      Travel agent, tour operator     Package Tour                   Yes
## 932                   Radio, TV, Web      Independent                    No
## 933                           Others      Independent                    No
## 934      Travel agent, tour operator     Package Tour                   Yes
## 935               Friends, relatives      Independent                    No
## 936      Travel agent, tour operator     Package Tour                    No
## 937      Travel agent, tour operator      Independent                    No
## 938               Friends, relatives      Independent                    No
## 939                   Radio, TV, Web      Independent                    No
## 940               Friends, relatives      Independent                    No
## 941      Travel agent, tour operator     Package Tour                   Yes
## 942                       Trade fair     Package Tour                   Yes
## 943      Travel agent, tour operator     Package Tour                   Yes
## 945               Friends, relatives     Package Tour                    No
## 946               Friends, relatives     Package Tour                    No
## 947      Travel agent, tour operator     Package Tour                   Yes
## 948      Travel agent, tour operator     Package Tour                   Yes
## 950  Newspaper, magazines, brochures     Package Tour                   Yes
## 951      Travel agent, tour operator     Package Tour                   Yes
## 952                   Radio, TV, Web      Independent                    No
## 953      Travel agent, tour operator     Package Tour                    No
## 954      Travel agent, tour operator     Package Tour                   Yes
## 955               Friends, relatives      Independent                    No
## 956          Tanzania Mission Abroad      Independent                    No
## 957               Friends, relatives      Independent                    No
## 958      Travel agent, tour operator      Independent                    No
## 959      Travel agent, tour operator     Package Tour                   Yes
## 960      Travel agent, tour operator     Package Tour                   Yes
## 961                   Radio, TV, Web     Package Tour                   Yes
## 962          Tanzania Mission Abroad      Independent                    No
## 963               Friends, relatives      Independent                    No
## 964                           Others      Independent                    No
## 965               Friends, relatives      Independent                    No
## 966               Friends, relatives      Independent                    No
## 967                   Radio, TV, Web      Independent                    No
## 968               Friends, relatives      Independent                    No
## 969  Newspaper, magazines, brochures      Independent                    No
## 970      Travel agent, tour operator     Package Tour                   Yes
## 971               Friends, relatives     Package Tour                    No
## 972      Travel agent, tour operator     Package Tour                   Yes
## 973               Friends, relatives      Independent                    No
## 974      Travel agent, tour operator     Package Tour                    No
## 975      Travel agent, tour operator     Package Tour                    No
## 976               Friends, relatives      Independent                    No
## 977      Travel agent, tour operator     Package Tour                   Yes
## 978      Travel agent, tour operator     Package Tour                   Yes
## 979               Friends, relatives      Independent                    No
## 980      Travel agent, tour operator      Independent                    No
## 981      Travel agent, tour operator     Package Tour                   Yes
## 982      Travel agent, tour operator     Package Tour                    No
## 983      Travel agent, tour operator     Package Tour                   Yes
## 985               Friends, relatives      Independent                    No
## 986                           Others      Independent                    No
## 987      Travel agent, tour operator     Package Tour                    No
## 989  Newspaper, magazines, brochures      Independent                    No
## 990               Friends, relatives      Independent                    No
## 991               Friends, relatives      Independent                    No
## 992                   Radio, TV, Web      Independent                    No
## 993               Friends, relatives      Independent                    No
## 994                           Others     Package Tour                    No
## 995               Friends, relatives      Independent                    No
## 996               Friends, relatives     Package Tour                   Yes
## 997      Travel agent, tour operator      Independent                    No
## 998      Travel agent, tour operator     Package Tour                    No
## 999               Friends, relatives      Independent                    No
## 1000                          Others     Package Tour                   Yes
## 1001     Travel agent, tour operator     Package Tour                   Yes
## 1002     Travel agent, tour operator     Package Tour                   Yes
## 1003                          Others      Independent                    No
## 1004     Travel agent, tour operator     Package Tour                    No
## 1005     Travel agent, tour operator     Package Tour                   Yes
## 1006              Friends, relatives      Independent                    No
## 1007     Travel agent, tour operator     Package Tour                   Yes
## 1008              Friends, relatives      Independent                    No
## 1009              Friends, relatives      Independent                    No
## 1010     Travel agent, tour operator     Package Tour                   Yes
## 1011     Travel agent, tour operator     Package Tour                   Yes
## 1012              Friends, relatives      Independent                    No
## 1013     Travel agent, tour operator     Package Tour                   Yes
## 1014     Travel agent, tour operator     Package Tour                   Yes
## 1016                  Radio, TV, Web     Package Tour                   Yes
## 1017     Travel agent, tour operator      Independent                    No
## 1018     Travel agent, tour operator     Package Tour                    No
## 1019              Friends, relatives      Independent                    No
## 1020     Travel agent, tour operator     Package Tour                   Yes
## 1021                          Others      Independent                    No
## 1022     Travel agent, tour operator     Package Tour                   Yes
## 1023     Travel agent, tour operator     Package Tour                   Yes
## 1024     Travel agent, tour operator     Package Tour                    No
## 1026              Friends, relatives      Independent                    No
## 1027              Friends, relatives      Independent                    No
## 1028     Travel agent, tour operator     Package Tour                   Yes
## 1029     Travel agent, tour operator     Package Tour                   Yes
## 1030              Friends, relatives      Independent                    No
## 1032              Friends, relatives      Independent                    No
## 1033     Travel agent, tour operator      Independent                    No
## 1034 Newspaper, magazines, brochures      Independent                    No
## 1035     Travel agent, tour operator      Independent                    No
## 1036              Friends, relatives      Independent                    No
## 1037     Travel agent, tour operator     Package Tour                   Yes
## 1038     Travel agent, tour operator     Package Tour                   Yes
## 1040                          Others      Independent                    No
## 1041                  Radio, TV, Web      Independent                    No
## 1042     Travel agent, tour operator     Package Tour                   Yes
## 1043     Travel agent, tour operator     Package Tour                   Yes
## 1044     Travel agent, tour operator     Package Tour                   Yes
## 1045              Friends, relatives      Independent                    No
## 1046                          Others      Independent                    No
## 1047 Newspaper, magazines, brochures     Package Tour                    No
## 1048     Travel agent, tour operator     Package Tour                   Yes
## 1049                          Others      Independent                    No
## 1050                          Others      Independent                    No
## 1051     Travel agent, tour operator     Package Tour                   Yes
## 1052     Travel agent, tour operator     Package Tour                   Yes
## 1054              Friends, relatives     Package Tour                   Yes
## 1055              Friends, relatives      Independent                    No
## 1056              Friends, relatives      Independent                    No
## 1057              Friends, relatives      Independent                    No
## 1058                  Radio, TV, Web     Package Tour                    No
## 1059     Travel agent, tour operator      Independent                    No
## 1060 Newspaper, magazines, brochures      Independent                    No
## 1061     Travel agent, tour operator     Package Tour                   Yes
## 1062              Friends, relatives      Independent                    No
## 1063     Travel agent, tour operator      Independent                    No
## 1065     Travel agent, tour operator      Independent                    No
## 1066                          Others      Independent                    No
## 1067              Friends, relatives      Independent                    No
## 1068     Travel agent, tour operator     Package Tour                    No
## 1069              Friends, relatives      Independent                    No
## 1070                  Radio, TV, Web     Package Tour                    No
## 1071     Travel agent, tour operator     Package Tour                   Yes
## 1072              Friends, relatives      Independent                    No
## 1073              Friends, relatives      Independent                    No
## 1074     Travel agent, tour operator     Package Tour                    No
## 1075     Travel agent, tour operator     Package Tour                   Yes
## 1076              Friends, relatives      Independent                    No
## 1077     Travel agent, tour operator     Package Tour                   Yes
## 1078 Newspaper, magazines, brochures      Independent                    No
## 1079                  Radio, TV, Web     Package Tour                    No
## 1080     Travel agent, tour operator      Independent                    No
## 1081     Travel agent, tour operator     Package Tour                   Yes
## 1082 Newspaper, magazines, brochures     Package Tour                   Yes
## 1083     Travel agent, tour operator     Package Tour                    No
## 1084                  Radio, TV, Web     Package Tour                   Yes
## 1085              Friends, relatives      Independent                    No
## 1087     Travel agent, tour operator     Package Tour                   Yes
## 1088 Newspaper, magazines, brochures     Package Tour                   Yes
## 1091     Travel agent, tour operator     Package Tour                   Yes
## 1092              Friends, relatives      Independent                    No
## 1093                          Others      Independent                    No
## 1094              Friends, relatives     Package Tour                   Yes
## 1095     Travel agent, tour operator     Package Tour                   Yes
## 1096              Friends, relatives      Independent                    No
## 1098 Newspaper, magazines, brochures      Independent                    No
## 1099     Travel agent, tour operator     Package Tour                   Yes
## 1100                  Radio, TV, Web     Package Tour                    No
## 1101     Travel agent, tour operator     Package Tour                    No
## 1102              Friends, relatives      Independent                    No
## 1103              Friends, relatives      Independent                    No
## 1104              Friends, relatives      Independent                    No
## 1105     Travel agent, tour operator      Independent                    No
## 1106     Travel agent, tour operator     Package Tour                    No
## 1108 Newspaper, magazines, brochures      Independent                    No
## 1109     Travel agent, tour operator     Package Tour                   Yes
## 1110                          Others      Independent                    No
## 1111              Friends, relatives      Independent                    No
## 1112     Travel agent, tour operator     Package Tour                   Yes
## 1113     Travel agent, tour operator      Independent                    No
## 1114     Travel agent, tour operator      Independent                    No
## 1115     Travel agent, tour operator      Independent                    No
## 1116              Friends, relatives      Independent                    No
## 1117                          Others     Package Tour                    No
## 1118     Travel agent, tour operator     Package Tour                   Yes
## 1120 Newspaper, magazines, brochures      Independent                    No
## 1121     Travel agent, tour operator     Package Tour                   Yes
## 1122              Friends, relatives      Independent                    No
## 1123 Newspaper, magazines, brochures     Package Tour                   Yes
## 1124                  Radio, TV, Web      Independent                    No
## 1125              Friends, relatives      Independent                    No
## 1126     Travel agent, tour operator     Package Tour                    No
## 1127                          Others      Independent                    No
## 1128              Friends, relatives      Independent                    No
## 1129              Friends, relatives      Independent                    No
## 1130     Travel agent, tour operator     Package Tour                   Yes
## 1131              Friends, relatives     Package Tour                    No
## 1132                  Radio, TV, Web      Independent                    No
## 1133              Friends, relatives     Package Tour                   Yes
## 1134                  Radio, TV, Web      Independent                    No
## 1135     Travel agent, tour operator     Package Tour                    No
## 1136     Travel agent, tour operator      Independent                    No
## 1137              Friends, relatives      Independent                    No
## 1138     Travel agent, tour operator     Package Tour                   Yes
## 1139     Travel agent, tour operator     Package Tour                   Yes
## 1140     Travel agent, tour operator     Package Tour                   Yes
## 1141     Travel agent, tour operator     Package Tour                    No
## 1142     Travel agent, tour operator     Package Tour                    No
## 1143     Travel agent, tour operator     Package Tour                   Yes
## 1144              Friends, relatives     Package Tour                   Yes
## 1146     Travel agent, tour operator     Package Tour                   Yes
## 1147              Friends, relatives      Independent                    No
## 1148     Travel agent, tour operator     Package Tour                    No
## 1149 Newspaper, magazines, brochures     Package Tour                   Yes
## 1150     Travel agent, tour operator      Independent                    No
## 1151     Travel agent, tour operator     Package Tour                   Yes
## 1152              Friends, relatives      Independent                    No
## 1153     Travel agent, tour operator     Package Tour                   Yes
## 1154 Newspaper, magazines, brochures      Independent                    No
## 1155                          Others      Independent                    No
## 1156                      Trade fair     Package Tour                   Yes
## 1157     Travel agent, tour operator      Independent                    No
## 1158     Travel agent, tour operator     Package Tour                   Yes
## 1159     Travel agent, tour operator     Package Tour                   Yes
## 1160                  Radio, TV, Web      Independent                    No
## 1161     Travel agent, tour operator     Package Tour                    No
## 1162              Friends, relatives      Independent                    No
## 1163     Travel agent, tour operator     Package Tour                   Yes
## 1164                          Others     Package Tour                   Yes
## 1165     Travel agent, tour operator     Package Tour                    No
## 1166              Friends, relatives      Independent                    No
## 1167     Travel agent, tour operator     Package Tour                   Yes
## 1168     Travel agent, tour operator     Package Tour                    No
## 1169     Travel agent, tour operator     Package Tour                    No
## 1170              Friends, relatives      Independent                    No
## 1172              Friends, relatives      Independent                    No
## 1173              Friends, relatives      Independent                    No
## 1175              Friends, relatives     Package Tour                    No
## 1177              Friends, relatives      Independent                    No
## 1178     Travel agent, tour operator     Package Tour                   Yes
## 1179     Travel agent, tour operator     Package Tour                    No
## 1180              Friends, relatives      Independent                    No
## 1181     Travel agent, tour operator     Package Tour                   Yes
## 1182              Friends, relatives      Independent                    No
## 1184     Travel agent, tour operator     Package Tour                   Yes
## 1185              Friends, relatives      Independent                    No
## 1186                          Others      Independent                    No
## 1187                      Trade fair      Independent                    No
## 1189              Friends, relatives     Package Tour                   Yes
## 1190     Travel agent, tour operator     Package Tour                   Yes
## 1191     Travel agent, tour operator     Package Tour                   Yes
## 1192     Travel agent, tour operator     Package Tour                   Yes
## 1193 Newspaper, magazines, brochures     Package Tour                   Yes
## 1194              Friends, relatives      Independent                    No
## 1196     Travel agent, tour operator     Package Tour                    No
## 1197 Newspaper, magazines, brochures      Independent                    No
## 1198                  Radio, TV, Web      Independent                    No
## 1199              Friends, relatives     Package Tour                   Yes
## 1200     Travel agent, tour operator     Package Tour                   Yes
## 1201              Friends, relatives      Independent                    No
## 1202     Travel agent, tour operator     Package Tour                   Yes
## 1203     Travel agent, tour operator     Package Tour                   Yes
## 1204                          Others      Independent                    No
## 1205              Friends, relatives      Independent                    No
## 1206              Friends, relatives      Independent                    No
## 1207 Newspaper, magazines, brochures      Independent                    No
## 1208              Friends, relatives     Package Tour                   Yes
## 1209 Newspaper, magazines, brochures     Package Tour                    No
## 1210     Travel agent, tour operator     Package Tour                    No
## 1211              Friends, relatives     Package Tour                    No
## 1212     Travel agent, tour operator     Package Tour                   Yes
## 1213     Travel agent, tour operator      Independent                    No
## 1214                          Others      Independent                    No
## 1215     Travel agent, tour operator     Package Tour                    No
## 1216              Friends, relatives      Independent                    No
## 1217         Tanzania Mission Abroad     Package Tour                   Yes
## 1218 Newspaper, magazines, brochures      Independent                    No
## 1221                          Others      Independent                    No
## 1223     Travel agent, tour operator     Package Tour                   Yes
## 1224              Friends, relatives      Independent                    No
## 1225     Travel agent, tour operator     Package Tour                   Yes
## 1227                          Others     Package Tour                   Yes
## 1228              Friends, relatives      Independent                    No
## 1229     Travel agent, tour operator     Package Tour                   Yes
## 1230     Travel agent, tour operator     Package Tour                    No
## 1231              Friends, relatives     Package Tour                    No
## 1232     Travel agent, tour operator      Independent                    No
## 1233     Travel agent, tour operator     Package Tour                   Yes
## 1234              Friends, relatives      Independent                    No
## 1235              Friends, relatives      Independent                    No
## 1236     Travel agent, tour operator     Package Tour                    No
## 1237              Friends, relatives      Independent                    No
## 1238              Friends, relatives      Independent                    No
## 1239     Travel agent, tour operator     Package Tour                   Yes
## 1240         Tanzania Mission Abroad      Independent                    No
## 1241              Friends, relatives     Package Tour                    No
## 1242     Travel agent, tour operator      Independent                    No
## 1243 Newspaper, magazines, brochures      Independent                    No
## 1244     Travel agent, tour operator     Package Tour                   Yes
## 1246              Friends, relatives      Independent                    No
## 1247                  Radio, TV, Web     Package Tour                   Yes
## 1248 Newspaper, magazines, brochures      Independent                    No
## 1249                          Others     Package Tour                   Yes
## 1250                          Others      Independent                    No
## 1251     Travel agent, tour operator      Independent                    No
## 1252     Travel agent, tour operator     Package Tour                   Yes
## 1253                      Trade fair     Package Tour                   Yes
## 1254     Travel agent, tour operator     Package Tour                   Yes
## 1255 Newspaper, magazines, brochures      Independent                    No
## 1256 Newspaper, magazines, brochures      Independent                    No
## 1257              Friends, relatives     Package Tour                    No
## 1259     Travel agent, tour operator     Package Tour                    No
## 1260                  Radio, TV, Web      Independent                    No
## 1261 Newspaper, magazines, brochures      Independent                    No
## 1262     Travel agent, tour operator     Package Tour                   Yes
## 1263     Travel agent, tour operator     Package Tour                   Yes
## 1264              Friends, relatives     Package Tour                   Yes
## 1265                          Others      Independent                    No
## 1266              Friends, relatives      Independent                    No
## 1267                  Radio, TV, Web      Independent                    No
## 1268     Travel agent, tour operator     Package Tour                   Yes
## 1269     Travel agent, tour operator     Package Tour                   Yes
## 1270     Travel agent, tour operator      Independent                    No
## 1271     Travel agent, tour operator     Package Tour                    No
## 1272     Travel agent, tour operator     Package Tour                   Yes
## 1273     Travel agent, tour operator     Package Tour                    No
## 1275     Travel agent, tour operator     Package Tour                    No
## 1276     Travel agent, tour operator     Package Tour                   Yes
## 1277     Travel agent, tour operator      Independent                    No
## 1278                  Radio, TV, Web      Independent                    No
## 1279     Travel agent, tour operator     Package Tour                   Yes
## 1280                  Radio, TV, Web     Package Tour                   Yes
## 1281              Friends, relatives      Independent                    No
## 1282              Friends, relatives     Package Tour                   Yes
## 1283     Travel agent, tour operator     Package Tour                   Yes
## 1284                  Radio, TV, Web     Package Tour                    No
## 1285     Travel agent, tour operator     Package Tour                   Yes
## 1286              Friends, relatives      Independent                    No
## 1287     Travel agent, tour operator     Package Tour                    No
## 1288              Friends, relatives      Independent                    No
## 1289                  Radio, TV, Web     Package Tour                    No
## 1290     Travel agent, tour operator     Package Tour                   Yes
## 1291                          Others      Independent                    No
## 1292     Travel agent, tour operator     Package Tour                   Yes
## 1293     Travel agent, tour operator     Package Tour                   Yes
## 1294     Travel agent, tour operator     Package Tour                    No
## 1295     Travel agent, tour operator     Package Tour                   Yes
## 1296              Friends, relatives     Package Tour                   Yes
## 1298              Friends, relatives      Independent                    No
## 1299     Travel agent, tour operator     Package Tour                   Yes
## 1300     Travel agent, tour operator      Independent                    No
## 1301     Travel agent, tour operator     Package Tour                   Yes
## 1302     Travel agent, tour operator     Package Tour                    No
## 1303              Friends, relatives      Independent                    No
## 1304     Travel agent, tour operator      Independent                    No
## 1305     Travel agent, tour operator     Package Tour                    No
## 1306                          Others      Independent                    No
## 1307     Travel agent, tour operator     Package Tour                    No
## 1308     Travel agent, tour operator     Package Tour                    No
## 1309     Travel agent, tour operator     Package Tour                   Yes
## 1310              Friends, relatives      Independent                    No
## 1311     Travel agent, tour operator     Package Tour                   Yes
## 1312              Friends, relatives      Independent                    No
## 1313     Travel agent, tour operator     Package Tour                   Yes
## 1314     Travel agent, tour operator      Independent                    No
## 1315     Travel agent, tour operator     Package Tour                   Yes
## 1316     Travel agent, tour operator      Independent                    No
## 1317              Friends, relatives      Independent                    No
## 1318              Friends, relatives      Independent                    No
## 1319     Travel agent, tour operator      Independent                    No
## 1320              Friends, relatives      Independent                    No
## 1321 Newspaper, magazines, brochures     Package Tour                   Yes
## 1322 Newspaper, magazines, brochures     Package Tour                   Yes
## 1323              Friends, relatives     Package Tour                    No
## 1324              Friends, relatives      Independent                    No
## 1326     Travel agent, tour operator     Package Tour                   Yes
## 1327 Newspaper, magazines, brochures     Package Tour                    No
## 1328         Tanzania Mission Abroad      Independent                    No
## 1330              Inflight magazines      Independent                    No
## 1331 Newspaper, magazines, brochures     Package Tour                    No
## 1332     Travel agent, tour operator     Package Tour                   Yes
## 1333                  Radio, TV, Web     Package Tour                   Yes
## 1334              Friends, relatives      Independent                    No
## 1335              Friends, relatives      Independent                    No
## 1336              Friends, relatives     Package Tour                    No
## 1337              Friends, relatives      Independent                    No
## 1338              Friends, relatives      Independent                    No
## 1339              Friends, relatives      Independent                    No
## 1340              Friends, relatives      Independent                    No
## 1341                  Radio, TV, Web      Independent                    No
## 1342                          Others      Independent                    No
## 1343     Travel agent, tour operator      Independent                    No
## 1345              Friends, relatives      Independent                    No
## 1346     Travel agent, tour operator     Package Tour                    No
## 1347     Travel agent, tour operator      Independent                    No
## 1348 Newspaper, magazines, brochures      Independent                    No
## 1349              Friends, relatives      Independent                    No
## 1350     Travel agent, tour operator     Package Tour                   Yes
## 1351     Travel agent, tour operator     Package Tour                    No
## 1352                          Others      Independent                    No
## 1354     Travel agent, tour operator      Independent                    No
## 1355     Travel agent, tour operator     Package Tour                    No
## 1356              Friends, relatives      Independent                    No
## 1357                  Radio, TV, Web      Independent                    No
## 1358                      Trade fair     Package Tour                    No
## 1359     Travel agent, tour operator     Package Tour                    No
## 1360     Travel agent, tour operator      Independent                    No
## 1361     Travel agent, tour operator     Package Tour                   Yes
## 1362              Friends, relatives      Independent                    No
## 1363     Travel agent, tour operator     Package Tour                    No
## 1364              Friends, relatives     Package Tour                    No
## 1365              Friends, relatives      Independent                    No
## 1366              Friends, relatives      Independent                    No
## 1367     Travel agent, tour operator     Package Tour                    No
## 1368              Friends, relatives      Independent                    No
## 1369     Travel agent, tour operator     Package Tour                    No
## 1370     Travel agent, tour operator     Package Tour                   Yes
## 1371              Friends, relatives      Independent                    No
## 1372     Travel agent, tour operator     Package Tour                    No
## 1373     Travel agent, tour operator     Package Tour                    No
## 1374     Travel agent, tour operator     Package Tour                   Yes
## 1375              Friends, relatives      Independent                    No
## 1376              Inflight magazines     Package Tour                    No
## 1377                          Others      Independent                    No
## 1379     Travel agent, tour operator     Package Tour                   Yes
## 1380              Friends, relatives      Independent                    No
## 1381              Friends, relatives     Package Tour                    No
## 1382     Travel agent, tour operator     Package Tour                    No
## 1383              Friends, relatives      Independent                    No
## 1385                  Radio, TV, Web      Independent                    No
## 1386              Friends, relatives      Independent                    No
## 1387                  Radio, TV, Web      Independent                    No
## 1388              Friends, relatives     Package Tour                   Yes
## 1389     Travel agent, tour operator      Independent                    No
## 1390              Friends, relatives      Independent                    No
## 1391              Inflight magazines     Package Tour                   Yes
## 1392     Travel agent, tour operator     Package Tour                    No
## 1393              Friends, relatives      Independent                    No
## 1394              Friends, relatives      Independent                    No
## 1395     Travel agent, tour operator     Package Tour                    No
## 1396 Newspaper, magazines, brochures      Independent                    No
## 1397     Travel agent, tour operator     Package Tour                   Yes
## 1398     Travel agent, tour operator     Package Tour                   Yes
## 1400              Friends, relatives     Package Tour                    No
## 1401              Friends, relatives     Package Tour                   Yes
## 1402     Travel agent, tour operator      Independent                    No
## 1403     Travel agent, tour operator     Package Tour                   Yes
## 1404 Newspaper, magazines, brochures      Independent                    No
## 1405 Newspaper, magazines, brochures      Independent                    No
## 1406                  Radio, TV, Web      Independent                    No
## 1407     Travel agent, tour operator     Package Tour                   Yes
## 1408     Travel agent, tour operator      Independent                    No
## 1409              Friends, relatives      Independent                    No
## 1410         Tanzania Mission Abroad      Independent                    No
## 1411 Newspaper, magazines, brochures     Package Tour                   Yes
## 1412     Travel agent, tour operator     Package Tour                   Yes
## 1413              Friends, relatives      Independent                    No
## 1414     Travel agent, tour operator      Independent                    No
## 1415     Travel agent, tour operator     Package Tour                   Yes
## 1416              Friends, relatives      Independent                    No
## 1417     Travel agent, tour operator     Package Tour                   Yes
## 1418                  Radio, TV, Web      Independent                    No
## 1420     Travel agent, tour operator     Package Tour                   Yes
## 1421     Travel agent, tour operator     Package Tour                    No
## 1422                          Others     Package Tour                   Yes
## 1423              Friends, relatives      Independent                    No
## 1424     Travel agent, tour operator     Package Tour                    No
## 1425 Newspaper, magazines, brochures      Independent                    No
## 1426     Travel agent, tour operator     Package Tour                    No
## 1428     Travel agent, tour operator     Package Tour                    No
## 1429     Travel agent, tour operator      Independent                    No
## 1430                      Trade fair      Independent                    No
## 1431                          Others      Independent                    No
## 1432     Travel agent, tour operator     Package Tour                    No
## 1433     Travel agent, tour operator     Package Tour                   Yes
## 1434              Friends, relatives     Package Tour                    No
## 1435              Friends, relatives      Independent                    No
## 1436         Tanzania Mission Abroad     Package Tour                   Yes
## 1437 Newspaper, magazines, brochures      Independent                    No
## 1438 Newspaper, magazines, brochures      Independent                    No
## 1439                  Radio, TV, Web      Independent                    No
## 1441              Friends, relatives      Independent                    No
## 1442     Travel agent, tour operator     Package Tour                   Yes
## 1443                          Others      Independent                    No
## 1444                  Radio, TV, Web      Independent                    No
## 1445     Travel agent, tour operator     Package Tour                   Yes
## 1446              Friends, relatives      Independent                    No
## 1447     Travel agent, tour operator     Package Tour                    No
## 1448     Travel agent, tour operator     Package Tour                   Yes
## 1449              Friends, relatives     Package Tour                   Yes
## 1450              Friends, relatives     Package Tour                   Yes
## 1451              Friends, relatives      Independent                    No
## 1452     Travel agent, tour operator     Package Tour                   Yes
## 1453              Friends, relatives      Independent                    No
## 1454                  Radio, TV, Web      Independent                    No
## 1455              Friends, relatives      Independent                    No
## 1456     Travel agent, tour operator     Package Tour                   Yes
## 1457     Travel agent, tour operator     Package Tour                   Yes
## 1458     Travel agent, tour operator      Independent                    No
## 1459                  Radio, TV, Web     Package Tour                    No
## 1460              Friends, relatives      Independent                    No
## 1461              Friends, relatives      Independent                    No
## 1462     Travel agent, tour operator     Package Tour                   Yes
## 1463              Friends, relatives     Package Tour                   Yes
## 1464     Travel agent, tour operator     Package Tour                    No
## 1465     Travel agent, tour operator     Package Tour                   Yes
## 1466     Travel agent, tour operator     Package Tour                   Yes
## 1467              Friends, relatives      Independent                    No
## 1468 Newspaper, magazines, brochures     Package Tour                    No
## 1469              Friends, relatives      Independent                    No
## 1470                          Others      Independent                    No
## 1471              Friends, relatives      Independent                    No
## 1472     Travel agent, tour operator     Package Tour                    No
## 1473     Travel agent, tour operator     Package Tour                    No
## 1474     Travel agent, tour operator     Package Tour                   Yes
## 1475     Travel agent, tour operator     Package Tour                   Yes
## 1476     Travel agent, tour operator     Package Tour                   Yes
## 1478              Friends, relatives      Independent                    No
## 1479     Travel agent, tour operator      Independent                    No
## 1480                  Radio, TV, Web     Package Tour                   Yes
## 1481     Travel agent, tour operator     Package Tour                   Yes
## 1482              Friends, relatives      Independent                    No
## 1483     Travel agent, tour operator     Package Tour                   Yes
## 1484                  Radio, TV, Web     Package Tour                    No
## 1485              Friends, relatives      Independent                    No
## 1486                  Radio, TV, Web      Independent                    No
## 1487 Newspaper, magazines, brochures     Package Tour                   Yes
## 1488                  Radio, TV, Web      Independent                    No
## 1490              Friends, relatives      Independent                    No
## 1491     Travel agent, tour operator     Package Tour                   Yes
## 1492     Travel agent, tour operator     Package Tour                    No
## 1493              Friends, relatives     Package Tour                   Yes
## 1495                  Radio, TV, Web      Independent                    No
## 1496              Friends, relatives      Independent                    No
## 1497              Friends, relatives      Independent                    No
## 1498     Travel agent, tour operator      Independent                    No
## 1499                  Radio, TV, Web      Independent                    No
## 1500     Travel agent, tour operator     Package Tour                   Yes
## 1501     Travel agent, tour operator     Package Tour                   Yes
## 1502     Travel agent, tour operator     Package Tour                    No
## 1503              Friends, relatives      Independent                    No
## 1504              Friends, relatives      Independent                    No
## 1505     Travel agent, tour operator     Package Tour                   Yes
## 1506              Inflight magazines     Package Tour                   Yes
## 1507     Travel agent, tour operator     Package Tour                    No
## 1508              Friends, relatives      Independent                    No
## 1509     Travel agent, tour operator     Package Tour                   Yes
## 1511     Travel agent, tour operator     Package Tour                   Yes
## 1512     Travel agent, tour operator     Package Tour                   Yes
## 1513              Friends, relatives      Independent                    No
## 1514              Friends, relatives     Package Tour                    No
## 1515              Friends, relatives      Independent                    No
## 1516              Friends, relatives      Independent                    No
## 1517              Friends, relatives      Independent                    No
## 1518                          Others     Package Tour                    No
## 1519              Friends, relatives     Package Tour                   Yes
## 1520     Travel agent, tour operator     Package Tour                   Yes
## 1521              Friends, relatives      Independent                    No
## 1522     Travel agent, tour operator     Package Tour                   Yes
## 1523              Friends, relatives     Package Tour                   Yes
## 1524                          Others      Independent                    No
## 1525     Travel agent, tour operator     Package Tour                   Yes
## 1526 Newspaper, magazines, brochures      Independent                    No
## 1527     Travel agent, tour operator     Package Tour                   Yes
## 1528              Friends, relatives      Independent                    No
## 1529     Travel agent, tour operator      Independent                    No
## 1530     Travel agent, tour operator     Package Tour                   Yes
## 1531                  Radio, TV, Web      Independent                    No
## 1532                      Trade fair     Package Tour                   Yes
## 1533     Travel agent, tour operator      Independent                    No
## 1534              Friends, relatives      Independent                    No
## 1536              Friends, relatives      Independent                    No
## 1537              Friends, relatives      Independent                    No
## 1538              Friends, relatives      Independent                    No
## 1539     Travel agent, tour operator     Package Tour                   Yes
## 1540                          Others     Package Tour                   Yes
## 1541              Friends, relatives     Package Tour                   Yes
## 1542              Friends, relatives     Package Tour                   Yes
## 1543     Travel agent, tour operator     Package Tour                   Yes
## 1544     Travel agent, tour operator      Independent                    No
## 1545              Friends, relatives     Package Tour                    No
## 1546              Friends, relatives      Independent                    No
## 1547                  Radio, TV, Web      Independent                    No
## 1548              Friends, relatives      Independent                    No
## 1549     Travel agent, tour operator     Package Tour                    No
## 1550     Travel agent, tour operator     Package Tour                    No
## 1551     Travel agent, tour operator     Package Tour                   Yes
## 1552     Travel agent, tour operator     Package Tour                   Yes
## 1553     Travel agent, tour operator     Package Tour                   Yes
## 1554     Travel agent, tour operator     Package Tour                    No
## 1555     Travel agent, tour operator     Package Tour                   Yes
## 1556              Friends, relatives      Independent                    No
## 1557              Friends, relatives      Independent                    No
## 1558 Newspaper, magazines, brochures     Package Tour                    No
## 1559                  Radio, TV, Web      Independent                    No
## 1560     Travel agent, tour operator     Package Tour                   Yes
## 1561 Newspaper, magazines, brochures     Package Tour                   Yes
## 1562     Travel agent, tour operator     Package Tour                   Yes
## 1564              Friends, relatives      Independent                    No
## 1565                          Others      Independent                    No
## 1566     Travel agent, tour operator     Package Tour                   Yes
## 1567              Friends, relatives      Independent                    No
## 1568     Travel agent, tour operator     Package Tour                   Yes
## 1569 Newspaper, magazines, brochures      Independent                    No
## 1570              Friends, relatives      Independent                    No
## 1571 Newspaper, magazines, brochures     Package Tour                    No
## 1574     Travel agent, tour operator     Package Tour                   Yes
## 1575     Travel agent, tour operator     Package Tour                    No
## 1576                  Radio, TV, Web     Package Tour                    No
## 1578     Travel agent, tour operator     Package Tour                    No
## 1579     Travel agent, tour operator     Package Tour                   Yes
## 1580     Travel agent, tour operator     Package Tour                   Yes
## 1581     Travel agent, tour operator     Package Tour                   Yes
## 1582                  Radio, TV, Web      Independent                    No
## 1584     Travel agent, tour operator      Independent                    No
## 1585     Travel agent, tour operator     Package Tour                   Yes
## 1586     Travel agent, tour operator     Package Tour                   Yes
## 1587                  Radio, TV, Web      Independent                    No
## 1588                          Others      Independent                    No
## 1589     Travel agent, tour operator     Package Tour                   Yes
## 1590     Travel agent, tour operator     Package Tour                    No
## 1591              Friends, relatives      Independent                    No
## 1592                          Others      Independent                    No
## 1593              Friends, relatives      Independent                    No
## 1594     Travel agent, tour operator      Independent                    No
## 1595              Friends, relatives      Independent                    No
## 1596     Travel agent, tour operator     Package Tour                   Yes
## 1597              Friends, relatives      Independent                    No
## 1598                          Others      Independent                    No
## 1600              Friends, relatives     Package Tour                   Yes
## 1601     Travel agent, tour operator     Package Tour                    No
## 1602     Travel agent, tour operator     Package Tour                    No
## 1603              Friends, relatives      Independent                    No
## 1604                          Others      Independent                    No
## 1605     Travel agent, tour operator     Package Tour                   Yes
## 1606     Travel agent, tour operator     Package Tour                   Yes
## 1607     Travel agent, tour operator     Package Tour                    No
## 1608     Travel agent, tour operator     Package Tour                   Yes
## 1609                  Radio, TV, Web      Independent                    No
## 1610     Travel agent, tour operator     Package Tour                   Yes
## 1611                          Others      Independent                    No
## 1612     Travel agent, tour operator     Package Tour                    No
## 1613              Friends, relatives     Package Tour                   Yes
## 1614              Friends, relatives      Independent                    No
## 1615     Travel agent, tour operator      Independent                    No
## 1616              Friends, relatives      Independent                    No
## 1617     Travel agent, tour operator     Package Tour                    No
## 1618     Travel agent, tour operator     Package Tour                   Yes
## 1619                          Others      Independent                    No
## 1620     Travel agent, tour operator      Independent                    No
## 1621     Travel agent, tour operator     Package Tour                    No
## 1622              Friends, relatives      Independent                    No
## 1624                          Others      Independent                    No
## 1625     Travel agent, tour operator     Package Tour                    No
## 1626     Travel agent, tour operator     Package Tour                   Yes
## 1627              Friends, relatives      Independent                    No
## 1629     Travel agent, tour operator      Independent                    No
## 1630              Friends, relatives      Independent                    No
## 1631              Friends, relatives      Independent                    No
## 1633                  Radio, TV, Web      Independent                    No
## 1634              Friends, relatives      Independent                    No
## 1635     Travel agent, tour operator     Package Tour                   Yes
## 1636     Travel agent, tour operator     Package Tour                   Yes
## 1637                  Radio, TV, Web      Independent                    No
## 1638     Travel agent, tour operator     Package Tour                   Yes
## 1640     Travel agent, tour operator     Package Tour                    No
## 1641     Travel agent, tour operator     Package Tour                   Yes
## 1642              Friends, relatives      Independent                    No
## 1643     Travel agent, tour operator     Package Tour                   Yes
## 1644     Travel agent, tour operator      Independent                    No
## 1645              Friends, relatives     Package Tour                   Yes
## 1646                  Radio, TV, Web      Independent                    No
## 1647              Friends, relatives      Independent                    No
## 1648              Friends, relatives     Package Tour                    No
## 1649     Travel agent, tour operator     Package Tour                    No
## 1651              Friends, relatives      Independent                    No
## 1652                      Trade fair     Package Tour                   Yes
## 1653     Travel agent, tour operator     Package Tour                   Yes
## 1654                  Radio, TV, Web      Independent                    No
## 1655     Travel agent, tour operator     Package Tour                   Yes
## 1656     Travel agent, tour operator     Package Tour                   Yes
## 1657              Friends, relatives      Independent                    No
## 1658              Friends, relatives     Package Tour                   Yes
## 1659 Newspaper, magazines, brochures      Independent                    No
## 1662              Friends, relatives      Independent                    No
## 1663     Travel agent, tour operator     Package Tour                   Yes
## 1664     Travel agent, tour operator      Independent                    No
## 1665     Travel agent, tour operator     Package Tour                   Yes
## 1666              Friends, relatives      Independent                    No
## 1667     Travel agent, tour operator     Package Tour                   Yes
## 1669 Newspaper, magazines, brochures      Independent                    No
## 1670              Friends, relatives      Independent                    No
## 1671 Newspaper, magazines, brochures      Independent                    No
## 1672              Friends, relatives      Independent                    No
## 1673              Friends, relatives     Package Tour                    No
## 1674     Travel agent, tour operator     Package Tour                   Yes
## 1675     Travel agent, tour operator     Package Tour                   Yes
## 1676     Travel agent, tour operator     Package Tour                    No
## 1677 Newspaper, magazines, brochures      Independent                    No
## 1678                  Radio, TV, Web      Independent                    No
## 1679              Friends, relatives      Independent                    No
## 1680     Travel agent, tour operator     Package Tour                   Yes
## 1681     Travel agent, tour operator     Package Tour                   Yes
## 1682              Friends, relatives      Independent                    No
## 1683     Travel agent, tour operator      Independent                    No
## 1684     Travel agent, tour operator     Package Tour                    No
## 1685 Newspaper, magazines, brochures      Independent                    No
## 1687     Travel agent, tour operator     Package Tour                    No
## 1688              Friends, relatives      Independent                    No
## 1689              Friends, relatives      Independent                    No
## 1690              Friends, relatives      Independent                    No
## 1691              Friends, relatives      Independent                    No
## 1692     Travel agent, tour operator     Package Tour                   Yes
## 1693     Travel agent, tour operator     Package Tour                   Yes
## 1694              Friends, relatives      Independent                    No
## 1695                          Others      Independent                    No
## 1696                  Radio, TV, Web      Independent                    No
## 1697              Friends, relatives      Independent                    No
## 1698     Travel agent, tour operator     Package Tour                   Yes
## 1699              Friends, relatives      Independent                    No
## 1700                          Others      Independent                    No
## 1701     Travel agent, tour operator     Package Tour                   Yes
## 1702              Friends, relatives     Package Tour                    No
## 1703     Travel agent, tour operator     Package Tour                    No
## 1704              Friends, relatives      Independent                    No
## 1705              Friends, relatives     Package Tour                    No
## 1706              Friends, relatives     Package Tour                   Yes
## 1707     Travel agent, tour operator     Package Tour                   Yes
## 1708              Friends, relatives      Independent                    No
## 1709     Travel agent, tour operator     Package Tour                   Yes
## 1710                          Others      Independent                    No
## 1711     Travel agent, tour operator     Package Tour                   Yes
## 1712     Travel agent, tour operator      Independent                    No
## 1713 Newspaper, magazines, brochures      Independent                    No
## 1714     Travel agent, tour operator      Independent                    No
## 1715              Friends, relatives      Independent                    No
## 1716                          Others      Independent                    No
## 1717     Travel agent, tour operator     Package Tour                   Yes
## 1718     Travel agent, tour operator      Independent                    No
## 1719     Travel agent, tour operator     Package Tour                    No
## 1720              Friends, relatives      Independent                    No
## 1721              Friends, relatives      Independent                    No
## 1723              Friends, relatives      Independent                    No
## 1724     Travel agent, tour operator      Independent                    No
## 1725                          Others      Independent                    No
## 1726     Travel agent, tour operator     Package Tour                    No
## 1727     Travel agent, tour operator      Independent                    No
## 1728 Newspaper, magazines, brochures      Independent                    No
## 1729     Travel agent, tour operator     Package Tour                    No
## 1730         Tanzania Mission Abroad      Independent                    No
## 1731     Travel agent, tour operator     Package Tour                   Yes
## 1732     Travel agent, tour operator      Independent                    No
## 1733                          Others      Independent                    No
## 1734     Travel agent, tour operator      Independent                    No
## 1735     Travel agent, tour operator      Independent                    No
## 1736     Travel agent, tour operator     Package Tour                   Yes
## 1737         Tanzania Mission Abroad      Independent                    No
## 1738                  Radio, TV, Web      Independent                    No
## 1739     Travel agent, tour operator     Package Tour                   Yes
## 1740 Newspaper, magazines, brochures      Independent                    No
## 1741              Friends, relatives      Independent                    No
## 1742              Friends, relatives      Independent                    No
## 1743     Travel agent, tour operator     Package Tour                   Yes
## 1744                  Radio, TV, Web      Independent                    No
## 1745     Travel agent, tour operator     Package Tour                   Yes
## 1746     Travel agent, tour operator     Package Tour                    No
## 1747     Travel agent, tour operator     Package Tour                    No
## 1748                          Others      Independent                    No
## 1749     Travel agent, tour operator     Package Tour                    No
## 1750              Friends, relatives      Independent                    No
## 1751 Newspaper, magazines, brochures      Independent                    No
## 1752              Friends, relatives      Independent                    No
## 1753     Travel agent, tour operator     Package Tour                   Yes
## 1754     Travel agent, tour operator     Package Tour                   Yes
## 1756     Travel agent, tour operator     Package Tour                   Yes
## 1757              Friends, relatives      Independent                    No
## 1758                  Radio, TV, Web      Independent                    No
## 1759              Friends, relatives      Independent                    No
## 1760     Travel agent, tour operator     Package Tour                   Yes
## 1761     Travel agent, tour operator      Independent                    No
## 1762     Travel agent, tour operator     Package Tour                   Yes
## 1763     Travel agent, tour operator      Independent                    No
## 1764                          Others      Independent                    No
## 1765              Friends, relatives      Independent                    No
## 1766              Friends, relatives      Independent                    No
## 1768              Friends, relatives      Independent                    No
## 1769              Friends, relatives     Package Tour                   Yes
## 1770     Travel agent, tour operator     Package Tour                   Yes
## 1771              Friends, relatives     Package Tour                   Yes
## 1772     Travel agent, tour operator     Package Tour                    No
## 1773     Travel agent, tour operator     Package Tour                    No
## 1774 Newspaper, magazines, brochures     Package Tour                   Yes
## 1775     Travel agent, tour operator     Package Tour                   Yes
## 1776              Friends, relatives      Independent                    No
## 1777 Newspaper, magazines, brochures      Independent                    No
## 1778              Friends, relatives      Independent                    No
## 1779     Travel agent, tour operator     Package Tour                    No
## 1780     Travel agent, tour operator     Package Tour                    No
## 1781              Friends, relatives      Independent                    No
## 1782     Travel agent, tour operator     Package Tour                    No
## 1783              Friends, relatives      Independent                    No
## 1784     Travel agent, tour operator     Package Tour                   Yes
## 1785              Friends, relatives      Independent                    No
## 1786                  Radio, TV, Web     Package Tour                    No
## 1787                  Radio, TV, Web     Package Tour                   Yes
## 1788     Travel agent, tour operator     Package Tour                   Yes
## 1789     Travel agent, tour operator     Package Tour                   Yes
## 1790              Inflight magazines      Independent                    No
## 1791     Travel agent, tour operator      Independent                   Yes
## 1792              Friends, relatives     Package Tour                   Yes
## 1793     Travel agent, tour operator     Package Tour                   Yes
## 1794                      Trade fair      Independent                    No
## 1795 Newspaper, magazines, brochures      Independent                    No
## 1796              Friends, relatives     Package Tour                   Yes
## 1797     Travel agent, tour operator     Package Tour                    No
## 1798     Travel agent, tour operator     Package Tour                    No
## 1799     Travel agent, tour operator     Package Tour                   Yes
## 1801     Travel agent, tour operator     Package Tour                   Yes
## 1802                  Radio, TV, Web      Independent                    No
## 1803                  Radio, TV, Web      Independent                    No
## 1804     Travel agent, tour operator     Package Tour                   Yes
## 1805                  Radio, TV, Web     Package Tour                   Yes
## 1806                          Others      Independent                    No
## 1808                  Radio, TV, Web     Package Tour                    No
## 1809     Travel agent, tour operator     Package Tour                   Yes
## 1810     Travel agent, tour operator     Package Tour                    No
## 1811              Friends, relatives     Package Tour                   Yes
## 1812              Friends, relatives     Package Tour                    No
## 1813     Travel agent, tour operator     Package Tour                   Yes
## 1814              Friends, relatives     Package Tour                   Yes
## 1815              Friends, relatives      Independent                    No
## 1816              Friends, relatives      Independent                    No
## 1817                  Radio, TV, Web      Independent                    No
## 1818              Friends, relatives      Independent                    No
## 1819     Travel agent, tour operator     Package Tour                   Yes
## 1820     Travel agent, tour operator     Package Tour                   Yes
## 1821              Friends, relatives      Independent                    No
## 1822     Travel agent, tour operator     Package Tour                    No
## 1823              Inflight magazines      Independent                    No
## 1824              Friends, relatives     Package Tour                    No
## 1825 Newspaper, magazines, brochures      Independent                    No
## 1826              Friends, relatives      Independent                    No
## 1827                          Others      Independent                    No
## 1828 Newspaper, magazines, brochures     Package Tour                    No
## 1830 Newspaper, magazines, brochures     Package Tour                   Yes
## 1831              Friends, relatives     Package Tour                    No
## 1832              Friends, relatives      Independent                    No
## 1833     Travel agent, tour operator     Package Tour                    No
## 1834                          Others      Independent                    No
## 1835     Travel agent, tour operator     Package Tour                   Yes
## 1836     Travel agent, tour operator      Independent                    No
## 1837                  Radio, TV, Web     Package Tour                   Yes
## 1838              Friends, relatives     Package Tour                   Yes
## 1839                  Radio, TV, Web     Package Tour                   Yes
## 1840              Friends, relatives      Independent                    No
## 1841     Travel agent, tour operator     Package Tour                    No
## 1842     Travel agent, tour operator     Package Tour                   Yes
## 1843              Friends, relatives      Independent                    No
## 1844     Travel agent, tour operator      Independent                    No
## 1845              Friends, relatives      Independent                    No
## 1846              Friends, relatives     Package Tour                   Yes
## 1847              Friends, relatives      Independent                    No
## 1848              Friends, relatives      Independent                    No
## 1849     Travel agent, tour operator     Package Tour                   Yes
## 1850              Friends, relatives      Independent                    No
## 1851                  Radio, TV, Web     Package Tour                    No
## 1852              Friends, relatives      Independent                    No
## 1853     Travel agent, tour operator     Package Tour                    No
## 1854     Travel agent, tour operator     Package Tour                   Yes
## 1855     Travel agent, tour operator     Package Tour                   Yes
## 1856     Travel agent, tour operator     Package Tour                   Yes
## 1857                  Radio, TV, Web     Package Tour                    No
## 1858              Friends, relatives      Independent                    No
## 1859              Friends, relatives      Independent                    No
## 1860     Travel agent, tour operator     Package Tour                   Yes
## 1861     Travel agent, tour operator     Package Tour                   Yes
## 1862              Friends, relatives      Independent                    No
## 1863              Friends, relatives      Independent                    No
## 1864     Travel agent, tour operator     Package Tour                    No
## 1865              Friends, relatives     Package Tour                   Yes
## 1866                          Others     Package Tour                   Yes
## 1867     Travel agent, tour operator      Independent                    No
## 1868              Friends, relatives      Independent                    No
## 1870     Travel agent, tour operator      Independent                    No
## 1871              Friends, relatives      Independent                    No
## 1872              Friends, relatives      Independent                    No
## 1873              Friends, relatives     Package Tour                   Yes
## 1874 Newspaper, magazines, brochures      Independent                    No
## 1875              Friends, relatives      Independent                    No
## 1876                  Radio, TV, Web      Independent                    No
## 1877     Travel agent, tour operator     Package Tour                   Yes
## 1878     Travel agent, tour operator     Package Tour                   Yes
## 1879                  Radio, TV, Web      Independent                    No
## 1880              Friends, relatives     Package Tour                   Yes
## 1881                          Others      Independent                    No
## 1882     Travel agent, tour operator     Package Tour                   Yes
## 1883     Travel agent, tour operator     Package Tour                    No
## 1884     Travel agent, tour operator     Package Tour                   Yes
## 1885     Travel agent, tour operator     Package Tour                   Yes
## 1886              Friends, relatives      Independent                    No
## 1887              Inflight magazines      Independent                    No
## 1888     Travel agent, tour operator      Independent                    No
## 1889     Travel agent, tour operator     Package Tour                   Yes
## 1890     Travel agent, tour operator     Package Tour                   Yes
## 1891                          Others      Independent                    No
## 1892              Friends, relatives      Independent                    No
## 1893                          Others     Package Tour                    No
## 1894              Friends, relatives      Independent                    No
## 1895     Travel agent, tour operator      Independent                    No
## 1896              Friends, relatives      Independent                    No
## 1897     Travel agent, tour operator      Independent                    No
## 1898              Friends, relatives      Independent                    No
## 1899              Friends, relatives      Independent                    No
## 1900                  Radio, TV, Web      Independent                    No
## 1901     Travel agent, tour operator     Package Tour                   Yes
## 1902              Friends, relatives     Package Tour                    No
## 1903                          Others      Independent                    No
## 1904     Travel agent, tour operator      Independent                    No
## 1905              Friends, relatives      Independent                    No
## 1906                          Others      Independent                    No
## 1907                          Others      Independent                    No
## 1908                  Radio, TV, Web     Package Tour                    No
## 1909         Tanzania Mission Abroad      Independent                    No
## 1912              Friends, relatives      Independent                    No
## 1913              Friends, relatives     Package Tour                   Yes
## 1914              Friends, relatives      Independent                    No
## 1915              Friends, relatives     Package Tour                    No
## 1916              Friends, relatives      Independent                    No
## 1917     Travel agent, tour operator     Package Tour                    No
## 1918     Travel agent, tour operator     Package Tour                   Yes
## 1919     Travel agent, tour operator     Package Tour                    No
## 1920     Travel agent, tour operator     Package Tour                    No
## 1921     Travel agent, tour operator      Independent                    No
## 1922                  Radio, TV, Web     Package Tour                    No
## 1923     Travel agent, tour operator      Independent                    No
## 1924 Newspaper, magazines, brochures     Package Tour                    No
## 1925     Travel agent, tour operator     Package Tour                   Yes
## 1926              Friends, relatives      Independent                    No
## 1927     Travel agent, tour operator     Package Tour                   Yes
## 1928     Travel agent, tour operator     Package Tour                   Yes
## 1929              Friends, relatives      Independent                    No
## 1931     Travel agent, tour operator     Package Tour                   Yes
## 1932     Travel agent, tour operator     Package Tour                    No
## 1933              Friends, relatives      Independent                    No
## 1934     Travel agent, tour operator     Package Tour                   Yes
## 1935              Friends, relatives      Independent                    No
## 1936     Travel agent, tour operator     Package Tour                   Yes
## 1937                      Trade fair      Independent                    No
## 1938              Friends, relatives      Independent                    No
## 1939                  Radio, TV, Web      Independent                    No
## 1940     Travel agent, tour operator     Package Tour                   Yes
## 1941     Travel agent, tour operator     Package Tour                    No
## 1942     Travel agent, tour operator     Package Tour                   Yes
## 1943     Travel agent, tour operator     Package Tour                   Yes
## 1945     Travel agent, tour operator     Package Tour                   Yes
## 1946     Travel agent, tour operator     Package Tour                   Yes
## 1947              Friends, relatives     Package Tour                   Yes
## 1948     Travel agent, tour operator     Package Tour                   Yes
## 1949     Travel agent, tour operator     Package Tour                   Yes
## 1950                  Radio, TV, Web     Package Tour                    No
## 1951              Friends, relatives      Independent                    No
## 1952     Travel agent, tour operator     Package Tour                   Yes
## 1953              Friends, relatives      Independent                    No
## 1954              Friends, relatives     Package Tour                   Yes
## 1955     Travel agent, tour operator      Independent                    No
## 1956 Newspaper, magazines, brochures      Independent                    No
## 1957              Friends, relatives      Independent                    No
## 1958     Travel agent, tour operator     Package Tour                   Yes
## 1959              Friends, relatives      Independent                    No
## 1960                          Others      Independent                    No
## 1961              Friends, relatives      Independent                    No
## 1962              Friends, relatives      Independent                    No
## 1963     Travel agent, tour operator     Package Tour                   Yes
## 1964     Travel agent, tour operator     Package Tour                   Yes
## 1965              Friends, relatives     Package Tour                   Yes
## 1966     Travel agent, tour operator     Package Tour                    No
## 1967         Tanzania Mission Abroad      Independent                    No
## 1968     Travel agent, tour operator     Package Tour                    No
## 1969     Travel agent, tour operator     Package Tour                   Yes
## 1970              Friends, relatives      Independent                    No
## 1972                          Others      Independent                    No
## 1973              Friends, relatives      Independent                    No
## 1974     Travel agent, tour operator     Package Tour                   Yes
## 1975              Friends, relatives      Independent                    No
## 1976 Newspaper, magazines, brochures     Package Tour                   Yes
## 1977                          Others      Independent                    No
## 1978     Travel agent, tour operator     Package Tour                    No
## 1979         Tanzania Mission Abroad      Independent                    No
## 1980     Travel agent, tour operator     Package Tour                   Yes
## 1981              Friends, relatives      Independent                    No
## 1982     Travel agent, tour operator     Package Tour                   Yes
## 1983     Travel agent, tour operator     Package Tour                    No
## 1984                          Others      Independent                    No
## 1985     Travel agent, tour operator     Package Tour                   Yes
## 1986     Travel agent, tour operator      Independent                    No
## 1987              Friends, relatives      Independent                    No
## 1988     Travel agent, tour operator     Package Tour                   Yes
## 1990              Friends, relatives      Independent                    No
## 1992              Friends, relatives      Independent                    No
## 1993              Friends, relatives      Independent                    No
## 1994     Travel agent, tour operator     Package Tour                    No
## 1995     Travel agent, tour operator     Package Tour                   Yes
## 1996     Travel agent, tour operator      Independent                    No
## 1998     Travel agent, tour operator     Package Tour                   Yes
## 1999 Newspaper, magazines, brochures      Independent                    No
## 2000              Friends, relatives      Independent                    No
## 2001     Travel agent, tour operator     Package Tour                   Yes
## 2002              Friends, relatives      Independent                    No
## 2003 Newspaper, magazines, brochures      Independent                    No
## 2004 Newspaper, magazines, brochures     Package Tour                   Yes
## 2005     Travel agent, tour operator     Package Tour                   Yes
## 2006              Friends, relatives     Package Tour                   Yes
## 2007                          Others      Independent                    No
## 2008              Friends, relatives     Package Tour                   Yes
## 2009                  Radio, TV, Web     Package Tour                   Yes
## 2010                  Radio, TV, Web      Independent                    No
## 2011     Travel agent, tour operator     Package Tour                    No
## 2014     Travel agent, tour operator     Package Tour                   Yes
## 2015 Newspaper, magazines, brochures     Package Tour                   Yes
## 2016     Travel agent, tour operator     Package Tour                   Yes
## 2018              Friends, relatives     Package Tour                   Yes
## 2019                  Radio, TV, Web      Independent                    No
## 2020              Friends, relatives      Independent                    No
## 2021     Travel agent, tour operator     Package Tour                    No
## 2022              Friends, relatives     Package Tour                   Yes
## 2023     Travel agent, tour operator      Independent                    No
## 2024     Travel agent, tour operator      Independent                    No
## 2025     Travel agent, tour operator     Package Tour                    No
## 2026              Friends, relatives      Independent                    No
## 2027     Travel agent, tour operator      Independent                    No
## 2028     Travel agent, tour operator      Independent                    No
## 2029                          Others      Independent                    No
## 2030     Travel agent, tour operator     Package Tour                    No
## 2031     Travel agent, tour operator     Package Tour                   Yes
## 2032 Newspaper, magazines, brochures      Independent                    No
## 2033              Friends, relatives     Package Tour                   Yes
## 2034                          Others      Independent                    No
## 2036 Newspaper, magazines, brochures      Independent                    No
## 2037              Friends, relatives      Independent                    No
## 2038     Travel agent, tour operator     Package Tour                   Yes
## 2039                          Others     Package Tour                    No
## 2040                          Others      Independent                    No
## 2041     Travel agent, tour operator      Independent                    No
## 2042              Friends, relatives      Independent                    No
## 2043              Friends, relatives      Independent                    No
## 2044              Friends, relatives      Independent                    No
## 2045              Friends, relatives      Independent                    No
## 2046              Friends, relatives     Package Tour                    No
## 2048     Travel agent, tour operator      Independent                    No
## 2049              Friends, relatives      Independent                    No
## 2050     Travel agent, tour operator     Package Tour                   Yes
## 2052     Travel agent, tour operator      Independent                    No
## 2053     Travel agent, tour operator      Independent                    No
## 2054     Travel agent, tour operator      Independent                    No
## 2055              Friends, relatives      Independent                    No
## 2057     Travel agent, tour operator     Package Tour                    No
## 2058 Newspaper, magazines, brochures      Independent                    No
## 2059     Travel agent, tour operator     Package Tour                   Yes
## 2060     Travel agent, tour operator     Package Tour                   Yes
## 2061     Travel agent, tour operator     Package Tour                    No
## 2062     Travel agent, tour operator     Package Tour                   Yes
## 2063                          Others      Independent                    No
## 2064     Travel agent, tour operator     Package Tour                    No
## 2065                          Others     Package Tour                    No
## 2066                  Radio, TV, Web      Independent                    No
## 2067                          Others      Independent                    No
## 2069              Friends, relatives     Package Tour                   Yes
## 2070     Travel agent, tour operator     Package Tour                   Yes
## 2071     Travel agent, tour operator     Package Tour                    No
## 2072 Newspaper, magazines, brochures     Package Tour                    No
## 2074     Travel agent, tour operator     Package Tour                    No
## 2075              Friends, relatives      Independent                    No
## 2076              Friends, relatives      Independent                    No
## 2077              Friends, relatives     Package Tour                    No
## 2078     Travel agent, tour operator      Independent                    No
## 2079     Travel agent, tour operator     Package Tour                   Yes
## 2080 Newspaper, magazines, brochures      Independent                    No
## 2081     Travel agent, tour operator     Package Tour                   Yes
## 2082                          Others      Independent                    No
## 2083         Tanzania Mission Abroad     Package Tour                    No
## 2084                          Others      Independent                    No
## 2085              Friends, relatives     Package Tour                   Yes
## 2086     Travel agent, tour operator     Package Tour                   Yes
## 2087              Friends, relatives      Independent                    No
## 2088     Travel agent, tour operator     Package Tour                    No
## 2089     Travel agent, tour operator     Package Tour                    No
## 2090                      Trade fair      Independent                    No
## 2091     Travel agent, tour operator      Independent                    No
## 2092              Friends, relatives      Independent                    No
## 2093     Travel agent, tour operator      Independent                    No
## 2094              Friends, relatives     Package Tour                    No
## 2095     Travel agent, tour operator     Package Tour                   Yes
## 2096     Travel agent, tour operator      Independent                    No
## 2097              Friends, relatives     Package Tour                   Yes
## 2098                          Others      Independent                    No
## 2099                  Radio, TV, Web      Independent                    No
## 2100 Newspaper, magazines, brochures      Independent                    No
## 2101              Friends, relatives      Independent                    No
## 2102     Travel agent, tour operator     Package Tour                    No
## 2103     Travel agent, tour operator     Package Tour                   Yes
## 2104              Friends, relatives      Independent                    No
## 2105     Travel agent, tour operator     Package Tour                   Yes
## 2107     Travel agent, tour operator     Package Tour                   Yes
## 2108     Travel agent, tour operator      Independent                    No
## 2110     Travel agent, tour operator     Package Tour                   Yes
## 2111              Friends, relatives     Package Tour                    No
## 2112     Travel agent, tour operator     Package Tour                    No
## 2113     Travel agent, tour operator     Package Tour                   Yes
## 2114              Friends, relatives      Independent                    No
## 2116                  Radio, TV, Web      Independent                    No
## 2117              Friends, relatives      Independent                    No
## 2118                          Others      Independent                    No
## 2119     Travel agent, tour operator      Independent                    No
## 2120     Travel agent, tour operator     Package Tour                   Yes
## 2121              Friends, relatives      Independent                    No
## 2122     Travel agent, tour operator      Independent                    No
## 2123     Travel agent, tour operator      Independent                    No
## 2124              Friends, relatives      Independent                    No
## 2125     Travel agent, tour operator     Package Tour                   Yes
## 2126     Travel agent, tour operator     Package Tour                   Yes
## 2127     Travel agent, tour operator     Package Tour                    No
## 2128              Friends, relatives      Independent                    No
## 2129 Newspaper, magazines, brochures      Independent                    No
## 2130                  Radio, TV, Web     Package Tour                   Yes
## 2131              Friends, relatives      Independent                    No
## 2132     Travel agent, tour operator      Independent                    No
## 2133     Travel agent, tour operator     Package Tour                   Yes
## 2134     Travel agent, tour operator     Package Tour                   Yes
## 2135     Travel agent, tour operator     Package Tour                   Yes
## 2136                  Radio, TV, Web      Independent                    No
## 2137                  Radio, TV, Web      Independent                    No
## 2138     Travel agent, tour operator     Package Tour                   Yes
## 2139     Travel agent, tour operator     Package Tour                   Yes
## 2140     Travel agent, tour operator     Package Tour                   Yes
## 2141                          Others      Independent                    No
## 2143     Travel agent, tour operator     Package Tour                    No
## 2144     Travel agent, tour operator     Package Tour                   Yes
## 2145              Friends, relatives      Independent                    No
## 2146              Friends, relatives      Independent                    No
## 2147              Friends, relatives      Independent                    No
## 2148              Friends, relatives      Independent                    No
## 2149     Travel agent, tour operator     Package Tour                   Yes
## 2150              Friends, relatives      Independent                    No
## 2151 Newspaper, magazines, brochures      Independent                    No
## 2152              Friends, relatives      Independent                    No
## 2153     Travel agent, tour operator     Package Tour                   Yes
## 2154 Newspaper, magazines, brochures     Package Tour                   Yes
## 2155              Friends, relatives      Independent                    No
## 2156                  Radio, TV, Web      Independent                    No
## 2157     Travel agent, tour operator     Package Tour                   Yes
## 2158 Newspaper, magazines, brochures      Independent                    No
## 2159              Friends, relatives      Independent                    No
## 2160         Tanzania Mission Abroad      Independent                    No
## 2161              Friends, relatives     Package Tour                   Yes
## 2162              Friends, relatives      Independent                    No
## 2163              Friends, relatives     Package Tour                   Yes
## 2164              Friends, relatives     Package Tour                    No
## 2165              Friends, relatives      Independent                    No
## 2166              Friends, relatives     Package Tour                    No
## 2167     Travel agent, tour operator     Package Tour                   Yes
## 2168 Newspaper, magazines, brochures     Package Tour                   Yes
## 2169              Friends, relatives      Independent                    No
## 2170                  Radio, TV, Web      Independent                    No
## 2171     Travel agent, tour operator     Package Tour                   Yes
## 2172 Newspaper, magazines, brochures      Independent                    No
## 2173                  Radio, TV, Web     Package Tour                    No
## 2174     Travel agent, tour operator     Package Tour                    No
## 2175              Friends, relatives     Package Tour                    No
## 2176              Friends, relatives      Independent                    No
## 2177     Travel agent, tour operator     Package Tour                   Yes
## 2178 Newspaper, magazines, brochures     Package Tour                    No
## 2179              Friends, relatives      Independent                    No
## 2180                          Others      Independent                    No
## 2181                          Others      Independent                    No
## 2182                          Others     Package Tour                   Yes
## 2183 Newspaper, magazines, brochures      Independent                    No
## 2184                  Radio, TV, Web      Independent                    No
## 2185     Travel agent, tour operator     Package Tour                   Yes
## 2186              Friends, relatives      Independent                    No
## 2187              Friends, relatives      Independent                    No
## 2188                          Others      Independent                    No
## 2189     Travel agent, tour operator     Package Tour                    No
## 2191              Friends, relatives      Independent                    No
## 2192     Travel agent, tour operator     Package Tour                    No
## 2193     Travel agent, tour operator      Independent                    No
## 2194     Travel agent, tour operator     Package Tour                   Yes
## 2195              Friends, relatives      Independent                    No
## 2196              Friends, relatives      Independent                    No
## 2197              Friends, relatives      Independent                    No
## 2198                  Radio, TV, Web      Independent                    No
## 2199 Newspaper, magazines, brochures     Package Tour                   Yes
## 2200     Travel agent, tour operator     Package Tour                   Yes
## 2201              Friends, relatives      Independent                    No
## 2202     Travel agent, tour operator     Package Tour                    No
## 2203     Travel agent, tour operator     Package Tour                   Yes
## 2204              Friends, relatives     Package Tour                    No
## 2205     Travel agent, tour operator     Package Tour                    No
## 2206     Travel agent, tour operator     Package Tour                   Yes
## 2207              Friends, relatives      Independent                    No
## 2208     Travel agent, tour operator     Package Tour                    No
## 2209     Travel agent, tour operator     Package Tour                   Yes
## 2210     Travel agent, tour operator     Package Tour                   Yes
## 2211              Friends, relatives     Package Tour                   Yes
## 2212              Friends, relatives      Independent                    No
## 2213              Friends, relatives      Independent                    No
## 2214              Friends, relatives      Independent                    No
## 2215     Travel agent, tour operator     Package Tour                   Yes
## 2216              Friends, relatives      Independent                    No
## 2217              Friends, relatives      Independent                    No
## 2218     Travel agent, tour operator     Package Tour                   Yes
## 2219              Friends, relatives      Independent                    No
## 2220     Travel agent, tour operator      Independent                    No
## 2222              Friends, relatives      Independent                    No
## 2223              Friends, relatives      Independent                    No
## 2224              Friends, relatives      Independent                    No
## 2225              Friends, relatives      Independent                    No
## 2227     Travel agent, tour operator     Package Tour                    No
## 2229     Travel agent, tour operator     Package Tour                   Yes
## 2230     Travel agent, tour operator     Package Tour                   Yes
## 2231              Friends, relatives     Package Tour                    No
## 2232                          Others      Independent                    No
## 2233     Travel agent, tour operator     Package Tour                    No
## 2234              Friends, relatives     Package Tour                    No
## 2235     Travel agent, tour operator     Package Tour                   Yes
## 2236     Travel agent, tour operator     Package Tour                    No
## 2237                          Others     Package Tour                    No
## 2238              Friends, relatives     Package Tour                    No
## 2239              Friends, relatives      Independent                    No
## 2241     Travel agent, tour operator      Independent                    No
## 2242     Travel agent, tour operator     Package Tour                    No
## 2243              Friends, relatives      Independent                    No
## 2244     Travel agent, tour operator      Independent                    No
## 2245     Travel agent, tour operator     Package Tour                   Yes
## 2246                  Radio, TV, Web      Independent                    No
## 2247 Newspaper, magazines, brochures      Independent                    No
## 2248              Friends, relatives      Independent                    No
## 2249              Friends, relatives      Independent                    No
## 2250     Travel agent, tour operator     Package Tour                   Yes
## 2251                  Radio, TV, Web      Independent                    No
## 2252     Travel agent, tour operator      Independent                    No
## 2254              Friends, relatives      Independent                    No
## 2255     Travel agent, tour operator     Package Tour                   Yes
## 2256                          Others      Independent                    No
## 2257              Friends, relatives      Independent                    No
## 2258     Travel agent, tour operator     Package Tour                   Yes
## 2260              Friends, relatives      Independent                    No
## 2261              Friends, relatives      Independent                    No
## 2263                          Others      Independent                    No
## 2264     Travel agent, tour operator     Package Tour                    No
## 2265              Friends, relatives     Package Tour                   Yes
## 2266              Friends, relatives      Independent                    No
## 2267         Tanzania Mission Abroad      Independent                    No
## 2268     Travel agent, tour operator     Package Tour                   Yes
## 2269              Friends, relatives      Independent                    No
## 2270              Friends, relatives      Independent                    No
## 2271 Newspaper, magazines, brochures     Package Tour                   Yes
## 2272              Friends, relatives      Independent                    No
## 2273     Travel agent, tour operator     Package Tour                   Yes
## 2275         Tanzania Mission Abroad      Independent                    No
## 2276     Travel agent, tour operator      Independent                    No
## 2277     Travel agent, tour operator      Independent                    No
## 2278     Travel agent, tour operator     Package Tour                    No
## 2279              Friends, relatives      Independent                    No
## 2280              Friends, relatives      Independent                    No
## 2281              Friends, relatives      Independent                    No
## 2282              Friends, relatives     Package Tour                    No
## 2283 Newspaper, magazines, brochures      Independent                    No
## 2284              Friends, relatives      Independent                    No
## 2285                          Others      Independent                    No
## 2286              Inflight magazines      Independent                    No
## 2287     Travel agent, tour operator     Package Tour                   Yes
## 2288     Travel agent, tour operator      Independent                   Yes
## 2289     Travel agent, tour operator     Package Tour                    No
## 2290     Travel agent, tour operator     Package Tour                   Yes
## 2291              Friends, relatives      Independent                    No
## 2292     Travel agent, tour operator     Package Tour                   Yes
## 2293              Friends, relatives     Package Tour                   Yes
## 2294              Friends, relatives     Package Tour                   Yes
## 2295                          Others      Independent                    No
## 2296              Friends, relatives      Independent                    No
## 2297     Travel agent, tour operator     Package Tour                   Yes
## 2298              Friends, relatives      Independent                    No
## 2299     Travel agent, tour operator     Package Tour                   Yes
## 2300              Friends, relatives      Independent                    No
## 2301     Travel agent, tour operator     Package Tour                   Yes
## 2302              Friends, relatives      Independent                    No
## 2303                          Others      Independent                    No
## 2304              Friends, relatives      Independent                    No
## 2305 Newspaper, magazines, brochures      Independent                    No
## 2306     Travel agent, tour operator     Package Tour                   Yes
## 2307              Friends, relatives     Package Tour                   Yes
## 2308     Travel agent, tour operator      Independent                    No
## 2309                          Others      Independent                    No
## 2310     Travel agent, tour operator      Independent                    No
## 2311     Travel agent, tour operator     Package Tour                   Yes
## 2312     Travel agent, tour operator     Package Tour                   Yes
## 2313     Travel agent, tour operator     Package Tour                   Yes
## 2315     Travel agent, tour operator     Package Tour                    No
## 2316     Travel agent, tour operator     Package Tour                   Yes
## 2317     Travel agent, tour operator      Independent                    No
## 2318     Travel agent, tour operator      Independent                    No
## 2319     Travel agent, tour operator      Independent                    No
## 2320     Travel agent, tour operator     Package Tour                   Yes
## 2321     Travel agent, tour operator      Independent                    No
## 2322     Travel agent, tour operator     Package Tour                    No
## 2323     Travel agent, tour operator     Package Tour                   Yes
## 2324              Friends, relatives     Package Tour                   Yes
## 2325     Travel agent, tour operator     Package Tour                   Yes
## 2326                  Radio, TV, Web      Independent                    No
## 2327              Friends, relatives      Independent                    No
## 2328              Friends, relatives      Independent                    No
## 2329     Travel agent, tour operator     Package Tour                    No
## 2330 Newspaper, magazines, brochures      Independent                    No
## 2331     Travel agent, tour operator     Package Tour                    No
## 2332                  Radio, TV, Web      Independent                    No
## 2333     Travel agent, tour operator      Independent                    No
## 2334              Friends, relatives      Independent                    No
## 2335     Travel agent, tour operator     Package Tour                   Yes
## 2336     Travel agent, tour operator     Package Tour                   Yes
## 2337     Travel agent, tour operator     Package Tour                   Yes
## 2338 Newspaper, magazines, brochures      Independent                    No
## 2339                  Radio, TV, Web      Independent                    No
## 2341              Friends, relatives      Independent                    No
## 2342     Travel agent, tour operator     Package Tour                   Yes
## 2343     Travel agent, tour operator     Package Tour                   Yes
## 2344              Friends, relatives     Package Tour                   Yes
## 2345              Friends, relatives      Independent                    No
## 2347     Travel agent, tour operator      Independent                    No
## 2348     Travel agent, tour operator     Package Tour                   Yes
## 2349              Friends, relatives      Independent                    No
## 2350     Travel agent, tour operator     Package Tour                   Yes
## 2351              Friends, relatives      Independent                    No
## 2352                  Radio, TV, Web      Independent                    No
## 2353              Friends, relatives      Independent                    No
## 2354                  Radio, TV, Web     Package Tour                   Yes
## 2355              Friends, relatives      Independent                    No
## 2356     Travel agent, tour operator      Independent                    No
## 2357                  Radio, TV, Web     Package Tour                   Yes
## 2358              Friends, relatives      Independent                    No
## 2359              Friends, relatives      Independent                    No
## 2360              Friends, relatives      Independent                    No
## 2361     Travel agent, tour operator     Package Tour                   Yes
## 2362 Newspaper, magazines, brochures     Package Tour                    No
## 2363              Friends, relatives      Independent                    No
## 2364     Travel agent, tour operator     Package Tour                   Yes
## 2365                          Others      Independent                    No
## 2366     Travel agent, tour operator     Package Tour                   Yes
## 2367              Friends, relatives      Independent                    No
## 2368 Newspaper, magazines, brochures      Independent                    No
## 2369     Travel agent, tour operator     Package Tour                   Yes
## 2370              Friends, relatives      Independent                    No
## 2371     Travel agent, tour operator     Package Tour                   Yes
## 2372              Friends, relatives     Package Tour                   Yes
## 2373 Newspaper, magazines, brochures      Independent                    No
## 2375              Friends, relatives      Independent                    No
## 2376     Travel agent, tour operator     Package Tour                   Yes
## 2377              Friends, relatives      Independent                    No
## 2378              Friends, relatives      Independent                    No
## 2379     Travel agent, tour operator     Package Tour                    No
## 2380     Travel agent, tour operator      Independent                    No
## 2381              Friends, relatives      Independent                    No
## 2383              Friends, relatives     Package Tour                   Yes
## 2384                          Others      Independent                    No
## 2385 Newspaper, magazines, brochures      Independent                    No
## 2386              Friends, relatives      Independent                    No
## 2387              Friends, relatives      Independent                    No
## 2388                          Others     Package Tour                   Yes
## 2389 Newspaper, magazines, brochures      Independent                    No
## 2390              Friends, relatives      Independent                    No
## 2391              Friends, relatives      Independent                    No
## 2392     Travel agent, tour operator     Package Tour                   Yes
## 2394                  Radio, TV, Web     Package Tour                   Yes
## 2395              Friends, relatives      Independent                    No
## 2396     Travel agent, tour operator     Package Tour                    No
## 2398              Friends, relatives     Package Tour                   Yes
## 2400              Friends, relatives      Independent                    No
## 2401              Friends, relatives      Independent                    No
## 2402              Friends, relatives      Independent                    No
## 2403 Newspaper, magazines, brochures     Package Tour                   Yes
## 2404     Travel agent, tour operator     Package Tour                   Yes
## 2405     Travel agent, tour operator     Package Tour                   Yes
## 2406     Travel agent, tour operator     Package Tour                   Yes
## 2407              Friends, relatives      Independent                    No
## 2408              Friends, relatives      Independent                    No
## 2409     Travel agent, tour operator     Package Tour                   Yes
## 2410     Travel agent, tour operator     Package Tour                   Yes
## 2411     Travel agent, tour operator     Package Tour                   Yes
## 2412                          Others      Independent                    No
## 2413     Travel agent, tour operator     Package Tour                    No
## 2414              Friends, relatives     Package Tour                   Yes
## 2415     Travel agent, tour operator     Package Tour                    No
## 2416     Travel agent, tour operator     Package Tour                    No
## 2417              Friends, relatives     Package Tour                   Yes
## 2418     Travel agent, tour operator     Package Tour                    No
## 2419     Travel agent, tour operator     Package Tour                   Yes
## 2420                      Trade fair      Independent                    No
## 2421                  Radio, TV, Web     Package Tour                    No
## 2422              Friends, relatives      Independent                    No
## 2423     Travel agent, tour operator     Package Tour                   Yes
## 2424              Friends, relatives     Package Tour                   Yes
## 2425     Travel agent, tour operator     Package Tour                   Yes
## 2427                  Radio, TV, Web      Independent                    No
## 2428     Travel agent, tour operator     Package Tour                   Yes
## 2429 Newspaper, magazines, brochures      Independent                    No
## 2430              Friends, relatives      Independent                    No
## 2431              Friends, relatives      Independent                    No
## 2432                          Others     Package Tour                   Yes
## 2433     Travel agent, tour operator      Independent                   Yes
## 2434     Travel agent, tour operator     Package Tour                   Yes
## 2435              Friends, relatives      Independent                    No
## 2436              Friends, relatives      Independent                    No
## 2437 Newspaper, magazines, brochures     Package Tour                   Yes
## 2438              Friends, relatives      Independent                    No
## 2439              Friends, relatives      Independent                    No
## 2440     Travel agent, tour operator     Package Tour                    No
## 2441              Friends, relatives      Independent                    No
## 2442                          Others      Independent                    No
## 2443              Friends, relatives     Package Tour                    No
## 2444              Friends, relatives      Independent                    No
## 2445                      Trade fair      Independent                    No
## 2446              Friends, relatives     Package Tour                    No
## 2447              Inflight magazines     Package Tour                    No
## 2448     Travel agent, tour operator      Independent                    No
## 2449     Travel agent, tour operator      Independent                    No
## 2450     Travel agent, tour operator     Package Tour                   Yes
## 2451     Travel agent, tour operator     Package Tour                    No
## 2453     Travel agent, tour operator     Package Tour                   Yes
## 2454 Newspaper, magazines, brochures      Independent                    No
## 2455              Friends, relatives      Independent                    No
## 2456     Travel agent, tour operator     Package Tour                   Yes
## 2457     Travel agent, tour operator      Independent                    No
## 2458              Friends, relatives     Package Tour                   Yes
## 2459                          Others      Independent                    No
## 2460              Friends, relatives      Independent                    No
## 2461     Travel agent, tour operator      Independent                    No
## 2463     Travel agent, tour operator     Package Tour                   Yes
## 2464                          Others      Independent                    No
## 2465     Travel agent, tour operator     Package Tour                   Yes
## 2466              Friends, relatives      Independent                    No
## 2467                          Others     Package Tour                    No
## 2468     Travel agent, tour operator     Package Tour                   Yes
## 2470              Friends, relatives     Package Tour                    No
## 2471     Travel agent, tour operator     Package Tour                   Yes
## 2473 Newspaper, magazines, brochures      Independent                    No
## 2474     Travel agent, tour operator     Package Tour                    No
## 2475     Travel agent, tour operator     Package Tour                    No
## 2476              Friends, relatives     Package Tour                   Yes
## 2477              Friends, relatives      Independent                    No
## 2478              Friends, relatives      Independent                    No
## 2479     Travel agent, tour operator     Package Tour                   Yes
## 2480                  Radio, TV, Web     Package Tour                   Yes
## 2483     Travel agent, tour operator     Package Tour                    No
## 2484     Travel agent, tour operator     Package Tour                    No
## 2485 Newspaper, magazines, brochures     Package Tour                    No
## 2486              Friends, relatives      Independent                    No
## 2487              Friends, relatives      Independent                    No
## 2488     Travel agent, tour operator     Package Tour                   Yes
## 2489              Friends, relatives      Independent                    No
## 2490     Travel agent, tour operator      Independent                    No
## 2491                          Others      Independent                    No
## 2492     Travel agent, tour operator     Package Tour                   Yes
## 2493     Travel agent, tour operator     Package Tour                   Yes
## 2495              Friends, relatives     Package Tour                   Yes
## 2496                          Others      Independent                    No
## 2497                  Radio, TV, Web     Package Tour                   Yes
## 2498     Travel agent, tour operator     Package Tour                   Yes
## 2499     Travel agent, tour operator     Package Tour                    No
## 2500              Friends, relatives      Independent                    No
## 2501     Travel agent, tour operator     Package Tour                   Yes
## 2502              Friends, relatives     Package Tour                   Yes
## 2503              Friends, relatives      Independent                    No
## 2504              Friends, relatives      Independent                    No
## 2505     Travel agent, tour operator     Package Tour                    No
## 2506     Travel agent, tour operator     Package Tour                    No
## 2507     Travel agent, tour operator      Independent                    No
## 2508     Travel agent, tour operator     Package Tour                   Yes
## 2509              Friends, relatives      Independent                    No
## 2510                          Others      Independent                    No
## 2511     Travel agent, tour operator      Independent                    No
## 2512                          Others      Independent                    No
## 2513 Newspaper, magazines, brochures     Package Tour                   Yes
## 2514     Travel agent, tour operator     Package Tour                   Yes
## 2515     Travel agent, tour operator     Package Tour                   Yes
## 2518     Travel agent, tour operator     Package Tour                   Yes
## 2519     Travel agent, tour operator     Package Tour                    No
## 2520     Travel agent, tour operator     Package Tour                   Yes
## 2521     Travel agent, tour operator     Package Tour                    No
## 2522     Travel agent, tour operator     Package Tour                   Yes
## 2523                  Radio, TV, Web      Independent                    No
## 2524     Travel agent, tour operator     Package Tour                   Yes
## 2525     Travel agent, tour operator     Package Tour                   Yes
## 2526 Newspaper, magazines, brochures      Independent                    No
## 2527     Travel agent, tour operator     Package Tour                   Yes
## 2528     Travel agent, tour operator     Package Tour                   Yes
## 2529     Travel agent, tour operator     Package Tour                    No
## 2531                          Others      Independent                    No
## 2532     Travel agent, tour operator     Package Tour                   Yes
## 2534                          Others      Independent                    No
## 2535 Newspaper, magazines, brochures      Independent                    No
## 2536     Travel agent, tour operator     Package Tour                    No
## 2537                  Radio, TV, Web      Independent                    No
## 2538                  Radio, TV, Web      Independent                    No
## 2539 Newspaper, magazines, brochures      Independent                    No
## 2540              Friends, relatives      Independent                    No
## 2541     Travel agent, tour operator     Package Tour                    No
## 2542              Friends, relatives      Independent                    No
## 2543                  Radio, TV, Web      Independent                    No
## 2544              Friends, relatives      Independent                    No
## 2545     Travel agent, tour operator     Package Tour                    No
## 2546              Friends, relatives      Independent                    No
## 2547     Travel agent, tour operator     Package Tour                   Yes
## 2548              Friends, relatives     Package Tour                    No
## 2550                  Radio, TV, Web     Package Tour                   Yes
## 2551              Friends, relatives      Independent                    No
## 2552     Travel agent, tour operator     Package Tour                   Yes
## 2553              Friends, relatives      Independent                    No
## 2554                      Trade fair     Package Tour                   Yes
## 2555     Travel agent, tour operator      Independent                    No
## 2556              Friends, relatives      Independent                    No
## 2558 Newspaper, magazines, brochures      Independent                    No
## 2559              Friends, relatives      Independent                    No
## 2560                  Radio, TV, Web     Package Tour                   Yes
## 2561                  Radio, TV, Web      Independent                    No
## 2562     Travel agent, tour operator     Package Tour                   Yes
## 2563     Travel agent, tour operator     Package Tour                   Yes
## 2564     Travel agent, tour operator     Package Tour                    No
## 2565     Travel agent, tour operator     Package Tour                   Yes
## 2566         Tanzania Mission Abroad      Independent                    No
## 2567     Travel agent, tour operator     Package Tour                   Yes
## 2568                  Radio, TV, Web     Package Tour                   Yes
## 2569     Travel agent, tour operator     Package Tour                   Yes
## 2570              Friends, relatives      Independent                    No
## 2571     Travel agent, tour operator     Package Tour                   Yes
## 2572                      Trade fair      Independent                    No
## 2573     Travel agent, tour operator     Package Tour                   Yes
## 2574     Travel agent, tour operator     Package Tour                   Yes
## 2575     Travel agent, tour operator     Package Tour                   Yes
## 2576     Travel agent, tour operator     Package Tour                    No
## 2577                          Others     Package Tour                   Yes
## 2578     Travel agent, tour operator     Package Tour                    No
## 2579     Travel agent, tour operator     Package Tour                   Yes
## 2580     Travel agent, tour operator      Independent                    No
## 2581     Travel agent, tour operator     Package Tour                    No
## 2582              Friends, relatives     Package Tour                   Yes
## 2583              Friends, relatives     Package Tour                    No
## 2584              Friends, relatives      Independent                    No
## 2585     Travel agent, tour operator     Package Tour                   Yes
## 2586                          Others      Independent                    No
## 2587     Travel agent, tour operator     Package Tour                   Yes
## 2588     Travel agent, tour operator     Package Tour                   Yes
## 2589 Newspaper, magazines, brochures      Independent                    No
## 2590              Friends, relatives      Independent                    No
## 2591 Newspaper, magazines, brochures     Package Tour                   Yes
## 2592     Travel agent, tour operator     Package Tour                    No
## 2593 Newspaper, magazines, brochures      Independent                    No
## 2594              Friends, relatives      Independent                    No
## 2595              Friends, relatives      Independent                    No
## 2596     Travel agent, tour operator     Package Tour                   Yes
## 2598     Travel agent, tour operator     Package Tour                   Yes
## 2599              Friends, relatives     Package Tour                   Yes
## 2600     Travel agent, tour operator     Package Tour                   Yes
## 2601     Travel agent, tour operator     Package Tour                   Yes
## 2602     Travel agent, tour operator      Independent                    No
## 2603              Friends, relatives     Package Tour                   Yes
## 2604                          Others     Package Tour                   Yes
## 2605     Travel agent, tour operator      Independent                    No
## 2606     Travel agent, tour operator     Package Tour                    No
## 2607     Travel agent, tour operator      Independent                    No
## 2608     Travel agent, tour operator     Package Tour                   Yes
## 2609         Tanzania Mission Abroad      Independent                    No
## 2610                          Others      Independent                    No
## 2611                  Radio, TV, Web      Independent                    No
## 2612              Friends, relatives      Independent                    No
## 2613     Travel agent, tour operator     Package Tour                    No
## 2614     Travel agent, tour operator      Independent                    No
## 2615              Friends, relatives      Independent                    No
## 2616     Travel agent, tour operator      Independent                    No
## 2617     Travel agent, tour operator     Package Tour                   Yes
## 2618     Travel agent, tour operator     Package Tour                    No
## 2619              Friends, relatives      Independent                    No
## 2620              Friends, relatives      Independent                    No
## 2621              Friends, relatives      Independent                    No
## 2622                          Others      Independent                    No
## 2623     Travel agent, tour operator     Package Tour                   Yes
## 2624                  Radio, TV, Web     Package Tour                   Yes
## 2625     Travel agent, tour operator     Package Tour                    No
## 2626     Travel agent, tour operator     Package Tour                   Yes
## 2627              Friends, relatives     Package Tour                   Yes
## 2628              Friends, relatives      Independent                    No
## 2629     Travel agent, tour operator     Package Tour                   Yes
## 2630              Friends, relatives      Independent                    No
## 2631     Travel agent, tour operator     Package Tour                   Yes
## 2632     Travel agent, tour operator     Package Tour                   Yes
## 2633         Tanzania Mission Abroad      Independent                    No
## 2634                  Radio, TV, Web      Independent                    No
## 2635     Travel agent, tour operator      Independent                    No
## 2636     Travel agent, tour operator     Package Tour                   Yes
## 2637     Travel agent, tour operator     Package Tour                    No
## 2638              Friends, relatives      Independent                    No
## 2639     Travel agent, tour operator     Package Tour                   Yes
## 2640              Friends, relatives      Independent                    No
## 2641     Travel agent, tour operator     Package Tour                    No
## 2642     Travel agent, tour operator     Package Tour                   Yes
## 2643              Friends, relatives     Package Tour                    No
## 2644     Travel agent, tour operator      Independent                    No
## 2645              Friends, relatives      Independent                    No
## 2646     Travel agent, tour operator      Independent                    No
## 2648     Travel agent, tour operator     Package Tour                   Yes
## 2649              Friends, relatives      Independent                    No
## 2650              Friends, relatives      Independent                    No
## 2651              Friends, relatives      Independent                    No
## 2652     Travel agent, tour operator     Package Tour                    No
## 2653              Friends, relatives     Package Tour                   Yes
## 2654     Travel agent, tour operator     Package Tour                   Yes
## 2655 Newspaper, magazines, brochures     Package Tour                   Yes
## 2656     Travel agent, tour operator     Package Tour                   Yes
## 2657     Travel agent, tour operator     Package Tour                    No
## 2659              Friends, relatives      Independent                    No
## 2660              Friends, relatives      Independent                    No
## 2661              Friends, relatives      Independent                    No
## 2662              Friends, relatives      Independent                    No
## 2665     Travel agent, tour operator     Package Tour                   Yes
## 2666     Travel agent, tour operator     Package Tour                   Yes
## 2667     Travel agent, tour operator      Independent                    No
## 2669              Friends, relatives     Package Tour                   Yes
## 2670     Travel agent, tour operator     Package Tour                   Yes
## 2672                  Radio, TV, Web      Independent                    No
## 2673              Friends, relatives      Independent                    No
## 2674     Travel agent, tour operator     Package Tour                   Yes
## 2675                          Others      Independent                    No
## 2676     Travel agent, tour operator     Package Tour                    No
## 2677 Newspaper, magazines, brochures     Package Tour                   Yes
## 2678                          Others      Independent                    No
## 2679     Travel agent, tour operator     Package Tour                    No
## 2680     Travel agent, tour operator     Package Tour                    No
## 2681     Travel agent, tour operator     Package Tour                   Yes
## 2682     Travel agent, tour operator     Package Tour                   Yes
## 2684     Travel agent, tour operator     Package Tour                   Yes
## 2685     Travel agent, tour operator     Package Tour                    No
## 2686                  Radio, TV, Web     Package Tour                    No
## 2687     Travel agent, tour operator     Package Tour                   Yes
## 2688              Friends, relatives      Independent                    No
## 2689     Travel agent, tour operator     Package Tour                   Yes
## 2690     Travel agent, tour operator     Package Tour                   Yes
## 2691     Travel agent, tour operator     Package Tour                    No
## 2693              Friends, relatives      Independent                    No
## 2695                          Others      Independent                    No
## 2696     Travel agent, tour operator     Package Tour                    No
## 2697 Newspaper, magazines, brochures     Package Tour                    No
## 2698     Travel agent, tour operator     Package Tour                   Yes
## 2699              Friends, relatives      Independent                    No
## 2700     Travel agent, tour operator     Package Tour                   Yes
## 2701              Friends, relatives      Independent                    No
## 2702                  Radio, TV, Web      Independent                    No
## 2703              Friends, relatives     Package Tour                    No
## 2704     Travel agent, tour operator      Independent                    No
## 2705                          Others      Independent                    No
## 2706     Travel agent, tour operator     Package Tour                    No
## 2707              Friends, relatives      Independent                    No
## 2708              Friends, relatives      Independent                    No
## 2709     Travel agent, tour operator     Package Tour                   Yes
## 2710     Travel agent, tour operator     Package Tour                   Yes
## 2711     Travel agent, tour operator     Package Tour                   Yes
## 2713     Travel agent, tour operator     Package Tour                   Yes
## 2714              Friends, relatives      Independent                    No
## 2715              Friends, relatives      Independent                    No
## 2716 Newspaper, magazines, brochures      Independent                    No
## 2717              Friends, relatives      Independent                    No
## 2718     Travel agent, tour operator     Package Tour                   Yes
## 2720                  Radio, TV, Web      Independent                    No
## 2721     Travel agent, tour operator     Package Tour                   Yes
## 2722     Travel agent, tour operator     Package Tour                    No
## 2723     Travel agent, tour operator     Package Tour                   Yes
## 2724                  Radio, TV, Web     Package Tour                    No
## 2725     Travel agent, tour operator     Package Tour                   Yes
## 2726 Newspaper, magazines, brochures      Independent                    No
## 2727     Travel agent, tour operator     Package Tour                    No
## 2728     Travel agent, tour operator     Package Tour                   Yes
## 2729              Friends, relatives     Package Tour                   Yes
## 2730     Travel agent, tour operator     Package Tour                   Yes
## 2731                  Radio, TV, Web      Independent                    No
## 2732     Travel agent, tour operator     Package Tour                   Yes
## 2733                  Radio, TV, Web      Independent                    No
## 2734 Newspaper, magazines, brochures     Package Tour                    No
## 2735              Friends, relatives     Package Tour                   Yes
## 2737              Friends, relatives      Independent                    No
## 2738              Friends, relatives     Package Tour                   Yes
## 2739              Friends, relatives      Independent                    No
## 2740     Travel agent, tour operator     Package Tour                   Yes
## 2741              Friends, relatives      Independent                    No
## 2742     Travel agent, tour operator     Package Tour                   Yes
## 2743     Travel agent, tour operator     Package Tour                   Yes
## 2744              Friends, relatives     Package Tour                   Yes
## 2745     Travel agent, tour operator     Package Tour                    No
## 2746 Newspaper, magazines, brochures      Independent                    No
## 2747     Travel agent, tour operator     Package Tour                   Yes
## 2748              Friends, relatives     Package Tour                   Yes
## 2749     Travel agent, tour operator     Package Tour                    No
## 2750              Friends, relatives      Independent                    No
## 2751              Friends, relatives      Independent                    No
## 2752              Friends, relatives      Independent                    No
## 2753              Friends, relatives     Package Tour                   Yes
## 2755     Travel agent, tour operator     Package Tour                    No
## 2756              Friends, relatives      Independent                    No
## 2757                          Others      Independent                    No
## 2760              Friends, relatives     Package Tour                   Yes
## 2761     Travel agent, tour operator     Package Tour                    No
## 2762         Tanzania Mission Abroad      Independent                    No
## 2763     Travel agent, tour operator     Package Tour                   Yes
## 2764     Travel agent, tour operator     Package Tour                   Yes
## 2765              Friends, relatives      Independent                    No
## 2766              Friends, relatives     Package Tour                   Yes
## 2767              Friends, relatives      Independent                    No
## 2768     Travel agent, tour operator     Package Tour                   Yes
## 2769     Travel agent, tour operator     Package Tour                   Yes
## 2770     Travel agent, tour operator     Package Tour                   Yes
## 2771     Travel agent, tour operator     Package Tour                    No
## 2772 Newspaper, magazines, brochures      Independent                    No
## 2773     Travel agent, tour operator     Package Tour                   Yes
## 2774              Friends, relatives      Independent                    No
## 2775              Friends, relatives      Independent                    No
## 2776     Travel agent, tour operator     Package Tour                   Yes
## 2777     Travel agent, tour operator     Package Tour                   Yes
## 2778     Travel agent, tour operator     Package Tour                   Yes
## 2779              Friends, relatives      Independent                    No
## 2780              Friends, relatives      Independent                    No
## 2781     Travel agent, tour operator     Package Tour                    No
## 2782              Friends, relatives      Independent                    No
## 2783              Friends, relatives      Independent                    No
## 2784              Friends, relatives      Independent                    No
## 2785                          Others     Package Tour                   Yes
## 2786              Friends, relatives     Package Tour                   Yes
## 2787                  Radio, TV, Web      Independent                    No
## 2788              Friends, relatives     Package Tour                    No
## 2789     Travel agent, tour operator     Package Tour                   Yes
## 2790              Friends, relatives      Independent                    No
## 2791              Friends, relatives     Package Tour                   Yes
## 2792     Travel agent, tour operator     Package Tour                   Yes
## 2793     Travel agent, tour operator     Package Tour                   Yes
## 2794              Friends, relatives      Independent                    No
## 2795     Travel agent, tour operator      Independent                    No
## 2796     Travel agent, tour operator     Package Tour                   Yes
## 2797              Friends, relatives      Independent                    No
## 2798                      Trade fair     Package Tour                   Yes
## 2799 Newspaper, magazines, brochures      Independent                    No
## 2800     Travel agent, tour operator     Package Tour                    No
## 2801              Friends, relatives      Independent                    No
## 2802     Travel agent, tour operator     Package Tour                   Yes
## 2803              Friends, relatives     Package Tour                    No
## 2804                      Trade fair     Package Tour                   Yes
## 2805              Friends, relatives      Independent                    No
## 2806              Friends, relatives     Package Tour                   Yes
## 2807     Travel agent, tour operator     Package Tour                   Yes
## 2808              Friends, relatives      Independent                    No
## 2809     Travel agent, tour operator     Package Tour                   Yes
## 2810                          Others      Independent                    No
## 2811                  Radio, TV, Web     Package Tour                    No
## 2813                          Others     Package Tour                   Yes
## 2814              Friends, relatives      Independent                    No
## 2815     Travel agent, tour operator     Package Tour                    No
## 2816 Newspaper, magazines, brochures     Package Tour                   Yes
## 2817              Friends, relatives      Independent                    No
## 2818     Travel agent, tour operator     Package Tour                   Yes
## 2821     Travel agent, tour operator     Package Tour                   Yes
## 2822     Travel agent, tour operator     Package Tour                    No
## 2823     Travel agent, tour operator      Independent                    No
## 2824     Travel agent, tour operator     Package Tour                   Yes
## 2825              Friends, relatives     Package Tour                   Yes
## 2826     Travel agent, tour operator     Package Tour                   Yes
## 2827     Travel agent, tour operator     Package Tour                   Yes
## 2828     Travel agent, tour operator     Package Tour                   Yes
## 2829                  Radio, TV, Web      Independent                    No
## 2831     Travel agent, tour operator     Package Tour                    No
## 2832     Travel agent, tour operator     Package Tour                   Yes
## 2833     Travel agent, tour operator     Package Tour                   Yes
## 2834     Travel agent, tour operator     Package Tour                   Yes
## 2835              Friends, relatives      Independent                   Yes
## 2836     Travel agent, tour operator     Package Tour                   Yes
## 2837     Travel agent, tour operator     Package Tour                   Yes
## 2838     Travel agent, tour operator      Independent                    No
## 2839     Travel agent, tour operator     Package Tour                   Yes
## 2840              Friends, relatives      Independent                    No
## 2841     Travel agent, tour operator     Package Tour                    No
## 2842 Newspaper, magazines, brochures     Package Tour                    No
## 2843     Travel agent, tour operator     Package Tour                   Yes
## 2844     Travel agent, tour operator     Package Tour                    No
## 2845     Travel agent, tour operator     Package Tour                   Yes
## 2846     Travel agent, tour operator      Independent                    No
## 2850 Newspaper, magazines, brochures     Package Tour                    No
## 2851              Friends, relatives      Independent                    No
## 2852              Friends, relatives      Independent                    No
## 2853                  Radio, TV, Web     Package Tour                   Yes
## 2854              Friends, relatives      Independent                    No
## 2855 Newspaper, magazines, brochures      Independent                   Yes
## 2856                  Radio, TV, Web      Independent                    No
## 2857              Friends, relatives      Independent                    No
## 2858              Friends, relatives     Package Tour                   Yes
## 2859     Travel agent, tour operator     Package Tour                   Yes
## 2860     Travel agent, tour operator     Package Tour                   Yes
## 2862              Friends, relatives      Independent                    No
## 2863     Travel agent, tour operator     Package Tour                   Yes
## 2864              Inflight magazines     Package Tour                   Yes
## 2865 Newspaper, magazines, brochures      Independent                    No
## 2866     Travel agent, tour operator     Package Tour                   Yes
## 2868              Friends, relatives      Independent                    No
## 2869     Travel agent, tour operator     Package Tour                   Yes
## 2870     Travel agent, tour operator     Package Tour                   Yes
## 2871     Travel agent, tour operator     Package Tour                    No
## 2872     Travel agent, tour operator     Package Tour                   Yes
## 2874 Newspaper, magazines, brochures      Independent                    No
## 2875              Friends, relatives      Independent                    No
## 2876              Friends, relatives      Independent                    No
## 2877                  Radio, TV, Web      Independent                    No
## 2878     Travel agent, tour operator     Package Tour                   Yes
## 2879     Travel agent, tour operator     Package Tour                   Yes
## 2880     Travel agent, tour operator      Independent                    No
## 2881     Travel agent, tour operator     Package Tour                    No
## 2882                  Radio, TV, Web      Independent                    No
## 2883                  Radio, TV, Web     Package Tour                    No
## 2885     Travel agent, tour operator     Package Tour                   Yes
## 2886     Travel agent, tour operator     Package Tour                   Yes
## 2887 Newspaper, magazines, brochures      Independent                    No
## 2888     Travel agent, tour operator     Package Tour                    No
## 2889     Travel agent, tour operator     Package Tour                   Yes
## 2890     Travel agent, tour operator     Package Tour                   Yes
## 2891                  Radio, TV, Web      Independent                    No
## 2892     Travel agent, tour operator     Package Tour                   Yes
## 2893                  Radio, TV, Web     Package Tour                   Yes
## 2894     Travel agent, tour operator     Package Tour                   Yes
## 2895     Travel agent, tour operator     Package Tour                   Yes
## 2896              Friends, relatives      Independent                    No
## 2897 Newspaper, magazines, brochures     Package Tour                    No
## 2898                          Others      Independent                    No
## 2899     Travel agent, tour operator     Package Tour                   Yes
## 2900              Friends, relatives      Independent                    No
## 2901     Travel agent, tour operator     Package Tour                   Yes
## 2902     Travel agent, tour operator     Package Tour                   Yes
## 2903                  Radio, TV, Web      Independent                    No
## 2904              Friends, relatives     Package Tour                   Yes
## 2905              Friends, relatives      Independent                    No
## 2906              Friends, relatives      Independent                    No
## 2909              Friends, relatives      Independent                    No
## 2910     Travel agent, tour operator      Independent                    No
## 2911     Travel agent, tour operator      Independent                    No
## 2912     Travel agent, tour operator     Package Tour                    No
## 2913     Travel agent, tour operator     Package Tour                   Yes
## 2914              Friends, relatives      Independent                    No
## 2915              Friends, relatives      Independent                    No
## 2916              Friends, relatives      Independent                    No
## 2917     Travel agent, tour operator     Package Tour                    No
## 2918              Friends, relatives      Independent                    No
## 2919                          Others     Package Tour                    No
## 2921              Friends, relatives      Independent                    No
## 2922              Friends, relatives     Package Tour                   Yes
## 2923                          Others      Independent                    No
## 2924              Friends, relatives      Independent                    No
## 2925              Friends, relatives      Independent                    No
## 2926                          Others      Independent                    No
## 2927 Newspaper, magazines, brochures      Independent                    No
## 2928     Travel agent, tour operator     Package Tour                   Yes
## 2929                  Radio, TV, Web     Package Tour                    No
## 2930     Travel agent, tour operator     Package Tour                   Yes
## 2931                          Others     Package Tour                    No
## 2932              Friends, relatives      Independent                    No
## 2933     Travel agent, tour operator     Package Tour                   Yes
## 2934     Travel agent, tour operator     Package Tour                   Yes
## 2935              Friends, relatives      Independent                    No
## 2936     Travel agent, tour operator     Package Tour                    No
## 2937     Travel agent, tour operator     Package Tour                   Yes
## 2938              Friends, relatives     Package Tour                   Yes
## 2939     Travel agent, tour operator      Independent                    No
## 2940                          Others     Package Tour                   Yes
## 2941     Travel agent, tour operator     Package Tour                   Yes
## 2942              Friends, relatives      Independent                    No
## 2943                  Radio, TV, Web      Independent                    No
## 2944              Friends, relatives      Independent                    No
## 2946              Friends, relatives      Independent                    No
## 2947     Travel agent, tour operator     Package Tour                   Yes
## 2948     Travel agent, tour operator      Independent                    No
## 2949     Travel agent, tour operator     Package Tour                    No
## 2950 Newspaper, magazines, brochures      Independent                    No
## 2951     Travel agent, tour operator      Independent                    No
## 2952                  Radio, TV, Web      Independent                    No
## 2953 Newspaper, magazines, brochures     Package Tour                   Yes
## 2954              Inflight magazines      Independent                    No
## 2955              Friends, relatives      Independent                    No
## 2956              Friends, relatives      Independent                    No
## 2957     Travel agent, tour operator     Package Tour                    No
## 2958     Travel agent, tour operator     Package Tour                   Yes
## 2959     Travel agent, tour operator     Package Tour                   Yes
## 2960              Friends, relatives      Independent                    No
## 2961 Newspaper, magazines, brochures      Independent                    No
## 2962              Friends, relatives      Independent                    No
## 2964              Friends, relatives      Independent                    No
## 2965     Travel agent, tour operator     Package Tour                    No
## 2966     Travel agent, tour operator     Package Tour                   Yes
## 2967              Friends, relatives      Independent                    No
## 2968     Travel agent, tour operator      Independent                    No
## 2969     Travel agent, tour operator      Independent                    No
## 2970     Travel agent, tour operator     Package Tour                    No
## 2971     Travel agent, tour operator     Package Tour                    No
## 2972     Travel agent, tour operator     Package Tour                   Yes
## 2973 Newspaper, magazines, brochures     Package Tour                   Yes
## 2974     Travel agent, tour operator      Independent                    No
## 2975              Friends, relatives      Independent                    No
## 2976     Travel agent, tour operator     Package Tour                    No
## 2977     Travel agent, tour operator     Package Tour                   Yes
## 2978              Friends, relatives      Independent                    No
## 2980              Friends, relatives      Independent                    No
## 2982     Travel agent, tour operator     Package Tour                    No
## 2983              Friends, relatives     Package Tour                   Yes
## 2984     Travel agent, tour operator     Package Tour                   Yes
## 2985         Tanzania Mission Abroad     Package Tour                    No
## 2986 Newspaper, magazines, brochures     Package Tour                   Yes
## 2987 Newspaper, magazines, brochures     Package Tour                    No
## 2988              Friends, relatives      Independent                    No
## 2989                  Radio, TV, Web     Package Tour                    No
## 2990              Friends, relatives     Package Tour                   Yes
## 2991              Friends, relatives      Independent                    No
## 2992     Travel agent, tour operator     Package Tour                   Yes
## 2993     Travel agent, tour operator     Package Tour                    No
## 2994     Travel agent, tour operator     Package Tour                   Yes
## 2995     Travel agent, tour operator      Independent                    No
## 2996     Travel agent, tour operator     Package Tour                   Yes
## 2997              Friends, relatives      Independent                    No
## 2998     Travel agent, tour operator     Package Tour                   Yes
## 2999     Travel agent, tour operator     Package Tour                    No
## 3000     Travel agent, tour operator     Package Tour                   Yes
## 3002     Travel agent, tour operator     Package Tour                   Yes
## 3003     Travel agent, tour operator     Package Tour                   Yes
## 3004     Travel agent, tour operator      Independent                    No
## 3005 Newspaper, magazines, brochures     Package Tour                   Yes
## 3006                          Others      Independent                    No
## 3007     Travel agent, tour operator     Package Tour                   Yes
## 3008                  Radio, TV, Web     Package Tour                   Yes
## 3009     Travel agent, tour operator     Package Tour                    No
## 3010     Travel agent, tour operator     Package Tour                    No
## 3011     Travel agent, tour operator     Package Tour                   Yes
## 3012                          Others     Package Tour                   Yes
## 3013     Travel agent, tour operator     Package Tour                   Yes
## 3015     Travel agent, tour operator     Package Tour                   Yes
## 3016              Friends, relatives      Independent                    No
## 3017     Travel agent, tour operator     Package Tour                   Yes
## 3018                          Others      Independent                    No
## 3019     Travel agent, tour operator     Package Tour                    No
## 3020     Travel agent, tour operator     Package Tour                    No
## 3021                      Trade fair     Package Tour                   Yes
## 3022     Travel agent, tour operator     Package Tour                    No
## 3023     Travel agent, tour operator     Package Tour                   Yes
## 3024                  Radio, TV, Web     Package Tour                    No
## 3025     Travel agent, tour operator     Package Tour                   Yes
## 3027     Travel agent, tour operator     Package Tour                   Yes
## 3028     Travel agent, tour operator     Package Tour                   Yes
## 3029                  Radio, TV, Web      Independent                    No
## 3030     Travel agent, tour operator     Package Tour                   Yes
## 3031              Friends, relatives      Independent                    No
## 3032     Travel agent, tour operator     Package Tour                   Yes
## 3033     Travel agent, tour operator     Package Tour                   Yes
## 3034     Travel agent, tour operator     Package Tour                   Yes
## 3035     Travel agent, tour operator     Package Tour                   Yes
## 3036                  Radio, TV, Web     Package Tour                   Yes
## 3037              Friends, relatives     Package Tour                   Yes
## 3038              Friends, relatives     Package Tour                   Yes
## 3039     Travel agent, tour operator     Package Tour                   Yes
## 3040     Travel agent, tour operator     Package Tour                   Yes
## 3041              Friends, relatives      Independent                    No
## 3042     Travel agent, tour operator     Package Tour                   Yes
## 3044     Travel agent, tour operator     Package Tour                   Yes
## 3045                      Trade fair      Independent                    No
## 3046 Newspaper, magazines, brochures      Independent                    No
## 3047              Friends, relatives      Independent                    No
## 3048              Friends, relatives     Package Tour                    No
## 3049              Friends, relatives      Independent                    No
## 3050     Travel agent, tour operator     Package Tour                   Yes
## 3051     Travel agent, tour operator     Package Tour                   Yes
## 3053                          Others      Independent                    No
## 3054              Friends, relatives      Independent                    No
## 3055              Friends, relatives      Independent                    No
## 3056              Friends, relatives      Independent                    No
## 3057                  Radio, TV, Web      Independent                    No
## 3058              Friends, relatives     Package Tour                    No
## 3060 Newspaper, magazines, brochures     Package Tour                   Yes
## 3061 Newspaper, magazines, brochures      Independent                    No
## 3062 Newspaper, magazines, brochures      Independent                    No
## 3063              Friends, relatives      Independent                    No
## 3064     Travel agent, tour operator     Package Tour                    No
## 3065 Newspaper, magazines, brochures      Independent                    No
## 3066              Friends, relatives     Package Tour                    No
## 3067     Travel agent, tour operator     Package Tour                    No
## 3068              Friends, relatives      Independent                    No
## 3069 Newspaper, magazines, brochures     Package Tour                   Yes
## 3070                          Others      Independent                    No
## 3071              Friends, relatives      Independent                    No
## 3072              Friends, relatives     Package Tour                   Yes
## 3073     Travel agent, tour operator     Package Tour                    No
## 3074              Friends, relatives      Independent                    No
## 3075                  Radio, TV, Web     Package Tour                   Yes
## 3076     Travel agent, tour operator     Package Tour                   Yes
## 3078              Friends, relatives      Independent                    No
## 3079              Friends, relatives      Independent                    No
## 3080                  Radio, TV, Web      Independent                    No
## 3081                  Radio, TV, Web      Independent                    No
## 3082                  Radio, TV, Web     Package Tour                    No
## 3084     Travel agent, tour operator     Package Tour                   Yes
## 3085                      Trade fair      Independent                    No
## 3086     Travel agent, tour operator     Package Tour                   Yes
## 3087              Friends, relatives      Independent                    No
## 3088              Friends, relatives     Package Tour                   Yes
## 3090     Travel agent, tour operator     Package Tour                   Yes
## 3091     Travel agent, tour operator     Package Tour                    No
## 3092     Travel agent, tour operator     Package Tour                   Yes
## 3093              Friends, relatives      Independent                    No
## 3094              Friends, relatives      Independent                    No
## 3095 Newspaper, magazines, brochures      Independent                    No
## 3096         Tanzania Mission Abroad      Independent                    No
## 3097     Travel agent, tour operator     Package Tour                    No
## 3098     Travel agent, tour operator     Package Tour                    No
## 3099     Travel agent, tour operator     Package Tour                   Yes
## 3100     Travel agent, tour operator     Package Tour                   Yes
## 3101                          Others      Independent                    No
## 3102     Travel agent, tour operator      Independent                    No
## 3103     Travel agent, tour operator      Independent                    No
## 3104     Travel agent, tour operator     Package Tour                   Yes
## 3105              Friends, relatives      Independent                    No
## 3106              Friends, relatives      Independent                    No
## 3107     Travel agent, tour operator     Package Tour                    No
## 3108              Friends, relatives      Independent                    No
## 3109     Travel agent, tour operator     Package Tour                   Yes
## 3110                      Trade fair      Independent                    No
## 3111              Friends, relatives     Package Tour                   Yes
## 3112              Friends, relatives      Independent                    No
## 3113     Travel agent, tour operator     Package Tour                   Yes
## 3114              Friends, relatives     Package Tour                   Yes
## 3115     Travel agent, tour operator      Independent                    No
## 3116     Travel agent, tour operator     Package Tour                   Yes
## 3117 Newspaper, magazines, brochures      Independent                    No
## 3118              Friends, relatives      Independent                    No
## 3119     Travel agent, tour operator     Package Tour                    No
## 3120     Travel agent, tour operator     Package Tour                   Yes
## 3121     Travel agent, tour operator     Package Tour                   Yes
## 3122                          Others      Independent                    No
## 3123     Travel agent, tour operator     Package Tour                   Yes
## 3124     Travel agent, tour operator     Package Tour                    No
## 3126     Travel agent, tour operator     Package Tour                   Yes
## 3127              Friends, relatives      Independent                    No
## 3128 Newspaper, magazines, brochures     Package Tour                   Yes
## 3129     Travel agent, tour operator     Package Tour                   Yes
## 3130     Travel agent, tour operator     Package Tour                   Yes
## 3131     Travel agent, tour operator     Package Tour                   Yes
## 3132                          Others      Independent                    No
## 3133              Friends, relatives      Independent                    No
## 3134              Friends, relatives      Independent                    No
## 3136 Newspaper, magazines, brochures     Package Tour                    No
## 3137     Travel agent, tour operator     Package Tour                   Yes
## 3138     Travel agent, tour operator     Package Tour                   Yes
## 3139              Friends, relatives      Independent                    No
## 3140              Friends, relatives      Independent                    No
## 3141     Travel agent, tour operator     Package Tour                   Yes
## 3142     Travel agent, tour operator     Package Tour                   Yes
## 3143     Travel agent, tour operator     Package Tour                   Yes
## 3144     Travel agent, tour operator     Package Tour                   Yes
## 3145                          Others      Independent                    No
## 3146              Friends, relatives      Independent                    No
## 3147     Travel agent, tour operator     Package Tour                   Yes
## 3148     Travel agent, tour operator     Package Tour                   Yes
## 3149              Friends, relatives      Independent                    No
## 3150              Friends, relatives      Independent                    No
## 3151              Friends, relatives      Independent                    No
## 3152              Friends, relatives      Independent                    No
## 3153 Newspaper, magazines, brochures     Package Tour                    No
## 3154                      Trade fair      Independent                    No
## 3155                  Radio, TV, Web      Independent                    No
## 3156     Travel agent, tour operator      Independent                    No
## 3157                  Radio, TV, Web     Package Tour                    No
## 3158     Travel agent, tour operator     Package Tour                   Yes
## 3159              Friends, relatives      Independent                    No
## 3160                          Others      Independent                    No
## 3161              Friends, relatives      Independent                    No
## 3162     Travel agent, tour operator     Package Tour                   Yes
## 3163              Friends, relatives      Independent                    No
## 3164     Travel agent, tour operator     Package Tour                   Yes
## 3165     Travel agent, tour operator     Package Tour                    No
## 3166 Newspaper, magazines, brochures      Independent                    No
## 3167     Travel agent, tour operator     Package Tour                    No
## 3168     Travel agent, tour operator     Package Tour                   Yes
## 3169              Friends, relatives      Independent                    No
## 3170              Friends, relatives     Package Tour                    No
## 3171                  Radio, TV, Web      Independent                    No
## 3172              Friends, relatives      Independent                    No
## 3173              Friends, relatives      Independent                    No
## 3174 Newspaper, magazines, brochures     Package Tour                    No
## 3175              Friends, relatives      Independent                    No
## 3177              Friends, relatives      Independent                    No
## 3178                          Others      Independent                    No
## 3179 Newspaper, magazines, brochures      Independent                    No
## 3180     Travel agent, tour operator     Package Tour                   Yes
## 3181 Newspaper, magazines, brochures      Independent                    No
## 3182     Travel agent, tour operator      Independent                    No
## 3183              Friends, relatives      Independent                    No
## 3184              Friends, relatives      Independent                    No
## 3185     Travel agent, tour operator     Package Tour                   Yes
## 3186     Travel agent, tour operator     Package Tour                   Yes
## 3187     Travel agent, tour operator     Package Tour                   Yes
## 3188              Friends, relatives     Package Tour                    No
## 3189              Friends, relatives      Independent                    No
## 3190     Travel agent, tour operator     Package Tour                    No
## 3191 Newspaper, magazines, brochures      Independent                    No
## 3192     Travel agent, tour operator     Package Tour                    No
## 3193     Travel agent, tour operator     Package Tour                   Yes
## 3194     Travel agent, tour operator     Package Tour                   Yes
## 3195              Friends, relatives      Independent                    No
## 3196              Friends, relatives      Independent                    No
## 3197              Friends, relatives     Package Tour                    No
## 3198     Travel agent, tour operator     Package Tour                   Yes
## 3199              Friends, relatives     Package Tour                    No
## 3200              Friends, relatives      Independent                    No
## 3201     Travel agent, tour operator     Package Tour                    No
## 3202 Newspaper, magazines, brochures      Independent                    No
## 3203              Friends, relatives      Independent                    No
## 3204              Friends, relatives      Independent                    No
## 3205              Friends, relatives      Independent                    No
## 3206     Travel agent, tour operator     Package Tour                   Yes
## 3207     Travel agent, tour operator     Package Tour                   Yes
## 3208              Friends, relatives     Package Tour                    No
## 3210     Travel agent, tour operator     Package Tour                   Yes
## 3211                          Others      Independent                    No
## 3213                  Radio, TV, Web      Independent                    No
## 3215 Newspaper, magazines, brochures     Package Tour                    No
## 3216                  Radio, TV, Web      Independent                    No
## 3217     Travel agent, tour operator      Independent                    No
## 3218     Travel agent, tour operator     Package Tour                   Yes
## 3219 Newspaper, magazines, brochures      Independent                    No
## 3221              Inflight magazines      Independent                    No
## 3222              Friends, relatives      Independent                    No
## 3223              Friends, relatives      Independent                    No
## 3224              Friends, relatives      Independent                    No
## 3225     Travel agent, tour operator      Independent                   Yes
## 3226     Travel agent, tour operator     Package Tour                    No
## 3227              Friends, relatives     Package Tour                   Yes
## 3228     Travel agent, tour operator     Package Tour                   Yes
## 3229     Travel agent, tour operator     Package Tour                    No
## 3230     Travel agent, tour operator     Package Tour                    No
## 3231     Travel agent, tour operator     Package Tour                    No
## 3232              Friends, relatives      Independent                    No
## 3233     Travel agent, tour operator     Package Tour                   Yes
## 3234     Travel agent, tour operator     Package Tour                   Yes
## 3235 Newspaper, magazines, brochures      Independent                    No
## 3236              Friends, relatives      Independent                    No
## 3238              Friends, relatives      Independent                    No
## 3239     Travel agent, tour operator     Package Tour                    No
## 3240     Travel agent, tour operator     Package Tour                   Yes
## 3241                      Trade fair     Package Tour                    No
## 3242              Friends, relatives      Independent                    No
## 3243     Travel agent, tour operator      Independent                    No
## 3244 Newspaper, magazines, brochures      Independent                    No
## 3245                          Others      Independent                    No
## 3246                  Radio, TV, Web     Package Tour                    No
## 3247                  Radio, TV, Web     Package Tour                   Yes
## 3248     Travel agent, tour operator      Independent                    No
## 3249     Travel agent, tour operator     Package Tour                   Yes
## 3250              Friends, relatives      Independent                    No
## 3251              Friends, relatives      Independent                    No
## 3252              Friends, relatives      Independent                    No
## 3253              Friends, relatives      Independent                    No
## 3254              Friends, relatives      Independent                    No
## 3255              Friends, relatives      Independent                    No
## 3256     Travel agent, tour operator     Package Tour                   Yes
## 3257                          Others      Independent                    No
## 3258                  Radio, TV, Web     Package Tour                   Yes
## 3259     Travel agent, tour operator      Independent                    No
## 3260     Travel agent, tour operator     Package Tour                    No
## 3261              Friends, relatives      Independent                    No
## 3262     Travel agent, tour operator     Package Tour                   Yes
## 3263     Travel agent, tour operator     Package Tour                   Yes
## 3264     Travel agent, tour operator      Independent                    No
## 3266                          Others     Package Tour                   Yes
## 3267     Travel agent, tour operator      Independent                    No
## 3268     Travel agent, tour operator      Independent                    No
## 3269     Travel agent, tour operator     Package Tour                   Yes
## 3270     Travel agent, tour operator     Package Tour                   Yes
## 3271              Friends, relatives      Independent                    No
## 3272     Travel agent, tour operator     Package Tour                   Yes
## 3273              Friends, relatives      Independent                    No
## 3274     Travel agent, tour operator     Package Tour                    No
## 3275              Friends, relatives      Independent                    No
## 3276     Travel agent, tour operator     Package Tour                   Yes
## 3277     Travel agent, tour operator     Package Tour                   Yes
## 3278         Tanzania Mission Abroad      Independent                    No
## 3279              Friends, relatives      Independent                    No
## 3280     Travel agent, tour operator     Package Tour                   Yes
## 3282                          Others     Package Tour                    No
## 3283     Travel agent, tour operator     Package Tour                   Yes
## 3284              Friends, relatives      Independent                    No
## 3285              Friends, relatives      Independent                    No
## 3286     Travel agent, tour operator     Package Tour                   Yes
## 3287     Travel agent, tour operator     Package Tour                   Yes
## 3288                          Others      Independent                    No
## 3289              Friends, relatives     Package Tour                   Yes
## 3290     Travel agent, tour operator     Package Tour                   Yes
## 3291     Travel agent, tour operator     Package Tour                    No
## 3292     Travel agent, tour operator     Package Tour                    No
## 3293              Friends, relatives      Independent                    No
## 3294 Newspaper, magazines, brochures     Package Tour                   Yes
## 3295     Travel agent, tour operator     Package Tour                   Yes
## 3296 Newspaper, magazines, brochures      Independent                    No
## 3297     Travel agent, tour operator     Package Tour                   Yes
## 3298     Travel agent, tour operator     Package Tour                    No
## 3299     Travel agent, tour operator     Package Tour                   Yes
## 3300                  Radio, TV, Web     Package Tour                   Yes
## 3301     Travel agent, tour operator     Package Tour                   Yes
## 3302     Travel agent, tour operator     Package Tour                    No
## 3303     Travel agent, tour operator     Package Tour                   Yes
## 3305              Friends, relatives      Independent                    No
## 3306              Friends, relatives      Independent                    No
## 3307              Friends, relatives      Independent                   Yes
## 3308                  Radio, TV, Web     Package Tour                    No
## 3309              Friends, relatives      Independent                    No
## 3310     Travel agent, tour operator     Package Tour                   Yes
## 3312     Travel agent, tour operator      Independent                    No
## 3313     Travel agent, tour operator      Independent                    No
## 3314              Friends, relatives     Package Tour                    No
## 3315              Friends, relatives      Independent                    No
## 3316              Friends, relatives     Package Tour                    No
## 3317              Friends, relatives      Independent                    No
## 3318              Friends, relatives     Package Tour                   Yes
## 3319                      Trade fair      Independent                    No
## 3320                          Others      Independent                    No
## 3321              Friends, relatives      Independent                    No
## 3322              Friends, relatives      Independent                    No
## 3323     Travel agent, tour operator     Package Tour                    No
## 3324              Friends, relatives      Independent                    No
## 3325     Travel agent, tour operator     Package Tour                   Yes
## 3326     Travel agent, tour operator      Independent                    No
## 3327     Travel agent, tour operator     Package Tour                   Yes
## 3328                  Radio, TV, Web      Independent                    No
## 3330              Friends, relatives      Independent                    No
## 3331     Travel agent, tour operator     Package Tour                   Yes
## 3332              Friends, relatives      Independent                    No
## 3334     Travel agent, tour operator     Package Tour                    No
## 3335                  Radio, TV, Web     Package Tour                   Yes
## 3336              Friends, relatives     Package Tour                   Yes
## 3337     Travel agent, tour operator     Package Tour                   Yes
## 3338     Travel agent, tour operator     Package Tour                   Yes
## 3339              Friends, relatives      Independent                    No
## 3340              Friends, relatives      Independent                    No
## 3341     Travel agent, tour operator      Independent                    No
## 3342     Travel agent, tour operator     Package Tour                   Yes
## 3343              Friends, relatives      Independent                    No
## 3344              Friends, relatives      Independent                    No
## 3346     Travel agent, tour operator     Package Tour                    No
## 3347     Travel agent, tour operator     Package Tour                    No
## 3348                  Radio, TV, Web     Package Tour                    No
## 3349     Travel agent, tour operator     Package Tour                    No
## 3350 Newspaper, magazines, brochures     Package Tour                   Yes
## 3351                  Radio, TV, Web      Independent                    No
## 3352     Travel agent, tour operator     Package Tour                   Yes
## 3353                          Others      Independent                    No
## 3354     Travel agent, tour operator     Package Tour                   Yes
## 3355                          Others     Package Tour                   Yes
## 3356              Friends, relatives     Package Tour                    No
## 3357                      Trade fair      Independent                    No
## 3358     Travel agent, tour operator     Package Tour                   Yes
## 3359     Travel agent, tour operator     Package Tour                    No
## 3360     Travel agent, tour operator     Package Tour                   Yes
## 3361                  Radio, TV, Web      Independent                    No
## 3362     Travel agent, tour operator     Package Tour                    No
## 3363                          Others      Independent                    No
## 3364              Friends, relatives      Independent                    No
## 3365     Travel agent, tour operator     Package Tour                   Yes
## 3366              Friends, relatives      Independent                    No
## 3367                  Radio, TV, Web     Package Tour                    No
## 3368     Travel agent, tour operator     Package Tour                   Yes
## 3369                          Others     Package Tour                    No
## 3370     Travel agent, tour operator     Package Tour                   Yes
## 3371                          Others      Independent                    No
## 3372     Travel agent, tour operator     Package Tour                   Yes
## 3373     Travel agent, tour operator     Package Tour                   Yes
## 3374     Travel agent, tour operator     Package Tour                   Yes
## 3376                          Others      Independent                    No
## 3377     Travel agent, tour operator     Package Tour                   Yes
## 3378                          Others      Independent                    No
## 3379                          Others      Independent                    No
## 3380     Travel agent, tour operator     Package Tour                   Yes
## 3381     Travel agent, tour operator     Package Tour                   Yes
## 3382     Travel agent, tour operator     Package Tour                    No
## 3383     Travel agent, tour operator     Package Tour                   Yes
## 3384              Friends, relatives     Package Tour                   Yes
## 3385                  Radio, TV, Web     Package Tour                    No
## 3386     Travel agent, tour operator     Package Tour                   Yes
## 3387     Travel agent, tour operator     Package Tour                   Yes
## 3388              Friends, relatives      Independent                    No
## 3389     Travel agent, tour operator     Package Tour                   Yes
## 3391              Friends, relatives     Package Tour                   Yes
## 3392     Travel agent, tour operator      Independent                    No
## 3393     Travel agent, tour operator     Package Tour                   Yes
## 3394     Travel agent, tour operator     Package Tour                   Yes
## 3395              Friends, relatives      Independent                    No
## 3396              Friends, relatives      Independent                    No
## 3398                  Radio, TV, Web      Independent                    No
## 3399              Friends, relatives      Independent                    No
## 3400     Travel agent, tour operator     Package Tour                    No
## 3401                  Radio, TV, Web      Independent                    No
## 3402 Newspaper, magazines, brochures     Package Tour                   Yes
## 3403              Friends, relatives     Package Tour                   Yes
## 3404     Travel agent, tour operator     Package Tour                   Yes
## 3405              Friends, relatives      Independent                    No
## 3406              Friends, relatives     Package Tour                   Yes
## 3407              Friends, relatives      Independent                    No
## 3408         Tanzania Mission Abroad     Package Tour                   Yes
## 3409              Friends, relatives      Independent                    No
## 3410     Travel agent, tour operator     Package Tour                    No
## 3411     Travel agent, tour operator     Package Tour                   Yes
## 3413              Friends, relatives      Independent                    No
## 3414     Travel agent, tour operator     Package Tour                   Yes
## 3415              Friends, relatives      Independent                    No
## 3416                  Radio, TV, Web     Package Tour                   Yes
## 3417     Travel agent, tour operator      Independent                    No
## 3418     Travel agent, tour operator     Package Tour                   Yes
## 3419         Tanzania Mission Abroad      Independent                    No
## 3422     Travel agent, tour operator     Package Tour                   Yes
## 3423     Travel agent, tour operator     Package Tour                   Yes
## 3424              Friends, relatives      Independent                    No
## 3425              Friends, relatives     Package Tour                    No
## 3426     Travel agent, tour operator     Package Tour                   Yes
## 3428                          Others     Package Tour                    No
## 3429 Newspaper, magazines, brochures      Independent                    No
## 3430     Travel agent, tour operator     Package Tour                   Yes
## 3431     Travel agent, tour operator     Package Tour                   Yes
## 3432     Travel agent, tour operator     Package Tour                   Yes
## 3433              Friends, relatives      Independent                    No
## 3434              Friends, relatives      Independent                    No
## 3435     Travel agent, tour operator      Independent                    No
## 3436              Friends, relatives      Independent                    No
## 3437     Travel agent, tour operator     Package Tour                   Yes
## 3438     Travel agent, tour operator     Package Tour                   Yes
## 3439              Friends, relatives      Independent                    No
## 3440                      Trade fair      Independent                    No
## 3441     Travel agent, tour operator     Package Tour                    No
## 3442              Friends, relatives      Independent                    No
## 3443              Friends, relatives      Independent                    No
## 3444     Travel agent, tour operator     Package Tour                    No
## 3445              Friends, relatives     Package Tour                   Yes
## 3446     Travel agent, tour operator      Independent                    No
## 3447     Travel agent, tour operator     Package Tour                    No
## 3448     Travel agent, tour operator     Package Tour                   Yes
## 3449     Travel agent, tour operator     Package Tour                   Yes
## 3450     Travel agent, tour operator     Package Tour                   Yes
## 3451              Friends, relatives     Package Tour                    No
## 3452     Travel agent, tour operator     Package Tour                    No
## 3453     Travel agent, tour operator     Package Tour                   Yes
## 3454              Friends, relatives      Independent                    No
## 3455     Travel agent, tour operator     Package Tour                    No
## 3456              Friends, relatives      Independent                    No
## 3457     Travel agent, tour operator      Independent                    No
## 3458              Friends, relatives      Independent                    No
## 3459              Friends, relatives      Independent                    No
## 3460     Travel agent, tour operator     Package Tour                   Yes
## 3461     Travel agent, tour operator      Independent                    No
## 3462              Friends, relatives     Package Tour                    No
## 3463 Newspaper, magazines, brochures      Independent                    No
## 3464              Friends, relatives      Independent                    No
## 3465     Travel agent, tour operator      Independent                    No
## 3466 Newspaper, magazines, brochures     Package Tour                   Yes
## 3467              Friends, relatives      Independent                    No
## 3468     Travel agent, tour operator     Package Tour                    No
## 3469              Friends, relatives      Independent                    No
## 3470     Travel agent, tour operator     Package Tour                   Yes
## 3471                          Others     Package Tour                    No
## 3472 Newspaper, magazines, brochures      Independent                    No
## 3473         Tanzania Mission Abroad      Independent                    No
## 3474                          Others      Independent                    No
## 3476              Friends, relatives      Independent                    No
## 3477              Friends, relatives     Package Tour                   Yes
## 3478              Friends, relatives      Independent                    No
## 3479     Travel agent, tour operator      Independent                    No
## 3480     Travel agent, tour operator      Independent                    No
## 3481     Travel agent, tour operator     Package Tour                    No
## 3483                          Others      Independent                    No
## 3484              Friends, relatives      Independent                    No
## 3485                  Radio, TV, Web      Independent                    No
## 3486     Travel agent, tour operator     Package Tour                   Yes
## 3487              Friends, relatives      Independent                    No
## 3489     Travel agent, tour operator     Package Tour                   Yes
## 3490     Travel agent, tour operator     Package Tour                   Yes
## 3491     Travel agent, tour operator     Package Tour                   Yes
## 3492                  Radio, TV, Web      Independent                    No
## 3493     Travel agent, tour operator     Package Tour                    No
## 3494                  Radio, TV, Web     Package Tour                    No
## 3495                  Radio, TV, Web     Package Tour                   Yes
## 3496                          Others      Independent                    No
## 3497              Friends, relatives      Independent                    No
## 3498     Travel agent, tour operator     Package Tour                   Yes
## 3499              Friends, relatives      Independent                    No
## 3500              Friends, relatives      Independent                    No
## 3501     Travel agent, tour operator     Package Tour                   Yes
## 3502     Travel agent, tour operator     Package Tour                   Yes
## 3503              Friends, relatives     Package Tour                   Yes
## 3504     Travel agent, tour operator     Package Tour                   Yes
## 3505     Travel agent, tour operator     Package Tour                   Yes
## 3506     Travel agent, tour operator     Package Tour                   Yes
## 3507     Travel agent, tour operator     Package Tour                   Yes
## 3508              Friends, relatives      Independent                    No
## 3510     Travel agent, tour operator      Independent                    No
## 3511 Newspaper, magazines, brochures      Independent                    No
## 3512 Newspaper, magazines, brochures     Package Tour                   Yes
## 3513     Travel agent, tour operator     Package Tour                    No
## 3514                  Radio, TV, Web      Independent                    No
## 3515                  Radio, TV, Web      Independent                    No
## 3516 Newspaper, magazines, brochures      Independent                    No
## 3517     Travel agent, tour operator     Package Tour                    No
## 3518              Friends, relatives      Independent                    No
## 3519     Travel agent, tour operator     Package Tour                   Yes
## 3520     Travel agent, tour operator     Package Tour                   Yes
## 3521                          Others      Independent                    No
## 3522              Friends, relatives      Independent                    No
## 3523     Travel agent, tour operator     Package Tour                   Yes
## 3524     Travel agent, tour operator     Package Tour                    No
## 3525     Travel agent, tour operator     Package Tour                   Yes
## 3526     Travel agent, tour operator      Independent                    No
## 3527              Friends, relatives      Independent                    No
## 3528     Travel agent, tour operator     Package Tour                    No
## 3529              Friends, relatives     Package Tour                   Yes
## 3530              Friends, relatives      Independent                    No
## 3531                  Radio, TV, Web     Package Tour                   Yes
## 3532     Travel agent, tour operator     Package Tour                    No
## 3533                  Radio, TV, Web      Independent                    No
## 3534     Travel agent, tour operator     Package Tour                   Yes
## 3535 Newspaper, magazines, brochures      Independent                    No
## 3536              Friends, relatives     Package Tour                   Yes
## 3537              Friends, relatives      Independent                    No
## 3538     Travel agent, tour operator     Package Tour                   Yes
## 3539              Inflight magazines      Independent                    No
## 3540              Friends, relatives      Independent                    No
## 3541     Travel agent, tour operator     Package Tour                    No
## 3542     Travel agent, tour operator     Package Tour                   Yes
## 3544              Friends, relatives     Package Tour                   Yes
## 3545              Friends, relatives      Independent                    No
## 3546              Friends, relatives      Independent                    No
## 3547     Travel agent, tour operator     Package Tour                    No
## 3548     Travel agent, tour operator     Package Tour                   Yes
## 3549              Friends, relatives      Independent                    No
## 3550              Friends, relatives     Package Tour                    No
## 3551     Travel agent, tour operator     Package Tour                    No
## 3552              Friends, relatives      Independent                    No
## 3553     Travel agent, tour operator     Package Tour                   Yes
## 3554     Travel agent, tour operator     Package Tour                    No
## 3555                  Radio, TV, Web     Package Tour                    No
## 3556 Newspaper, magazines, brochures      Independent                    No
## 3557 Newspaper, magazines, brochures      Independent                    No
## 3558     Travel agent, tour operator     Package Tour                   Yes
## 3559     Travel agent, tour operator     Package Tour                   Yes
## 3560              Friends, relatives      Independent                    No
## 3561              Friends, relatives      Independent                    No
## 3562     Travel agent, tour operator     Package Tour                   Yes
## 3563              Friends, relatives      Independent                    No
## 3564     Travel agent, tour operator      Independent                   Yes
## 3565     Travel agent, tour operator     Package Tour                    No
## 3567     Travel agent, tour operator     Package Tour                   Yes
## 3568                  Radio, TV, Web     Package Tour                   Yes
## 3569              Friends, relatives     Package Tour                    No
## 3570              Friends, relatives      Independent                    No
## 3571     Travel agent, tour operator     Package Tour                   Yes
## 3573              Friends, relatives      Independent                    No
## 3574              Friends, relatives      Independent                    No
## 3575     Travel agent, tour operator     Package Tour                    No
## 3576                          Others      Independent                    No
## 3577                          Others      Independent                    No
## 3578              Friends, relatives      Independent                    No
## 3579              Friends, relatives      Independent                    No
## 3580              Friends, relatives      Independent                    No
## 3581              Friends, relatives      Independent                    No
## 3582     Travel agent, tour operator     Package Tour                   Yes
## 3583                      Trade fair     Package Tour                   Yes
## 3584     Travel agent, tour operator     Package Tour                   Yes
## 3585              Friends, relatives     Package Tour                   Yes
## 3586              Friends, relatives     Package Tour                    No
## 3587     Travel agent, tour operator      Independent                    No
## 3588              Friends, relatives      Independent                    No
## 3589                          Others      Independent                    No
## 3590                      Trade fair      Independent                    No
## 3591 Newspaper, magazines, brochures     Package Tour                    No
## 3592     Travel agent, tour operator     Package Tour                   Yes
## 3593     Travel agent, tour operator     Package Tour                   Yes
## 3594                          Others      Independent                    No
## 3595     Travel agent, tour operator     Package Tour                   Yes
## 3596              Friends, relatives      Independent                    No
## 3597     Travel agent, tour operator     Package Tour                   Yes
## 3598              Friends, relatives      Independent                    No
## 3599     Travel agent, tour operator      Independent                    No
## 3600     Travel agent, tour operator     Package Tour                    No
## 3601              Friends, relatives      Independent                    No
## 3602     Travel agent, tour operator      Independent                    No
## 3603     Travel agent, tour operator     Package Tour                   Yes
## 3604 Newspaper, magazines, brochures      Independent                    No
## 3605              Friends, relatives      Independent                    No
## 3606              Friends, relatives      Independent                    No
## 3607                          Others      Independent                    No
## 3608              Friends, relatives     Package Tour                    No
## 3609     Travel agent, tour operator      Independent                    No
## 3610                          Others     Package Tour                   Yes
## 3611     Travel agent, tour operator     Package Tour                   Yes
## 3612 Newspaper, magazines, brochures     Package Tour                    No
## 3613     Travel agent, tour operator     Package Tour                   Yes
## 3614     Travel agent, tour operator     Package Tour                   Yes
## 3615              Friends, relatives      Independent                    No
## 3616              Friends, relatives      Independent                    No
## 3617              Friends, relatives      Independent                    No
## 3618     Travel agent, tour operator      Independent                    No
## 3619     Travel agent, tour operator     Package Tour                   Yes
## 3620     Travel agent, tour operator     Package Tour                   Yes
## 3621              Friends, relatives      Independent                    No
## 3622     Travel agent, tour operator      Independent                    No
## 3623              Friends, relatives     Package Tour                   Yes
## 3624 Newspaper, magazines, brochures     Package Tour                   Yes
## 3625              Friends, relatives      Independent                    No
## 3627                  Radio, TV, Web     Package Tour                   Yes
## 3628     Travel agent, tour operator     Package Tour                   Yes
## 3629              Friends, relatives      Independent                    No
## 3630     Travel agent, tour operator     Package Tour                   Yes
## 3631     Travel agent, tour operator     Package Tour                   Yes
## 3632              Friends, relatives      Independent                    No
## 3633     Travel agent, tour operator     Package Tour                    No
## 3634              Friends, relatives     Package Tour                    No
## 3635     Travel agent, tour operator     Package Tour                    No
## 3637                  Radio, TV, Web      Independent                    No
## 3638              Friends, relatives      Independent                    No
## 3639     Travel agent, tour operator     Package Tour                   Yes
## 3640                      Trade fair     Package Tour                   Yes
## 3641     Travel agent, tour operator     Package Tour                   Yes
## 3642     Travel agent, tour operator     Package Tour                   Yes
## 3643 Newspaper, magazines, brochures     Package Tour                   Yes
## 3644     Travel agent, tour operator     Package Tour                   Yes
## 3645     Travel agent, tour operator     Package Tour                    No
## 3646     Travel agent, tour operator     Package Tour                   Yes
## 3647     Travel agent, tour operator      Independent                    No
## 3648     Travel agent, tour operator     Package Tour                    No
## 3649     Travel agent, tour operator      Independent                    No
## 3650              Friends, relatives      Independent                    No
## 3652     Travel agent, tour operator      Independent                    No
## 3653              Friends, relatives      Independent                    No
## 3654              Friends, relatives      Independent                    No
## 3655                          Others      Independent                    No
## 3656 Newspaper, magazines, brochures     Package Tour                    No
## 3657     Travel agent, tour operator     Package Tour                    No
## 3658 Newspaper, magazines, brochures     Package Tour                   Yes
## 3659              Friends, relatives      Independent                    No
## 3660     Travel agent, tour operator     Package Tour                    No
## 3661              Friends, relatives     Package Tour                   Yes
## 3662              Friends, relatives      Independent                    No
## 3663     Travel agent, tour operator     Package Tour                    No
## 3664     Travel agent, tour operator     Package Tour                   Yes
## 3665              Friends, relatives      Independent                    No
## 3667     Travel agent, tour operator     Package Tour                    No
## 3668              Friends, relatives      Independent                    No
## 3670              Friends, relatives      Independent                    No
## 3671                  Radio, TV, Web      Independent                    No
## 3672     Travel agent, tour operator      Independent                    No
## 3673     Travel agent, tour operator      Independent                   Yes
## 3674              Friends, relatives      Independent                    No
## 3675              Friends, relatives      Independent                    No
## 3676     Travel agent, tour operator     Package Tour                    No
## 3677     Travel agent, tour operator      Independent                    No
## 3678     Travel agent, tour operator     Package Tour                   Yes
## 3679     Travel agent, tour operator      Independent                    No
## 3680                          Others     Package Tour                   Yes
## 3681     Travel agent, tour operator     Package Tour                   Yes
## 3682     Travel agent, tour operator     Package Tour                   Yes
## 3683 Newspaper, magazines, brochures     Package Tour                    No
## 3684     Travel agent, tour operator     Package Tour                   Yes
## 3685     Travel agent, tour operator     Package Tour                   Yes
## 3686              Friends, relatives      Independent                    No
## 3687              Friends, relatives      Independent                    No
## 3688                          Others     Package Tour                   Yes
## 3689     Travel agent, tour operator     Package Tour                   Yes
## 3690                          Others      Independent                    No
## 3691                          Others      Independent                    No
## 3692                          Others     Package Tour                   Yes
## 3694     Travel agent, tour operator     Package Tour                   Yes
## 3695     Travel agent, tour operator     Package Tour                   Yes
## 3696     Travel agent, tour operator     Package Tour                    No
## 3697     Travel agent, tour operator     Package Tour                   Yes
## 3698     Travel agent, tour operator     Package Tour                   Yes
## 3699     Travel agent, tour operator     Package Tour                   Yes
## 3700              Friends, relatives      Independent                    No
## 3701                          Others      Independent                    No
## 3702     Travel agent, tour operator      Independent                    No
## 3703     Travel agent, tour operator     Package Tour                   Yes
## 3704              Friends, relatives     Package Tour                    No
## 3706                  Radio, TV, Web      Independent                    No
## 3707     Travel agent, tour operator     Package Tour                    No
## 3708     Travel agent, tour operator     Package Tour                   Yes
## 3709     Travel agent, tour operator     Package Tour                   Yes
## 3710     Travel agent, tour operator     Package Tour                    No
## 3711              Friends, relatives      Independent                    No
## 3712     Travel agent, tour operator     Package Tour                   Yes
## 3713     Travel agent, tour operator     Package Tour                    No
## 3714              Friends, relatives      Independent                    No
## 3715     Travel agent, tour operator     Package Tour                   Yes
## 3716     Travel agent, tour operator     Package Tour                   Yes
## 3717     Travel agent, tour operator     Package Tour                    No
## 3718     Travel agent, tour operator     Package Tour                   Yes
## 3719     Travel agent, tour operator      Independent                    No
## 3720 Newspaper, magazines, brochures      Independent                    No
## 3721                  Radio, TV, Web      Independent                    No
## 3722     Travel agent, tour operator     Package Tour                    No
## 3723 Newspaper, magazines, brochures     Package Tour                   Yes
## 3724     Travel agent, tour operator      Independent                    No
## 3725 Newspaper, magazines, brochures      Independent                    No
## 3726              Friends, relatives      Independent                    No
## 3727     Travel agent, tour operator     Package Tour                   Yes
## 3728     Travel agent, tour operator      Independent                    No
## 3729     Travel agent, tour operator     Package Tour                   Yes
## 3730 Newspaper, magazines, brochures      Independent                    No
## 3731              Friends, relatives      Independent                    No
## 3732                          Others      Independent                    No
## 3733     Travel agent, tour operator     Package Tour                   Yes
## 3734     Travel agent, tour operator     Package Tour                   Yes
## 3736              Friends, relatives      Independent                    No
## 3737                          Others     Package Tour                    No
## 3738              Friends, relatives      Independent                    No
## 3739              Friends, relatives      Independent                    No
## 3740                  Radio, TV, Web      Independent                    No
## 3741              Friends, relatives      Independent                    No
## 3742              Friends, relatives      Independent                    No
## 3743     Travel agent, tour operator     Package Tour                    No
## 3744     Travel agent, tour operator     Package Tour                   Yes
## 3745     Travel agent, tour operator     Package Tour                    No
## 3746     Travel agent, tour operator     Package Tour                   Yes
## 3747     Travel agent, tour operator     Package Tour                   Yes
## 3748              Friends, relatives      Independent                    No
## 3749     Travel agent, tour operator     Package Tour                   Yes
## 3750              Friends, relatives      Independent                    No
## 3751     Travel agent, tour operator     Package Tour                    No
## 3752     Travel agent, tour operator      Independent                    No
## 3753              Friends, relatives      Independent                    No
## 3754     Travel agent, tour operator     Package Tour                   Yes
## 3755     Travel agent, tour operator     Package Tour                    No
## 3756              Friends, relatives      Independent                    No
## 3757              Friends, relatives     Package Tour                    No
## 3758     Travel agent, tour operator      Independent                    No
## 3759     Travel agent, tour operator     Package Tour                    No
## 3760     Travel agent, tour operator     Package Tour                   Yes
## 3761                          Others      Independent                    No
## 3762              Friends, relatives      Independent                    No
## 3763     Travel agent, tour operator     Package Tour                   Yes
## 3764     Travel agent, tour operator     Package Tour                    No
## 3765 Newspaper, magazines, brochures      Independent                    No
## 3766              Friends, relatives     Package Tour                   Yes
## 3767              Friends, relatives      Independent                    No
## 3768     Travel agent, tour operator     Package Tour                    No
## 3769              Friends, relatives     Package Tour                    No
## 3770                  Radio, TV, Web      Independent                    No
## 3771     Travel agent, tour operator     Package Tour                   Yes
## 3774              Friends, relatives      Independent                    No
## 3775     Travel agent, tour operator     Package Tour                   Yes
## 3776              Friends, relatives      Independent                    No
## 3777     Travel agent, tour operator     Package Tour                   Yes
## 3778              Friends, relatives      Independent                    No
## 3779     Travel agent, tour operator     Package Tour                   Yes
## 3780     Travel agent, tour operator     Package Tour                   Yes
## 3781     Travel agent, tour operator     Package Tour                   Yes
## 3782              Friends, relatives      Independent                    No
## 3783     Travel agent, tour operator     Package Tour                   Yes
## 3784     Travel agent, tour operator     Package Tour                   Yes
## 3785              Friends, relatives      Independent                    No
## 3786     Travel agent, tour operator     Package Tour                   Yes
## 3787              Friends, relatives      Independent                    No
## 3788                  Radio, TV, Web     Package Tour                    No
## 3789              Friends, relatives      Independent                    No
## 3790              Friends, relatives     Package Tour                   Yes
## 3791     Travel agent, tour operator     Package Tour                   Yes
## 3792     Travel agent, tour operator     Package Tour                   Yes
## 3793              Friends, relatives      Independent                    No
## 3794     Travel agent, tour operator      Independent                    No
## 3795     Travel agent, tour operator     Package Tour                   Yes
## 3796              Friends, relatives     Package Tour                   Yes
## 3797     Travel agent, tour operator     Package Tour                   Yes
## 3798              Friends, relatives      Independent                    No
## 3800                  Radio, TV, Web      Independent                    No
## 3801              Friends, relatives      Independent                    No
## 3802     Travel agent, tour operator     Package Tour                    No
## 3803     Travel agent, tour operator     Package Tour                   Yes
## 3804              Friends, relatives     Package Tour                    No
## 3806     Travel agent, tour operator     Package Tour                    No
## 3807              Friends, relatives      Independent                    No
## 3808     Travel agent, tour operator     Package Tour                   Yes
## 3809                      Trade fair      Independent                    No
## 3810     Travel agent, tour operator     Package Tour                   Yes
## 3811     Travel agent, tour operator     Package Tour                    No
## 3812 Newspaper, magazines, brochures      Independent                    No
## 3813     Travel agent, tour operator     Package Tour                    No
## 3814     Travel agent, tour operator     Package Tour                   Yes
## 3815              Friends, relatives      Independent                    No
## 3816     Travel agent, tour operator      Independent                    No
## 3817                  Radio, TV, Web      Independent                    No
## 3818              Friends, relatives      Independent                    No
## 3819     Travel agent, tour operator     Package Tour                   Yes
## 3820                          Others      Independent                    No
## 3821     Travel agent, tour operator     Package Tour                   Yes
## 3822     Travel agent, tour operator     Package Tour                   Yes
## 3823     Travel agent, tour operator     Package Tour                   Yes
## 3824              Friends, relatives      Independent                    No
## 3825              Friends, relatives      Independent                    No
## 3826              Friends, relatives     Package Tour                   Yes
## 3827              Friends, relatives     Package Tour                   Yes
## 3828                          Others     Package Tour                    No
## 3829     Travel agent, tour operator      Independent                    No
## 3830     Travel agent, tour operator     Package Tour                   Yes
## 3831     Travel agent, tour operator     Package Tour                   Yes
## 3832              Friends, relatives      Independent                    No
## 3833     Travel agent, tour operator      Independent                    No
## 3834     Travel agent, tour operator     Package Tour                   Yes
## 3835                          Others     Package Tour                   Yes
## 3836     Travel agent, tour operator      Independent                    No
## 3837              Friends, relatives     Package Tour                   Yes
## 3838              Friends, relatives     Package Tour                    No
## 3839              Friends, relatives     Package Tour                   Yes
## 3840     Travel agent, tour operator      Independent                    No
## 3841     Travel agent, tour operator     Package Tour                   Yes
## 3842 Newspaper, magazines, brochures     Package Tour                    No
## 3843              Friends, relatives      Independent                    No
## 3844     Travel agent, tour operator     Package Tour                    No
## 3846                  Radio, TV, Web      Independent                    No
## 3847 Newspaper, magazines, brochures     Package Tour                   Yes
## 3848                          Others      Independent                    No
## 3849                          Others     Package Tour                    No
## 3850              Friends, relatives     Package Tour                    No
## 3851     Travel agent, tour operator     Package Tour                   Yes
## 3852     Travel agent, tour operator     Package Tour                   Yes
## 3853                          Others      Independent                    No
## 3854                  Radio, TV, Web      Independent                    No
## 3855     Travel agent, tour operator     Package Tour                   Yes
## 3856 Newspaper, magazines, brochures      Independent                    No
## 3857     Travel agent, tour operator     Package Tour                   Yes
## 3858                          Others      Independent                    No
## 3859     Travel agent, tour operator     Package Tour                    No
## 3860 Newspaper, magazines, brochures     Package Tour                   Yes
## 3861         Tanzania Mission Abroad     Package Tour                   Yes
## 3862              Friends, relatives     Package Tour                   Yes
## 3863     Travel agent, tour operator     Package Tour                   Yes
## 3864     Travel agent, tour operator      Independent                    No
## 3865     Travel agent, tour operator     Package Tour                   Yes
## 3866     Travel agent, tour operator     Package Tour                   Yes
## 3867     Travel agent, tour operator     Package Tour                   Yes
## 3868              Friends, relatives      Independent                    No
## 3869              Friends, relatives      Independent                    No
## 3870                  Radio, TV, Web      Independent                    No
## 3871     Travel agent, tour operator     Package Tour                    No
## 3872              Friends, relatives     Package Tour                    No
## 3873     Travel agent, tour operator     Package Tour                    No
## 3874                  Radio, TV, Web      Independent                    No
## 3875     Travel agent, tour operator      Independent                    No
## 3876     Travel agent, tour operator     Package Tour                   Yes
## 3877     Travel agent, tour operator     Package Tour                    No
## 3878                          Others      Independent                    No
## 3879                  Radio, TV, Web     Package Tour                    No
## 3880                          Others      Independent                    No
## 3881     Travel agent, tour operator     Package Tour                    No
## 3882                  Radio, TV, Web     Package Tour                    No
## 3883     Travel agent, tour operator     Package Tour                   Yes
## 3884              Friends, relatives      Independent                    No
## 3885 Newspaper, magazines, brochures      Independent                    No
## 3886     Travel agent, tour operator     Package Tour                    No
## 3887     Travel agent, tour operator     Package Tour                   Yes
## 3888     Travel agent, tour operator     Package Tour                   Yes
## 3889     Travel agent, tour operator     Package Tour                    No
## 3890     Travel agent, tour operator     Package Tour                   Yes
## 3891                          Others     Package Tour                    No
## 3892              Friends, relatives      Independent                    No
## 3893     Travel agent, tour operator     Package Tour                    No
## 3894     Travel agent, tour operator     Package Tour                   Yes
## 3895              Friends, relatives      Independent                    No
## 3896     Travel agent, tour operator     Package Tour                   Yes
## 3897              Friends, relatives      Independent                    No
## 3898     Travel agent, tour operator     Package Tour                   Yes
## 3899              Friends, relatives      Independent                    No
## 3900              Friends, relatives     Package Tour                   Yes
## 3902     Travel agent, tour operator     Package Tour                   Yes
## 3903     Travel agent, tour operator     Package Tour                   Yes
## 3904     Travel agent, tour operator     Package Tour                   Yes
## 3905     Travel agent, tour operator     Package Tour                    No
## 3906                  Radio, TV, Web      Independent                    No
## 3907     Travel agent, tour operator     Package Tour                   Yes
## 3908     Travel agent, tour operator     Package Tour                   Yes
## 3909     Travel agent, tour operator     Package Tour                   Yes
## 3910              Friends, relatives      Independent                    No
## 3911                  Radio, TV, Web      Independent                    No
## 3912     Travel agent, tour operator     Package Tour                   Yes
## 3913     Travel agent, tour operator     Package Tour                   Yes
## 3914              Friends, relatives      Independent                    No
## 3915     Travel agent, tour operator     Package Tour                    No
## 3916 Newspaper, magazines, brochures      Independent                    No
## 3917     Travel agent, tour operator     Package Tour                   Yes
## 3918                  Radio, TV, Web      Independent                    No
## 3919     Travel agent, tour operator     Package Tour                   Yes
## 3920              Friends, relatives      Independent                    No
## 3921              Friends, relatives      Independent                    No
## 3922                  Radio, TV, Web      Independent                    No
## 3923     Travel agent, tour operator     Package Tour                    No
## 3924              Friends, relatives      Independent                    No
## 3925     Travel agent, tour operator      Independent                    No
## 3926              Friends, relatives      Independent                    No
## 3927     Travel agent, tour operator     Package Tour                   Yes
## 3928              Friends, relatives      Independent                    No
## 3929     Travel agent, tour operator     Package Tour                   Yes
## 3930              Friends, relatives      Independent                    No
## 3931     Travel agent, tour operator     Package Tour                    No
## 3932     Travel agent, tour operator     Package Tour                    No
## 3933     Travel agent, tour operator     Package Tour                   Yes
## 3934     Travel agent, tour operator     Package Tour                   Yes
## 3935                      Trade fair      Independent                    No
## 3936              Friends, relatives      Independent                    No
## 3937     Travel agent, tour operator     Package Tour                    No
## 3939     Travel agent, tour operator     Package Tour                   Yes
## 3940                          Others     Package Tour                   Yes
## 3941                          Others      Independent                    No
## 3943              Friends, relatives      Independent                    No
## 3944                          Others      Independent                    No
## 3945                          Others      Independent                    No
## 3946              Friends, relatives      Independent                    No
## 3947     Travel agent, tour operator     Package Tour                   Yes
## 3949     Travel agent, tour operator     Package Tour                   Yes
## 3950     Travel agent, tour operator     Package Tour                    No
## 3952              Friends, relatives      Independent                    No
## 3953              Friends, relatives      Independent                    No
## 3954     Travel agent, tour operator     Package Tour                   Yes
## 3955              Friends, relatives      Independent                    No
## 3957     Travel agent, tour operator     Package Tour                   Yes
## 3958                          Others      Independent                    No
## 3959              Friends, relatives     Package Tour                   Yes
## 3960                          Others      Independent                    No
## 3961              Friends, relatives     Package Tour                   Yes
## 3962     Travel agent, tour operator      Independent                    No
## 3963     Travel agent, tour operator     Package Tour                    No
## 3964              Friends, relatives      Independent                    No
## 3965                  Radio, TV, Web      Independent                    No
## 3966 Newspaper, magazines, brochures     Package Tour                   Yes
## 3967              Friends, relatives     Package Tour                   Yes
## 3968              Friends, relatives      Independent                    No
## 3969     Travel agent, tour operator     Package Tour                    No
## 3970     Travel agent, tour operator     Package Tour                   Yes
## 3971     Travel agent, tour operator     Package Tour                    No
## 3972              Friends, relatives      Independent                    No
## 3973     Travel agent, tour operator     Package Tour                   Yes
## 3974              Friends, relatives      Independent                    No
## 3975     Travel agent, tour operator     Package Tour                    No
## 3976                          Others      Independent                    No
## 3978              Friends, relatives      Independent                    No
## 3979     Travel agent, tour operator     Package Tour                   Yes
## 3980                  Radio, TV, Web     Package Tour                   Yes
## 3981                  Radio, TV, Web      Independent                    No
## 3982     Travel agent, tour operator      Independent                    No
## 3983     Travel agent, tour operator     Package Tour                    No
## 3984     Travel agent, tour operator     Package Tour                    No
## 3985     Travel agent, tour operator      Independent                    No
## 3986     Travel agent, tour operator     Package Tour                   Yes
## 3987              Friends, relatives      Independent                    No
## 3988              Friends, relatives      Independent                    No
## 3989              Friends, relatives      Independent                    No
## 3990     Travel agent, tour operator      Independent                    No
## 3991     Travel agent, tour operator     Package Tour                   Yes
## 3992     Travel agent, tour operator     Package Tour                    No
## 3993              Inflight magazines     Package Tour                    No
## 3994     Travel agent, tour operator     Package Tour                   Yes
## 3995     Travel agent, tour operator     Package Tour                   Yes
## 3996                          Others      Independent                    No
## 3997              Friends, relatives      Independent                    No
## 3998              Friends, relatives      Independent                    No
## 3999     Travel agent, tour operator     Package Tour                   Yes
## 4000     Travel agent, tour operator     Package Tour                   Yes
## 4001              Friends, relatives      Independent                    No
## 4002              Friends, relatives      Independent                    No
## 4003     Travel agent, tour operator     Package Tour                   Yes
## 4004              Inflight magazines      Independent                    No
## 4005 Newspaper, magazines, brochures     Package Tour                   Yes
## 4006              Friends, relatives      Independent                    No
## 4007                          Others      Independent                    No
## 4008              Friends, relatives      Independent                    No
## 4009     Travel agent, tour operator      Independent                    No
## 4010     Travel agent, tour operator     Package Tour                   Yes
## 4011     Travel agent, tour operator      Independent                    No
## 4012     Travel agent, tour operator     Package Tour                    No
## 4013     Travel agent, tour operator     Package Tour                    No
## 4014     Travel agent, tour operator     Package Tour                   Yes
## 4015              Friends, relatives      Independent                    No
## 4016     Travel agent, tour operator     Package Tour                   Yes
## 4017              Friends, relatives      Independent                    No
## 4018              Friends, relatives      Independent                    No
## 4019     Travel agent, tour operator     Package Tour                    No
## 4020                          Others     Package Tour                    No
## 4021     Travel agent, tour operator     Package Tour                   Yes
## 4022         Tanzania Mission Abroad      Independent                   Yes
## 4023     Travel agent, tour operator     Package Tour                   Yes
## 4024              Friends, relatives      Independent                    No
## 4025     Travel agent, tour operator     Package Tour                   Yes
## 4026                          Others      Independent                    No
## 4027     Travel agent, tour operator     Package Tour                   Yes
## 4028              Friends, relatives      Independent                    No
## 4029              Friends, relatives      Independent                    No
## 4030                  Radio, TV, Web      Independent                    No
## 4031     Travel agent, tour operator     Package Tour                   Yes
## 4032 Newspaper, magazines, brochures     Package Tour                   Yes
## 4033     Travel agent, tour operator     Package Tour                    No
## 4034              Friends, relatives      Independent                    No
## 4035     Travel agent, tour operator     Package Tour                   Yes
## 4036     Travel agent, tour operator     Package Tour                   Yes
## 4037                          Others      Independent                    No
## 4038              Friends, relatives     Package Tour                   Yes
## 4039              Friends, relatives      Independent                    No
## 4040              Friends, relatives      Independent                    No
## 4041     Travel agent, tour operator     Package Tour                   Yes
## 4042                  Radio, TV, Web      Independent                    No
## 4043              Friends, relatives     Package Tour                   Yes
## 4044 Newspaper, magazines, brochures     Package Tour                    No
## 4046     Travel agent, tour operator     Package Tour                    No
## 4047     Travel agent, tour operator     Package Tour                   Yes
## 4048              Friends, relatives      Independent                    No
## 4049     Travel agent, tour operator     Package Tour                   Yes
## 4050     Travel agent, tour operator     Package Tour                   Yes
## 4051              Friends, relatives      Independent                    No
## 4052              Friends, relatives      Independent                    No
## 4053     Travel agent, tour operator     Package Tour                   Yes
## 4054                          Others      Independent                    No
## 4055     Travel agent, tour operator     Package Tour                   Yes
## 4056 Newspaper, magazines, brochures      Independent                    No
## 4057              Friends, relatives      Independent                    No
## 4058              Friends, relatives      Independent                    No
## 4061              Friends, relatives      Independent                    No
## 4062                          Others      Independent                    No
## 4063                  Radio, TV, Web      Independent                    No
## 4064              Friends, relatives      Independent                    No
## 4065     Travel agent, tour operator      Independent                    No
## 4067     Travel agent, tour operator     Package Tour                   Yes
## 4068 Newspaper, magazines, brochures      Independent                    No
## 4069     Travel agent, tour operator      Independent                    No
## 4070              Friends, relatives     Package Tour                    No
## 4071 Newspaper, magazines, brochures     Package Tour                   Yes
## 4072              Friends, relatives     Package Tour                    No
## 4073     Travel agent, tour operator     Package Tour                   Yes
## 4074     Travel agent, tour operator     Package Tour                   Yes
## 4075     Travel agent, tour operator     Package Tour                   Yes
## 4076                  Radio, TV, Web     Package Tour                    No
## 4077     Travel agent, tour operator     Package Tour                   Yes
## 4078                  Radio, TV, Web     Package Tour                    No
## 4079              Friends, relatives      Independent                    No
## 4080     Travel agent, tour operator     Package Tour                   Yes
## 4081     Travel agent, tour operator      Independent                    No
## 4082     Travel agent, tour operator     Package Tour                   Yes
## 4083 Newspaper, magazines, brochures      Independent                    No
## 4084     Travel agent, tour operator     Package Tour                    No
## 4085     Travel agent, tour operator     Package Tour                    No
## 4086              Friends, relatives      Independent                    No
## 4087                          Others     Package Tour                    No
## 4088     Travel agent, tour operator     Package Tour                   Yes
## 4089     Travel agent, tour operator     Package Tour                   Yes
## 4090              Friends, relatives      Independent                    No
## 4091     Travel agent, tour operator     Package Tour                   Yes
## 4092         Tanzania Mission Abroad     Package Tour                   Yes
## 4094              Friends, relatives     Package Tour                   Yes
## 4095                  Radio, TV, Web     Package Tour                    No
## 4096                  Radio, TV, Web      Independent                    No
## 4097     Travel agent, tour operator     Package Tour                    No
## 4098              Friends, relatives      Independent                    No
## 4099              Friends, relatives      Independent                    No
## 4100     Travel agent, tour operator      Independent                    No
## 4101     Travel agent, tour operator     Package Tour                   Yes
## 4102     Travel agent, tour operator     Package Tour                   Yes
## 4103     Travel agent, tour operator     Package Tour                   Yes
## 4104              Friends, relatives      Independent                    No
## 4105              Friends, relatives      Independent                    No
## 4106 Newspaper, magazines, brochures      Independent                    No
## 4107     Travel agent, tour operator     Package Tour                   Yes
## 4108     Travel agent, tour operator     Package Tour                    No
## 4109                  Radio, TV, Web      Independent                    No
## 4111              Friends, relatives      Independent                    No
## 4112                  Radio, TV, Web      Independent                    No
## 4113 Newspaper, magazines, brochures      Independent                    No
## 4114              Friends, relatives      Independent                    No
## 4115              Friends, relatives      Independent                    No
## 4116              Friends, relatives     Package Tour                    No
## 4117     Travel agent, tour operator     Package Tour                   Yes
## 4118                  Radio, TV, Web      Independent                    No
## 4119                          Others      Independent                    No
## 4121     Travel agent, tour operator     Package Tour                    No
## 4122              Friends, relatives      Independent                    No
## 4123 Newspaper, magazines, brochures      Independent                    No
## 4124              Friends, relatives      Independent                    No
## 4126              Friends, relatives      Independent                    No
## 4127              Friends, relatives     Package Tour                    No
## 4130              Friends, relatives      Independent                    No
## 4131              Friends, relatives      Independent                    No
## 4133 Newspaper, magazines, brochures      Independent                    No
## 4134     Travel agent, tour operator     Package Tour                   Yes
## 4135              Friends, relatives      Independent                    No
## 4136              Friends, relatives      Independent                    No
## 4137     Travel agent, tour operator     Package Tour                   Yes
## 4138     Travel agent, tour operator     Package Tour                   Yes
## 4139              Friends, relatives      Independent                    No
## 4140              Friends, relatives      Independent                    No
## 4141     Travel agent, tour operator     Package Tour                   Yes
## 4142              Friends, relatives      Independent                    No
## 4143                          Others      Independent                    No
## 4144     Travel agent, tour operator     Package Tour                   Yes
## 4145 Newspaper, magazines, brochures     Package Tour                   Yes
## 4146              Friends, relatives      Independent                    No
## 4147     Travel agent, tour operator     Package Tour                    No
## 4148              Friends, relatives      Independent                    No
## 4149     Travel agent, tour operator     Package Tour                    No
## 4150              Friends, relatives      Independent                    No
## 4151     Travel agent, tour operator     Package Tour                   Yes
## 4152                          Others      Independent                    No
## 4153              Friends, relatives      Independent                    No
## 4154     Travel agent, tour operator      Independent                    No
## 4155              Friends, relatives      Independent                    No
## 4156     Travel agent, tour operator     Package Tour                   Yes
## 4157              Friends, relatives      Independent                    No
## 4158                  Radio, TV, Web      Independent                    No
## 4159     Travel agent, tour operator     Package Tour                   Yes
## 4160                  Radio, TV, Web     Package Tour                   Yes
## 4161              Friends, relatives      Independent                    No
## 4162     Travel agent, tour operator     Package Tour                    No
## 4163              Friends, relatives      Independent                    No
## 4164              Friends, relatives      Independent                    No
## 4165                          Others      Independent                    No
## 4166              Friends, relatives      Independent                    No
## 4167     Travel agent, tour operator     Package Tour                   Yes
## 4168                          Others      Independent                    No
## 4169              Friends, relatives      Independent                    No
## 4170              Friends, relatives      Independent                    No
## 4171     Travel agent, tour operator     Package Tour                   Yes
## 4172     Travel agent, tour operator     Package Tour                   Yes
## 4173              Friends, relatives      Independent                    No
## 4174                          Others      Independent                    No
## 4175                  Radio, TV, Web      Independent                    No
## 4176     Travel agent, tour operator     Package Tour                    No
## 4177                  Radio, TV, Web     Package Tour                    No
## 4178     Travel agent, tour operator      Independent                    No
## 4179 Newspaper, magazines, brochures      Independent                    No
## 4180     Travel agent, tour operator      Independent                   Yes
## 4181         Tanzania Mission Abroad     Package Tour                   Yes
## 4182     Travel agent, tour operator     Package Tour                   Yes
## 4183              Friends, relatives      Independent                    No
## 4184     Travel agent, tour operator     Package Tour                    No
## 4185              Friends, relatives     Package Tour                    No
## 4186                  Radio, TV, Web      Independent                    No
## 4187                  Radio, TV, Web     Package Tour                   Yes
## 4188              Friends, relatives      Independent                    No
## 4189     Travel agent, tour operator      Independent                    No
## 4190              Friends, relatives      Independent                    No
## 4191     Travel agent, tour operator     Package Tour                   Yes
## 4192              Friends, relatives     Package Tour                   Yes
## 4193              Friends, relatives      Independent                    No
## 4194     Travel agent, tour operator     Package Tour                    No
## 4195              Friends, relatives     Package Tour                   Yes
## 4196     Travel agent, tour operator     Package Tour                   Yes
## 4197                      Trade fair      Independent                    No
## 4198              Friends, relatives      Independent                    No
## 4199     Travel agent, tour operator     Package Tour                    No
## 4200     Travel agent, tour operator      Independent                    No
## 4201         Tanzania Mission Abroad      Independent                    No
## 4202         Tanzania Mission Abroad      Independent                    No
## 4203              Friends, relatives      Independent                    No
## 4204              Friends, relatives     Package Tour                    No
## 4205              Friends, relatives      Independent                    No
## 4206     Travel agent, tour operator      Independent                    No
## 4207     Travel agent, tour operator     Package Tour                   Yes
## 4209              Friends, relatives     Package Tour                   Yes
## 4211              Friends, relatives      Independent                    No
## 4212              Friends, relatives      Independent                    No
## 4213              Friends, relatives      Independent                    No
## 4214              Friends, relatives      Independent                    No
## 4215              Friends, relatives      Independent                    No
## 4216     Travel agent, tour operator      Independent                    No
## 4217 Newspaper, magazines, brochures      Independent                    No
## 4218              Friends, relatives      Independent                   Yes
## 4220     Travel agent, tour operator     Package Tour                   Yes
## 4221     Travel agent, tour operator     Package Tour                   Yes
## 4222              Friends, relatives      Independent                    No
## 4223                          Others      Independent                    No
## 4224              Friends, relatives      Independent                    No
## 4225              Friends, relatives      Independent                    No
## 4226              Friends, relatives      Independent                    No
## 4227     Travel agent, tour operator      Independent                    No
## 4228     Travel agent, tour operator      Independent                    No
## 4229     Travel agent, tour operator     Package Tour                   Yes
## 4230              Friends, relatives      Independent                    No
## 4232                  Radio, TV, Web     Package Tour                    No
## 4233              Friends, relatives      Independent                    No
## 4234     Travel agent, tour operator     Package Tour                    No
## 4235     Travel agent, tour operator     Package Tour                    No
## 4236     Travel agent, tour operator     Package Tour                   Yes
## 4237 Newspaper, magazines, brochures      Independent                    No
## 4238                          Others      Independent                    No
## 4239                  Radio, TV, Web      Independent                    No
## 4240     Travel agent, tour operator      Independent                    No
## 4241     Travel agent, tour operator     Package Tour                   Yes
## 4242              Friends, relatives      Independent                    No
## 4243     Travel agent, tour operator      Independent                    No
## 4244     Travel agent, tour operator      Independent                    No
## 4245     Travel agent, tour operator     Package Tour                   Yes
## 4246     Travel agent, tour operator     Package Tour                    No
## 4247                  Radio, TV, Web     Package Tour                   Yes
## 4248                          Others     Package Tour                   Yes
## 4249     Travel agent, tour operator     Package Tour                   Yes
## 4250              Friends, relatives      Independent                    No
## 4251              Friends, relatives      Independent                    No
## 4252              Friends, relatives     Package Tour                   Yes
## 4253                          Others      Independent                    No
## 4254              Friends, relatives      Independent                    No
## 4255              Friends, relatives      Independent                    No
## 4257     Travel agent, tour operator     Package Tour                    No
## 4258     Travel agent, tour operator     Package Tour                    No
## 4259                          Others      Independent                    No
## 4260     Travel agent, tour operator     Package Tour                   Yes
## 4261     Travel agent, tour operator     Package Tour                   Yes
## 4262     Travel agent, tour operator     Package Tour                   Yes
## 4263                  Radio, TV, Web     Package Tour                    No
## 4264              Friends, relatives      Independent                    No
## 4265     Travel agent, tour operator     Package Tour                   Yes
## 4266              Friends, relatives      Independent                    No
## 4267                          Others      Independent                    No
## 4268     Travel agent, tour operator     Package Tour                    No
## 4269              Friends, relatives     Package Tour                    No
## 4270     Travel agent, tour operator     Package Tour                   Yes
## 4271              Friends, relatives      Independent                    No
## 4272              Friends, relatives      Independent                    No
## 4273     Travel agent, tour operator     Package Tour                   Yes
## 4275              Friends, relatives      Independent                    No
## 4276     Travel agent, tour operator     Package Tour                   Yes
## 4277     Travel agent, tour operator      Independent                    No
## 4278     Travel agent, tour operator     Package Tour                    No
## 4279     Travel agent, tour operator     Package Tour                   Yes
## 4280     Travel agent, tour operator     Package Tour                   Yes
## 4282     Travel agent, tour operator      Independent                    No
## 4283              Friends, relatives      Independent                    No
## 4285              Friends, relatives      Independent                    No
## 4286              Friends, relatives      Independent                    No
## 4287              Friends, relatives     Package Tour                    No
## 4288     Travel agent, tour operator     Package Tour                   Yes
## 4289                          Others      Independent                    No
## 4290     Travel agent, tour operator     Package Tour                   Yes
## 4291                          Others      Independent                    No
## 4292 Newspaper, magazines, brochures      Independent                    No
## 4293                          Others      Independent                    No
## 4294              Friends, relatives      Independent                    No
## 4295     Travel agent, tour operator     Package Tour                    No
## 4296     Travel agent, tour operator     Package Tour                    No
## 4297              Friends, relatives      Independent                    No
## 4298              Friends, relatives     Package Tour                   Yes
## 4299              Friends, relatives      Independent                    No
## 4300     Travel agent, tour operator     Package Tour                   Yes
## 4301              Friends, relatives      Independent                    No
## 4302     Travel agent, tour operator     Package Tour                   Yes
## 4303              Friends, relatives      Independent                    No
## 4304     Travel agent, tour operator     Package Tour                   Yes
## 4305     Travel agent, tour operator     Package Tour                    No
## 4306 Newspaper, magazines, brochures      Independent                    No
## 4307     Travel agent, tour operator     Package Tour                   Yes
## 4308              Friends, relatives      Independent                    No
## 4309              Friends, relatives      Independent                    No
## 4310                          Others      Independent                    No
## 4311                          Others      Independent                    No
## 4312              Friends, relatives      Independent                    No
## 4313                  Radio, TV, Web     Package Tour                    No
## 4314              Friends, relatives      Independent                    No
## 4315     Travel agent, tour operator     Package Tour                   Yes
## 4316     Travel agent, tour operator      Independent                    No
## 4317              Friends, relatives      Independent                    No
## 4318     Travel agent, tour operator     Package Tour                   Yes
## 4319 Newspaper, magazines, brochures     Package Tour                   Yes
## 4320     Travel agent, tour operator     Package Tour                    No
## 4321     Travel agent, tour operator     Package Tour                   Yes
## 4322     Travel agent, tour operator     Package Tour                    No
## 4323     Travel agent, tour operator     Package Tour                   Yes
## 4324     Travel agent, tour operator     Package Tour                    No
## 4325     Travel agent, tour operator     Package Tour                   Yes
## 4326              Inflight magazines     Package Tour                    No
## 4327              Friends, relatives      Independent                    No
## 4328     Travel agent, tour operator     Package Tour                    No
## 4329                          Others      Independent                    No
## 4330              Friends, relatives      Independent                    No
## 4331     Travel agent, tour operator     Package Tour                    No
## 4332                          Others      Independent                    No
## 4333              Friends, relatives      Independent                    No
## 4334     Travel agent, tour operator     Package Tour                   Yes
## 4335              Friends, relatives     Package Tour                    No
## 4336              Friends, relatives      Independent                    No
## 4337              Friends, relatives      Independent                    No
## 4338              Friends, relatives      Independent                    No
## 4339     Travel agent, tour operator     Package Tour                   Yes
## 4340 Newspaper, magazines, brochures     Package Tour                   Yes
## 4341 Newspaper, magazines, brochures     Package Tour                   Yes
## 4342              Friends, relatives      Independent                    No
## 4343                  Radio, TV, Web      Independent                    No
## 4344              Friends, relatives      Independent                    No
## 4345                  Radio, TV, Web      Independent                    No
## 4346                      Trade fair      Independent                    No
## 4347                          Others     Package Tour                   Yes
## 4348              Friends, relatives      Independent                    No
## 4349              Friends, relatives      Independent                    No
## 4350              Friends, relatives      Independent                    No
## 4351     Travel agent, tour operator      Independent                    No
## 4352 Newspaper, magazines, brochures     Package Tour                   Yes
## 4353              Friends, relatives      Independent                    No
## 4354     Travel agent, tour operator      Independent                    No
## 4355                          Others      Independent                    No
## 4356                          Others      Independent                    No
## 4357 Newspaper, magazines, brochures      Independent                    No
## 4358     Travel agent, tour operator     Package Tour                    No
## 4359     Travel agent, tour operator      Independent                    No
## 4360     Travel agent, tour operator     Package Tour                   Yes
## 4361     Travel agent, tour operator     Package Tour                   Yes
## 4362     Travel agent, tour operator     Package Tour                    No
## 4363                          Others     Package Tour                    No
## 4364     Travel agent, tour operator     Package Tour                    No
## 4365              Friends, relatives      Independent                    No
## 4366              Friends, relatives      Independent                    No
## 4367              Friends, relatives      Independent                    No
## 4368     Travel agent, tour operator     Package Tour                    No
## 4369                  Radio, TV, Web     Package Tour                   Yes
## 4370     Travel agent, tour operator     Package Tour                    No
## 4371                          Others      Independent                    No
## 4372                  Radio, TV, Web      Independent                    No
## 4373              Friends, relatives      Independent                    No
## 4374     Travel agent, tour operator      Independent                    No
## 4375              Friends, relatives      Independent                    No
## 4376     Travel agent, tour operator     Package Tour                   Yes
## 4377     Travel agent, tour operator     Package Tour                    No
## 4378     Travel agent, tour operator     Package Tour                    No
## 4379              Friends, relatives      Independent                    No
## 4380              Friends, relatives      Independent                    No
## 4381              Friends, relatives      Independent                    No
## 4383     Travel agent, tour operator     Package Tour                   Yes
## 4384     Travel agent, tour operator     Package Tour                   Yes
## 4385     Travel agent, tour operator     Package Tour                   Yes
## 4386 Newspaper, magazines, brochures     Package Tour                   Yes
## 4387 Newspaper, magazines, brochures      Independent                    No
## 4388              Friends, relatives     Package Tour                   Yes
## 4389              Friends, relatives      Independent                    No
## 4390     Travel agent, tour operator     Package Tour                   Yes
## 4391                  Radio, TV, Web     Package Tour                   Yes
## 4392              Friends, relatives      Independent                    No
## 4393              Friends, relatives      Independent                    No
## 4394     Travel agent, tour operator     Package Tour                    No
## 4395 Newspaper, magazines, brochures     Package Tour                    No
## 4396              Friends, relatives      Independent                    No
## 4397     Travel agent, tour operator     Package Tour                    No
## 4398     Travel agent, tour operator     Package Tour                   Yes
## 4400     Travel agent, tour operator     Package Tour                   Yes
## 4401     Travel agent, tour operator     Package Tour                    No
## 4402 Newspaper, magazines, brochures      Independent                    No
## 4403     Travel agent, tour operator     Package Tour                   Yes
## 4404                          Others      Independent                    No
## 4405     Travel agent, tour operator     Package Tour                    No
## 4406     Travel agent, tour operator     Package Tour                    No
## 4407     Travel agent, tour operator     Package Tour                   Yes
## 4408                  Radio, TV, Web      Independent                    No
## 4409              Friends, relatives      Independent                    No
## 4410     Travel agent, tour operator     Package Tour                   Yes
## 4411     Travel agent, tour operator     Package Tour                   Yes
## 4412     Travel agent, tour operator     Package Tour                   Yes
## 4413     Travel agent, tour operator     Package Tour                   Yes
## 4414                  Radio, TV, Web      Independent                    No
## 4415              Friends, relatives      Independent                    No
## 4416              Friends, relatives      Independent                    No
## 4417 Newspaper, magazines, brochures      Independent                    No
## 4419     Travel agent, tour operator      Independent                    No
## 4420     Travel agent, tour operator     Package Tour                    No
## 4421     Travel agent, tour operator     Package Tour                    No
## 4422              Friends, relatives     Package Tour                   Yes
## 4423 Newspaper, magazines, brochures     Package Tour                   Yes
## 4424     Travel agent, tour operator      Independent                    No
## 4425 Newspaper, magazines, brochures     Package Tour                   Yes
## 4426     Travel agent, tour operator     Package Tour                   Yes
## 4427     Travel agent, tour operator     Package Tour                   Yes
## 4428              Friends, relatives      Independent                    No
## 4429     Travel agent, tour operator     Package Tour                   Yes
## 4430     Travel agent, tour operator     Package Tour                    No
## 4431     Travel agent, tour operator     Package Tour                   Yes
## 4432     Travel agent, tour operator     Package Tour                    No
## 4433              Friends, relatives     Package Tour                    No
## 4434     Travel agent, tour operator     Package Tour                   Yes
## 4435 Newspaper, magazines, brochures      Independent                    No
## 4436     Travel agent, tour operator     Package Tour                   Yes
## 4437     Travel agent, tour operator     Package Tour                    No
## 4438 Newspaper, magazines, brochures      Independent                    No
## 4439     Travel agent, tour operator     Package Tour                   Yes
## 4440                          Others      Independent                    No
## 4441                  Radio, TV, Web      Independent                    No
## 4442              Friends, relatives     Package Tour                   Yes
## 4443     Travel agent, tour operator      Independent                    No
## 4444 Newspaper, magazines, brochures      Independent                    No
## 4445                          Others      Independent                    No
## 4446     Travel agent, tour operator     Package Tour                    No
## 4447     Travel agent, tour operator     Package Tour                   Yes
## 4448              Friends, relatives      Independent                    No
## 4449     Travel agent, tour operator      Independent                    No
## 4450              Friends, relatives      Independent                    No
## 4451              Friends, relatives      Independent                    No
## 4452     Travel agent, tour operator     Package Tour                   Yes
## 4453              Friends, relatives      Independent                    No
## 4454     Travel agent, tour operator     Package Tour                    No
## 4455     Travel agent, tour operator      Independent                    No
## 4456              Friends, relatives      Independent                    No
## 4457                          Others      Independent                    No
## 4458              Inflight magazines      Independent                    No
## 4459 Newspaper, magazines, brochures     Package Tour                    No
## 4460     Travel agent, tour operator      Independent                    No
## 4461     Travel agent, tour operator     Package Tour                   Yes
## 4462     Travel agent, tour operator     Package Tour                   Yes
## 4463     Travel agent, tour operator      Independent                    No
## 4464 Newspaper, magazines, brochures      Independent                    No
## 4465     Travel agent, tour operator     Package Tour                   Yes
## 4466                          Others      Independent                    No
## 4467     Travel agent, tour operator     Package Tour                    No
## 4468              Friends, relatives      Independent                    No
## 4469     Travel agent, tour operator     Package Tour                   Yes
## 4471     Travel agent, tour operator     Package Tour                    No
## 4472                  Radio, TV, Web     Package Tour                   Yes
## 4473     Travel agent, tour operator     Package Tour                   Yes
## 4475              Friends, relatives      Independent                    No
## 4476     Travel agent, tour operator      Independent                    No
## 4477              Friends, relatives      Independent                    No
## 4478              Friends, relatives      Independent                    No
## 4479     Travel agent, tour operator     Package Tour                   Yes
## 4480              Friends, relatives      Independent                    No
## 4481     Travel agent, tour operator      Independent                    No
## 4482              Friends, relatives      Independent                    No
## 4483              Friends, relatives      Independent                    No
## 4485              Friends, relatives      Independent                    No
## 4486              Friends, relatives      Independent                    No
## 4487     Travel agent, tour operator      Independent                    No
## 4488     Travel agent, tour operator     Package Tour                   Yes
## 4489     Travel agent, tour operator     Package Tour                   Yes
## 4490     Travel agent, tour operator      Independent                    No
## 4491     Travel agent, tour operator     Package Tour                   Yes
## 4492     Travel agent, tour operator     Package Tour                    No
## 4493     Travel agent, tour operator     Package Tour                   Yes
## 4494     Travel agent, tour operator      Independent                    No
## 4495     Travel agent, tour operator      Independent                    No
## 4496              Friends, relatives      Independent                    No
## 4497              Friends, relatives     Package Tour                   Yes
## 4498              Friends, relatives      Independent                    No
## 4499     Travel agent, tour operator     Package Tour                    No
## 4500              Friends, relatives     Package Tour                    No
## 4501                          Others     Package Tour                    No
## 4502     Travel agent, tour operator     Package Tour                   Yes
## 4504              Friends, relatives      Independent                    No
## 4505 Newspaper, magazines, brochures      Independent                    No
## 4506     Travel agent, tour operator      Independent                    No
## 4507 Newspaper, magazines, brochures     Package Tour                   Yes
## 4508     Travel agent, tour operator     Package Tour                   Yes
## 4509              Friends, relatives     Package Tour                   Yes
## 4510     Travel agent, tour operator     Package Tour                   Yes
## 4511                  Radio, TV, Web      Independent                    No
## 4512     Travel agent, tour operator     Package Tour                   Yes
## 4513                  Radio, TV, Web     Package Tour                   Yes
## 4514              Friends, relatives     Package Tour                    No
## 4515     Travel agent, tour operator     Package Tour                   Yes
## 4516     Travel agent, tour operator     Package Tour                   Yes
## 4517              Friends, relatives      Independent                    No
## 4518     Travel agent, tour operator     Package Tour                    No
## 4519              Friends, relatives      Independent                    No
## 4520 Newspaper, magazines, brochures      Independent                    No
## 4521                  Radio, TV, Web      Independent                    No
## 4522     Travel agent, tour operator     Package Tour                   Yes
## 4523     Travel agent, tour operator     Package Tour                   Yes
## 4524     Travel agent, tour operator     Package Tour                   Yes
## 4525                          Others     Package Tour                   Yes
## 4526              Friends, relatives      Independent                    No
## 4528     Travel agent, tour operator     Package Tour                   Yes
## 4529                  Radio, TV, Web      Independent                    No
## 4530              Friends, relatives      Independent                    No
## 4531         Tanzania Mission Abroad      Independent                    No
## 4532              Friends, relatives      Independent                    No
## 4533              Inflight magazines      Independent                    No
## 4534     Travel agent, tour operator     Package Tour                   Yes
## 4535 Newspaper, magazines, brochures     Package Tour                    No
## 4536              Friends, relatives      Independent                    No
## 4537     Travel agent, tour operator     Package Tour                   Yes
## 4538     Travel agent, tour operator     Package Tour                   Yes
## 4539 Newspaper, magazines, brochures     Package Tour                   Yes
## 4540              Friends, relatives      Independent                    No
## 4541              Friends, relatives      Independent                    No
## 4542              Friends, relatives      Independent                    No
## 4543     Travel agent, tour operator     Package Tour                    No
## 4545              Friends, relatives      Independent                    No
## 4546     Travel agent, tour operator     Package Tour                    No
## 4547              Friends, relatives      Independent                    No
## 4548         Tanzania Mission Abroad      Independent                    No
## 4549     Travel agent, tour operator     Package Tour                   Yes
## 4550              Friends, relatives      Independent                    No
## 4551              Friends, relatives      Independent                    No
## 4552     Travel agent, tour operator     Package Tour                   Yes
## 4553              Friends, relatives      Independent                    No
## 4554              Friends, relatives      Independent                    No
## 4555     Travel agent, tour operator     Package Tour                   Yes
## 4556     Travel agent, tour operator     Package Tour                   Yes
## 4557     Travel agent, tour operator     Package Tour                   Yes
## 4558     Travel agent, tour operator     Package Tour                   Yes
## 4559                  Radio, TV, Web      Independent                    No
## 4560     Travel agent, tour operator     Package Tour                   Yes
## 4561              Friends, relatives      Independent                    No
## 4562              Friends, relatives      Independent                    No
## 4563              Friends, relatives     Package Tour                   Yes
## 4564     Travel agent, tour operator     Package Tour                   Yes
## 4565 Newspaper, magazines, brochures     Package Tour                   Yes
## 4566     Travel agent, tour operator     Package Tour                   Yes
## 4567     Travel agent, tour operator     Package Tour                   Yes
## 4568     Travel agent, tour operator     Package Tour                    No
## 4569              Friends, relatives      Independent                    No
## 4570                          Others      Independent                    No
## 4571              Friends, relatives      Independent                    No
## 4572                          Others      Independent                    No
## 4573     Travel agent, tour operator     Package Tour                   Yes
## 4574     Travel agent, tour operator     Package Tour                    No
## 4575     Travel agent, tour operator     Package Tour                    No
## 4577              Friends, relatives      Independent                    No
## 4578 Newspaper, magazines, brochures      Independent                    No
## 4579                          Others     Package Tour                    No
## 4580              Friends, relatives      Independent                    No
## 4581     Travel agent, tour operator      Independent                    No
## 4582 Newspaper, magazines, brochures      Independent                    No
## 4583     Travel agent, tour operator     Package Tour                   Yes
## 4584              Friends, relatives      Independent                    No
## 4585 Newspaper, magazines, brochures     Package Tour                   Yes
## 4586                  Radio, TV, Web      Independent                    No
## 4587     Travel agent, tour operator     Package Tour                   Yes
## 4588     Travel agent, tour operator     Package Tour                    No
## 4589     Travel agent, tour operator     Package Tour                   Yes
## 4590                  Radio, TV, Web      Independent                    No
## 4591     Travel agent, tour operator     Package Tour                   Yes
## 4592                      Trade fair     Package Tour                   Yes
## 4593     Travel agent, tour operator     Package Tour                   Yes
## 4594     Travel agent, tour operator     Package Tour                   Yes
## 4595     Travel agent, tour operator     Package Tour                   Yes
## 4596                          Others      Independent                    No
## 4597              Friends, relatives      Independent                    No
## 4598     Travel agent, tour operator     Package Tour                   Yes
## 4599              Friends, relatives      Independent                    No
## 4600     Travel agent, tour operator     Package Tour                   Yes
## 4601                          Others      Independent                    No
## 4602              Friends, relatives      Independent                    No
## 4603     Travel agent, tour operator     Package Tour                    No
## 4604                  Radio, TV, Web     Package Tour                    No
## 4605              Friends, relatives     Package Tour                   Yes
## 4606              Friends, relatives      Independent                    No
## 4607     Travel agent, tour operator      Independent                    No
## 4608     Travel agent, tour operator     Package Tour                    No
## 4609              Friends, relatives      Independent                    No
## 4610              Friends, relatives      Independent                    No
## 4611     Travel agent, tour operator     Package Tour                   Yes
## 4612 Newspaper, magazines, brochures     Package Tour                   Yes
## 4615     Travel agent, tour operator     Package Tour                   Yes
## 4616     Travel agent, tour operator     Package Tour                   Yes
## 4617              Friends, relatives      Independent                    No
## 4618 Newspaper, magazines, brochures     Package Tour                   Yes
## 4619     Travel agent, tour operator     Package Tour                    No
## 4620     Travel agent, tour operator     Package Tour                    No
## 4621              Friends, relatives      Independent                    No
## 4622              Friends, relatives      Independent                    No
## 4623              Friends, relatives      Independent                    No
## 4624                  Radio, TV, Web     Package Tour                    No
## 4625              Friends, relatives      Independent                    No
## 4626     Travel agent, tour operator      Independent                    No
## 4627     Travel agent, tour operator     Package Tour                   Yes
## 4628                          Others      Independent                    No
## 4629     Travel agent, tour operator      Independent                    No
## 4630     Travel agent, tour operator     Package Tour                   Yes
## 4631 Newspaper, magazines, brochures      Independent                    No
## 4633              Friends, relatives      Independent                    No
## 4634              Friends, relatives      Independent                    No
## 4635         Tanzania Mission Abroad      Independent                    No
## 4636     Travel agent, tour operator     Package Tour                   Yes
## 4637              Friends, relatives      Independent                    No
## 4638     Travel agent, tour operator     Package Tour                   Yes
## 4639     Travel agent, tour operator     Package Tour                   Yes
## 4640 Newspaper, magazines, brochures     Package Tour                    No
## 4641              Friends, relatives      Independent                    No
## 4642     Travel agent, tour operator     Package Tour                   Yes
## 4643     Travel agent, tour operator     Package Tour                   Yes
## 4644              Friends, relatives     Package Tour                   Yes
## 4645     Travel agent, tour operator      Independent                    No
## 4646     Travel agent, tour operator     Package Tour                   Yes
## 4647     Travel agent, tour operator     Package Tour                   Yes
## 4648     Travel agent, tour operator     Package Tour                   Yes
## 4649     Travel agent, tour operator      Independent                    No
## 4650                  Radio, TV, Web     Package Tour                   Yes
## 4651              Friends, relatives      Independent                    No
## 4652     Travel agent, tour operator     Package Tour                   Yes
## 4654              Friends, relatives      Independent                    No
## 4655              Friends, relatives      Independent                    No
## 4657                          Others      Independent                    No
## 4658     Travel agent, tour operator     Package Tour                   Yes
## 4660     Travel agent, tour operator     Package Tour                   Yes
## 4661     Travel agent, tour operator      Independent                    No
## 4662         Tanzania Mission Abroad      Independent                    No
## 4663              Friends, relatives     Package Tour                   Yes
## 4664              Friends, relatives      Independent                    No
## 4665                          Others      Independent                    No
## 4666     Travel agent, tour operator     Package Tour                   Yes
## 4667     Travel agent, tour operator     Package Tour                   Yes
## 4670                          Others      Independent                    No
## 4671     Travel agent, tour operator     Package Tour                    No
## 4672              Friends, relatives      Independent                    No
## 4673                  Radio, TV, Web     Package Tour                   Yes
## 4674     Travel agent, tour operator     Package Tour                   Yes
## 4675              Friends, relatives      Independent                    No
## 4676     Travel agent, tour operator     Package Tour                    No
## 4677         Tanzania Mission Abroad      Independent                    No
## 4678     Travel agent, tour operator     Package Tour                    No
## 4679              Friends, relatives     Package Tour                   Yes
## 4680              Friends, relatives      Independent                    No
## 4681              Friends, relatives      Independent                    No
## 4682                  Radio, TV, Web      Independent                    No
## 4683              Friends, relatives      Independent                    No
## 4684     Travel agent, tour operator     Package Tour                   Yes
## 4685 Newspaper, magazines, brochures      Independent                    No
## 4687                          Others     Package Tour                   Yes
## 4688     Travel agent, tour operator     Package Tour                   Yes
## 4689     Travel agent, tour operator     Package Tour                   Yes
## 4690              Friends, relatives     Package Tour                   Yes
## 4691              Friends, relatives      Independent                    No
## 4692     Travel agent, tour operator     Package Tour                   Yes
## 4693              Friends, relatives      Independent                    No
## 4694 Newspaper, magazines, brochures      Independent                    No
## 4695                  Radio, TV, Web     Package Tour                    No
## 4696     Travel agent, tour operator     Package Tour                   Yes
## 4697     Travel agent, tour operator     Package Tour                    No
## 4698                          Others      Independent                    No
## 4699              Friends, relatives      Independent                    No
## 4700     Travel agent, tour operator      Independent                    No
## 4701     Travel agent, tour operator     Package Tour                   Yes
## 4703              Friends, relatives      Independent                    No
## 4704              Friends, relatives     Package Tour                   Yes
## 4705     Travel agent, tour operator     Package Tour                   Yes
## 4706              Friends, relatives      Independent                    No
## 4707     Travel agent, tour operator     Package Tour                   Yes
## 4708              Friends, relatives      Independent                    No
## 4709              Friends, relatives      Independent                    No
## 4710              Friends, relatives      Independent                    No
## 4712                          Others     Package Tour                   Yes
## 4713     Travel agent, tour operator     Package Tour                   Yes
## 4714              Friends, relatives      Independent                    No
## 4715     Travel agent, tour operator     Package Tour                   Yes
## 4716         Tanzania Mission Abroad      Independent                    No
## 4717              Friends, relatives      Independent                    No
## 4718                          Others      Independent                    No
## 4719              Friends, relatives      Independent                    No
## 4720     Travel agent, tour operator     Package Tour                    No
## 4721     Travel agent, tour operator     Package Tour                   Yes
## 4722     Travel agent, tour operator     Package Tour                   Yes
## 4723     Travel agent, tour operator     Package Tour                   Yes
## 4724              Friends, relatives      Independent                    No
## 4725 Newspaper, magazines, brochures     Package Tour                   Yes
## 4727              Friends, relatives     Package Tour                   Yes
## 4728                          Others      Independent                    No
## 4729     Travel agent, tour operator     Package Tour                   Yes
## 4731                          Others      Independent                    No
## 4732 Newspaper, magazines, brochures      Independent                    No
## 4733              Friends, relatives      Independent                    No
## 4734     Travel agent, tour operator     Package Tour                   Yes
## 4735     Travel agent, tour operator     Package Tour                    No
## 4736              Friends, relatives      Independent                    No
## 4737     Travel agent, tour operator     Package Tour                   Yes
## 4738              Friends, relatives      Independent                    No
## 4739     Travel agent, tour operator     Package Tour                   Yes
## 4740     Travel agent, tour operator     Package Tour                    No
## 4741     Travel agent, tour operator      Independent                    No
## 4742                  Radio, TV, Web      Independent                    No
## 4743 Newspaper, magazines, brochures      Independent                    No
## 4744                          Others      Independent                    No
## 4745     Travel agent, tour operator     Package Tour                    No
## 4746     Travel agent, tour operator     Package Tour                   Yes
## 4748              Friends, relatives      Independent                    No
## 4749     Travel agent, tour operator     Package Tour                    No
## 4750              Friends, relatives      Independent                    No
## 4751 Newspaper, magazines, brochures      Independent                    No
## 4752 Newspaper, magazines, brochures      Independent                    No
## 4754 Newspaper, magazines, brochures      Independent                    No
## 4755     Travel agent, tour operator     Package Tour                    No
## 4756 Newspaper, magazines, brochures     Package Tour                    No
## 4757     Travel agent, tour operator     Package Tour                   Yes
## 4759              Friends, relatives      Independent                    No
## 4760                          Others      Independent                    No
## 4761              Friends, relatives      Independent                    No
## 4762              Friends, relatives     Package Tour                   Yes
## 4763              Friends, relatives      Independent                    No
## 4764                  Radio, TV, Web      Independent                    No
## 4765 Newspaper, magazines, brochures      Independent                    No
## 4766     Travel agent, tour operator     Package Tour                    No
## 4767 Newspaper, magazines, brochures      Independent                    No
## 4768     Travel agent, tour operator      Independent                    No
## 4769              Friends, relatives      Independent                    No
## 4770     Travel agent, tour operator     Package Tour                   Yes
## 4771     Travel agent, tour operator     Package Tour                   Yes
## 4773                          Others     Package Tour                   Yes
## 4774     Travel agent, tour operator     Package Tour                   Yes
## 4775              Friends, relatives      Independent                    No
## 4776                  Radio, TV, Web      Independent                    No
## 4777 Newspaper, magazines, brochures     Package Tour                   Yes
## 4778     Travel agent, tour operator     Package Tour                   Yes
## 4779                          Others      Independent                    No
## 4780              Friends, relatives      Independent                    No
## 4781     Travel agent, tour operator     Package Tour                    No
## 4782                  Radio, TV, Web     Package Tour                   Yes
## 4783              Friends, relatives      Independent                    No
## 4784     Travel agent, tour operator     Package Tour                   Yes
## 4785              Friends, relatives      Independent                    No
## 4787     Travel agent, tour operator      Independent                    No
## 4788                          Others     Package Tour                   Yes
## 4789                          Others      Independent                    No
## 4790     Travel agent, tour operator     Package Tour                    No
## 4791     Travel agent, tour operator      Independent                    No
## 4792     Travel agent, tour operator      Independent                    No
## 4793                      Trade fair      Independent                    No
## 4794              Friends, relatives      Independent                    No
## 4795     Travel agent, tour operator     Package Tour                    No
## 4796              Friends, relatives      Independent                    No
## 4797     Travel agent, tour operator     Package Tour                    No
## 4798              Friends, relatives      Independent                    No
## 4799              Friends, relatives      Independent                    No
## 4800 Newspaper, magazines, brochures     Package Tour                   Yes
## 4801                          Others     Package Tour                   Yes
## 4802     Travel agent, tour operator     Package Tour                   Yes
## 4803     Travel agent, tour operator     Package Tour                    No
## 4804              Friends, relatives     Package Tour                   Yes
## 4805     Travel agent, tour operator     Package Tour                    No
## 4806              Friends, relatives      Independent                    No
## 4807              Friends, relatives      Independent                    No
## 4808              Friends, relatives     Package Tour                    No
## 4809              Friends, relatives      Independent                    No
## 4810 Newspaper, magazines, brochures      Independent                    No
## 4811              Friends, relatives      Independent                    No
## 4812     Travel agent, tour operator     Package Tour                   Yes
## 4813                          Others      Independent                    No
## 4815     Travel agent, tour operator      Independent                    No
## 4817     Travel agent, tour operator     Package Tour                    No
## 4818              Friends, relatives     Package Tour                    No
## 4820     Travel agent, tour operator     Package Tour                   Yes
## 4821     Travel agent, tour operator     Package Tour                   Yes
## 4822     Travel agent, tour operator     Package Tour                   Yes
## 4823                          Others      Independent                    No
## 4824                      Trade fair      Independent                    No
## 4825                          Others      Independent                    No
## 4826                  Radio, TV, Web     Package Tour                    No
## 4827     Travel agent, tour operator      Independent                    No
## 4828     Travel agent, tour operator     Package Tour                    No
## 4829              Friends, relatives      Independent                    No
## 4830     Travel agent, tour operator     Package Tour                   Yes
## 4831     Travel agent, tour operator     Package Tour                    No
## 4832              Inflight magazines      Independent                    No
## 4833     Travel agent, tour operator     Package Tour                   Yes
## 4834              Friends, relatives      Independent                    No
## 4835                  Radio, TV, Web     Package Tour                   Yes
## 4836              Friends, relatives      Independent                    No
## 4837                          Others      Independent                    No
## 4838     Travel agent, tour operator      Independent                    No
## 4839              Friends, relatives     Package Tour                   Yes
## 4840                  Radio, TV, Web      Independent                    No
## 4841              Friends, relatives      Independent                    No
## 4842     Travel agent, tour operator     Package Tour                   Yes
## 4843     Travel agent, tour operator     Package Tour                   Yes
## 4844              Friends, relatives      Independent                    No
## 4845              Friends, relatives      Independent                    No
## 4846     Travel agent, tour operator     Package Tour                   Yes
## 4847     Travel agent, tour operator     Package Tour                   Yes
## 4848              Friends, relatives     Package Tour                   Yes
## 4849              Friends, relatives      Independent                    No
## 4850     Travel agent, tour operator      Independent                    No
## 4851              Friends, relatives      Independent                    No
## 4852              Friends, relatives      Independent                    No
## 4853              Friends, relatives     Package Tour                    No
## 4854     Travel agent, tour operator      Independent                    No
## 4855 Newspaper, magazines, brochures      Independent                    No
##      package_accomodation package_food package_transport_tz package_sightseeing
## 1                     Yes          Yes                  Yes                  No
## 2                     Yes          Yes                  Yes                  No
## 3                     Yes          Yes                  Yes                 Yes
## 4                      No           No                   No                  No
## 5                     Yes          Yes                  Yes                  No
## 6                     Yes          Yes                   No                  No
## 7                      No           No                   No                  No
## 8                      No           No                   No                  No
## 9                      No           No                   No                  No
## 10                    Yes           No                  Yes                 Yes
## 11                    Yes          Yes                  Yes                 Yes
## 12                    Yes           No                  Yes                 Yes
## 13                    Yes           No                  Yes                  No
## 14                    Yes           No                   No                 Yes
## 15                     No           No                   No                  No
## 16                    Yes          Yes                  Yes                 Yes
## 17                     No           No                   No                  No
## 18                    Yes          Yes                   No                 Yes
## 19                    Yes          Yes                   No                 Yes
## 20                     No           No                   No                  No
## 21                     No           No                   No                  No
## 22                     No           No                   No                  No
## 23                     No           No                   No                  No
## 24                    Yes          Yes                  Yes                 Yes
## 26                    Yes          Yes                  Yes                 Yes
## 27                     No           No                   No                  No
## 28                     No           No                   No                  No
## 29                     No           No                   No                  No
## 30                    Yes          Yes                   No                 Yes
## 31                    Yes          Yes                   No                  No
## 32                     No           No                   No                  No
## 33                    Yes          Yes                  Yes                  No
## 34                     No           No                   No                  No
## 35                    Yes          Yes                   No                  No
## 36                    Yes          Yes                  Yes                 Yes
## 37                     No           No                   No                  No
## 38                    Yes          Yes                  Yes                  No
## 39                     No           No                   No                  No
## 40                    Yes           No                  Yes                 Yes
## 41                     No           No                   No                  No
## 42                     No           No                   No                  No
## 43                     No           No                   No                  No
## 44                     No           No                   No                  No
## 45                    Yes           No                   No                  No
## 46                     No           No                   No                  No
## 47                     No           No                   No                  No
## 48                    Yes          Yes                  Yes                 Yes
## 49                     No           No                   No                  No
## 50                    Yes          Yes                  Yes                 Yes
## 51                     No           No                   No                  No
## 52                     No           No                   No                  No
## 53                    Yes          Yes                  Yes                 Yes
## 54                     No           No                   No                  No
## 55                    Yes          Yes                   No                  No
## 56                     No           No                   No                  No
## 57                    Yes          Yes                  Yes                 Yes
## 58                     No           No                   No                  No
## 59                    Yes          Yes                  Yes                 Yes
## 60                     No           No                   No                  No
## 61                     No           No                   No                  No
## 62                    Yes          Yes                  Yes                 Yes
## 63                     No           No                   No                  No
## 64                    Yes          Yes                   No                 Yes
## 65                     No           No                   No                  No
## 66                     No           No                   No                  No
## 67                     No           No                   No                  No
## 68                     No           No                   No                  No
## 69                     No           No                   No                  No
## 70                     No           No                   No                  No
## 71                    Yes          Yes                  Yes                 Yes
## 72                    Yes          Yes                  Yes                 Yes
## 73                     No           No                   No                  No
## 74                     No           No                   No                  No
## 75                    Yes          Yes                  Yes                 Yes
## 76                     No           No                   No                  No
## 77                    Yes          Yes                  Yes                  No
## 78                    Yes          Yes                  Yes                 Yes
## 79                    Yes          Yes                  Yes                 Yes
## 80                    Yes          Yes                  Yes                  No
## 81                    Yes          Yes                  Yes                 Yes
## 83                     No           No                   No                  No
## 84                     No           No                   No                  No
## 85                     No           No                   No                  No
## 86                    Yes           No                  Yes                  No
## 87                    Yes           No                  Yes                  No
## 88                    Yes           No                  Yes                  No
## 89                     No           No                   No                  No
## 90                     No           No                   No                  No
## 91                     No           No                   No                  No
## 92                    Yes          Yes                   No                  No
## 93                    Yes          Yes                   No                 Yes
## 94                    Yes          Yes                  Yes                  No
## 96                     No           No                   No                  No
## 97                     No           No                   No                  No
## 98                    Yes          Yes                  Yes                 Yes
## 99                    Yes          Yes                  Yes                 Yes
## 100                    No           No                   No                  No
## 101                    No           No                   No                  No
## 102                    No           No                   No                  No
## 103                    No           No                   No                  No
## 104                    No           No                   No                  No
## 105                   Yes          Yes                  Yes                  No
## 106                   Yes          Yes                  Yes                 Yes
## 107                   Yes          Yes                  Yes                 Yes
## 108                   Yes          Yes                  Yes                 Yes
## 109                   Yes          Yes                  Yes                 Yes
## 110                    No           No                   No                  No
## 111                   Yes          Yes                  Yes                 Yes
## 112                    No           No                   No                  No
## 113                    No           No                   No                  No
## 114                   Yes          Yes                  Yes                 Yes
## 115                    No           No                   No                  No
## 117                   Yes          Yes                  Yes                 Yes
## 118                   Yes          Yes                  Yes                 Yes
## 119                   Yes          Yes                  Yes                  No
## 120                   Yes          Yes                  Yes                  No
## 121                   Yes          Yes                   No                 Yes
## 123                    No           No                   No                  No
## 124                    No           No                   No                  No
## 125                   Yes          Yes                  Yes                 Yes
## 126                    No           No                   No                  No
## 127                   Yes          Yes                  Yes                 Yes
## 128                    No           No                   No                  No
## 129                   Yes          Yes                  Yes                 Yes
## 130                   Yes          Yes                  Yes                  No
## 131                    No           No                   No                  No
## 132                   Yes          Yes                  Yes                 Yes
## 133                   Yes          Yes                  Yes                 Yes
## 134                    No           No                   No                  No
## 135                   Yes          Yes                  Yes                 Yes
## 136                   Yes          Yes                   No                 Yes
## 138                   Yes           No                  Yes                  No
## 139                    No           No                   No                  No
## 140                    No           No                   No                  No
## 141                   Yes          Yes                  Yes                  No
## 142                    No           No                   No                  No
## 143                   Yes          Yes                   No                  No
## 144                    No           No                   No                  No
## 145                    No           No                   No                  No
## 146                    No           No                   No                  No
## 147                   Yes          Yes                  Yes                  No
## 148                   Yes          Yes                  Yes                 Yes
## 149                   Yes          Yes                  Yes                  No
## 150                    No           No                   No                  No
## 151                    No           No                   No                  No
## 152                   Yes          Yes                  Yes                  No
## 153                   Yes          Yes                  Yes                 Yes
## 154                    No           No                   No                  No
## 155                   Yes          Yes                  Yes                  No
## 156                   Yes          Yes                  Yes                  No
## 157                    No           No                   No                  No
## 158                    No           No                   No                  No
## 159                   Yes          Yes                  Yes                 Yes
## 160                   Yes          Yes                   No                  No
## 161                   Yes          Yes                  Yes                 Yes
## 162                   Yes          Yes                  Yes                 Yes
## 163                   Yes          Yes                  Yes                 Yes
## 164                   Yes          Yes                  Yes                  No
## 165                   Yes          Yes                  Yes                 Yes
## 166                   Yes          Yes                  Yes                 Yes
## 167                   Yes          Yes                  Yes                 Yes
## 168                   Yes           No                  Yes                  No
## 169                    No           No                   No                  No
## 170                    No           No                   No                  No
## 171                    No           No                   No                  No
## 173                   Yes          Yes                  Yes                 Yes
## 174                    No           No                   No                  No
## 175                    No           No                   No                  No
## 176                   Yes          Yes                  Yes                 Yes
## 177                    No           No                   No                  No
## 178                   Yes          Yes                  Yes                 Yes
## 179                    No           No                   No                 Yes
## 180                    No           No                   No                  No
## 181                   Yes          Yes                  Yes                  No
## 182                    No           No                   No                  No
## 183                   Yes          Yes                  Yes                 Yes
## 184                   Yes          Yes                  Yes                 Yes
## 185                   Yes          Yes                  Yes                  No
## 186                    No           No                   No                  No
## 187                   Yes          Yes                  Yes                 Yes
## 188                   Yes          Yes                  Yes                 Yes
## 189                   Yes          Yes                  Yes                 Yes
## 190                   Yes          Yes                  Yes                 Yes
## 191                    No           No                   No                  No
## 192                   Yes          Yes                  Yes                  No
## 193                   Yes          Yes                  Yes                 Yes
## 194                   Yes           No                   No                  No
## 195                   Yes          Yes                   No                  No
## 196                    No           No                   No                  No
## 197                    No           No                   No                  No
## 198                    No           No                   No                  No
## 199                   Yes          Yes                  Yes                  No
## 200                   Yes          Yes                   No                  No
## 201                    No           No                   No                  No
## 202                   Yes          Yes                  Yes                 Yes
## 203                   Yes          Yes                   No                 Yes
## 204                    No           No                   No                  No
## 205                   Yes          Yes                  Yes                 Yes
## 206                   Yes          Yes                  Yes                 Yes
## 207                   Yes          Yes                   No                 Yes
## 208                   Yes          Yes                  Yes                 Yes
## 209                   Yes          Yes                   No                  No
## 210                   Yes          Yes                  Yes                 Yes
## 211                    No           No                   No                  No
## 212                   Yes          Yes                  Yes                  No
## 213                   Yes          Yes                  Yes                 Yes
## 214                    No           No                   No                  No
## 215                    No           No                   No                  No
## 216                   Yes          Yes                  Yes                 Yes
## 217                   Yes          Yes                  Yes                 Yes
## 218                    No           No                   No                  No
## 219                   Yes          Yes                  Yes                  No
## 220                   Yes          Yes                  Yes                 Yes
## 221                   Yes          Yes                  Yes                 Yes
## 222                   Yes          Yes                  Yes                 Yes
## 223                    No           No                   No                  No
## 224                    No           No                   No                  No
## 225                   Yes          Yes                  Yes                  No
## 226                    No           No                   No                  No
## 228                    No           No                   No                  No
## 229                    No           No                   No                  No
## 230                    No           No                   No                  No
## 231                    No           No                   No                  No
## 232                    No           No                   No                  No
## 233                   Yes           No                  Yes                 Yes
## 234                   Yes          Yes                  Yes                 Yes
## 235                    No           No                   No                  No
## 237                   Yes          Yes                  Yes                 Yes
## 238                   Yes          Yes                  Yes                  No
## 239                    No           No                   No                  No
## 241                    No           No                   No                  No
## 242                   Yes          Yes                  Yes                  No
## 243                    No           No                   No                  No
## 244                    No           No                   No                  No
## 245                   Yes          Yes                  Yes                 Yes
## 246                   Yes          Yes                  Yes                 Yes
## 247                    No           No                   No                  No
## 248                   Yes          Yes                   No                 Yes
## 249                   Yes          Yes                  Yes                  No
## 250                   Yes          Yes                  Yes                  No
## 251                   Yes          Yes                  Yes                  No
## 252                   Yes          Yes                   No                  No
## 253                   Yes          Yes                  Yes                 Yes
## 254                   Yes          Yes                   No                  No
## 255                   Yes          Yes                  Yes                 Yes
## 256                    No           No                   No                  No
## 257                    No           No                   No                  No
## 258                    No           No                   No                  No
## 259                   Yes          Yes                  Yes                 Yes
## 260                    No           No                   No                  No
## 261                   Yes          Yes                  Yes                 Yes
## 262                   Yes          Yes                  Yes                 Yes
## 264                    No           No                   No                  No
## 265                   Yes           No                  Yes                 Yes
## 266                   Yes          Yes                  Yes                  No
## 267                    No           No                   No                  No
## 268                   Yes          Yes                  Yes                 Yes
## 269                   Yes          Yes                  Yes                  No
## 270                    No           No                   No                  No
## 271                    No           No                   No                  No
## 272                    No           No                   No                  No
## 273                   Yes          Yes                   No                  No
## 274                    No          Yes                  Yes                 Yes
## 275                    No           No                   No                  No
## 276                   Yes          Yes                  Yes                 Yes
## 277                   Yes          Yes                  Yes                 Yes
## 278                    No           No                   No                  No
## 279                    No           No                   No                  No
## 280                    No           No                   No                  No
## 282                   Yes          Yes                   No                  No
## 283                    No           No                   No                  No
## 284                   Yes          Yes                  Yes                  No
## 285                   Yes          Yes                   No                 Yes
## 286                    No           No                   No                  No
## 287                   Yes          Yes                  Yes                 Yes
## 288                    No           No                   No                  No
## 289                    No           No                   No                  No
## 290                    No           No                   No                  No
## 291                    No           No                   No                  No
## 292                    No           No                   No                  No
## 293                    No           No                   No                  No
## 294                    No           No                   No                  No
## 295                   Yes          Yes                  Yes                  No
## 296                    No           No                   No                  No
## 297                    No           No                   No                  No
## 298                    No           No                   No                  No
## 299                    No           No                   No                  No
## 300                    No           No                   No                  No
## 302                    No           No                   No                  No
## 303                    No           No                   No                  No
## 305                   Yes          Yes                   No                  No
## 306                    No           No                   No                  No
## 307                    No           No                   No                  No
## 308                    No           No                   No                  No
## 309                    No           No                   No                  No
## 310                   Yes          Yes                  Yes                 Yes
## 311                   Yes          Yes                  Yes                 Yes
## 312                    No           No                   No                  No
## 313                    No           No                   No                  No
## 314                   Yes          Yes                  Yes                 Yes
## 315                   Yes          Yes                   No                 Yes
## 316                    No           No                   No                  No
## 320                    No           No                   No                  No
## 321                    No           No                   No                  No
## 322                    No           No                   No                  No
## 323                    No           No                   No                  No
## 324                    No           No                   No                  No
## 325                    No           No                   No                  No
## 326                    No           No                   No                  No
## 327                    No           No                   No                  No
## 328                   Yes          Yes                  Yes                 Yes
## 329                    No           No                   No                  No
## 330                    No           No                   No                  No
## 331                   Yes          Yes                  Yes                 Yes
## 332                   Yes          Yes                   No                 Yes
## 333                   Yes          Yes                   No                 Yes
## 334                   Yes          Yes                  Yes                 Yes
## 335                    No           No                   No                  No
## 336                    No           No                   No                  No
## 337                    No           No                   No                  No
## 338                   Yes          Yes                  Yes                 Yes
## 339                    No           No                   No                  No
## 340                   Yes          Yes                  Yes                 Yes
## 341                   Yes          Yes                   No                 Yes
## 342                    No           No                   No                  No
## 343                    No           No                   No                  No
## 344                    No           No                   No                  No
## 345                    No           No                   No                  No
## 346                   Yes          Yes                   No                 Yes
## 347                   Yes          Yes                  Yes                 Yes
## 348                    No           No                   No                  No
## 349                    No           No                   No                  No
## 350                   Yes          Yes                  Yes                  No
## 351                   Yes          Yes                  Yes                 Yes
## 352                   Yes          Yes                  Yes                 Yes
## 354                    No           No                   No                  No
## 355                    No           No                   No                  No
## 356                   Yes           No                  Yes                  No
## 357                   Yes          Yes                  Yes                  No
## 358                    No           No                   No                  No
## 359                   Yes           No                  Yes                  No
## 360                    No           No                   No                  No
## 361                   Yes          Yes                  Yes                 Yes
## 362                   Yes          Yes                  Yes                  No
## 363                   Yes          Yes                  Yes                 Yes
## 364                   Yes          Yes                  Yes                 Yes
## 365                    No           No                   No                  No
## 366                    No           No                   No                  No
## 367                    No           No                   No                  No
## 368                    No           No                   No                  No
## 369                   Yes          Yes                  Yes                  No
## 370                   Yes           No                  Yes                 Yes
## 371                   Yes          Yes                   No                  No
## 372                    No           No                   No                  No
## 373                    No          Yes                  Yes                 Yes
## 374                    No           No                   No                  No
## 375                   Yes          Yes                  Yes                 Yes
## 376                   Yes          Yes                  Yes                 Yes
## 377                    No           No                   No                  No
## 378                    No          Yes                  Yes                  No
## 379                   Yes          Yes                  Yes                 Yes
## 380                    No           No                   No                  No
## 381                    No           No                   No                  No
## 382                    No           No                   No                  No
## 383                    No           No                   No                  No
## 384                    No           No                   No                  No
## 385                    No           No                   No                  No
## 386                   Yes           No                  Yes                 Yes
## 387                    No           No                   No                  No
## 388                   Yes          Yes                  Yes                 Yes
## 389                    No           No                   No                  No
## 390                    No           No                   No                  No
## 391                    No           No                   No                  No
## 392                   Yes          Yes                  Yes                  No
## 393                    No           No                   No                  No
## 394                    No           No                   No                  No
## 396                   Yes          Yes                  Yes                 Yes
## 397                    No           No                   No                  No
## 398                    No           No                   No                  No
## 399                    No           No                   No                  No
## 400                    No           No                   No                  No
## 401                   Yes          Yes                  Yes                 Yes
## 402                    No           No                   No                  No
## 403                   Yes          Yes                  Yes                 Yes
## 404                   Yes          Yes                   No                 Yes
## 405                    No           No                   No                  No
## 406                    No           No                   No                  No
## 407                   Yes          Yes                  Yes                 Yes
## 408                    No           No                   No                  No
## 409                   Yes          Yes                   No                  No
## 410                    No           No                   No                  No
## 411                   Yes          Yes                  Yes                 Yes
## 412                    No           No                   No                  No
## 413                    No           No                   No                  No
## 414                    No           No                   No                  No
## 415                    No           No                   No                  No
## 416                    No           No                   No                  No
## 417                   Yes          Yes                  Yes                  No
## 418                    No           No                   No                  No
## 419                    No           No                   No                  No
## 420                    No           No                   No                  No
## 422                   Yes          Yes                  Yes                 Yes
## 423                    No           No                   No                  No
## 424                    No           No                   No                  No
## 426                    No           No                   No                  No
## 427                    No           No                   No                  No
## 428                   Yes          Yes                  Yes                  No
## 429                   Yes           No                   No                  No
## 430                    No           No                   No                  No
## 431                   Yes          Yes                  Yes                 Yes
## 432                   Yes          Yes                  Yes                 Yes
## 433                    No           No                   No                  No
## 435                   Yes          Yes                  Yes                 Yes
## 436                    No           No                   No                  No
## 437                   Yes          Yes                  Yes                  No
## 439                    No           No                   No                  No
## 440                    No           No                   No                  No
## 441                    No           No                   No                  No
## 442                    No           No                   No                  No
## 443                   Yes          Yes                  Yes                  No
## 444                   Yes           No                  Yes                  No
## 445                    No           No                   No                  No
## 446                    No          Yes                   No                  No
## 447                    No           No                   No                  No
## 448                    No           No                   No                  No
## 449                   Yes          Yes                  Yes                 Yes
## 450                   Yes           No                  Yes                 Yes
## 451                   Yes          Yes                   No                  No
## 452                    No           No                   No                  No
## 453                    No           No                   No                  No
## 454                    No           No                   No                  No
## 456                    No           No                   No                  No
## 457                    No           No                   No                  No
## 458                   Yes          Yes                  Yes                 Yes
## 459                   Yes          Yes                  Yes                  No
## 460                    No           No                   No                  No
## 461                    No           No                   No                  No
## 462                   Yes          Yes                  Yes                  No
## 463                   Yes          Yes                  Yes                 Yes
## 464                   Yes          Yes                  Yes                 Yes
## 465                   Yes          Yes                  Yes                 Yes
## 466                    No           No                   No                  No
## 467                   Yes          Yes                  Yes                 Yes
## 468                   Yes          Yes                  Yes                 Yes
## 469                   Yes          Yes                  Yes                 Yes
## 470                   Yes          Yes                  Yes                  No
## 471                    No           No                   No                  No
## 472                    No           No                   No                  No
## 473                   Yes          Yes                  Yes                 Yes
## 474                   Yes          Yes                  Yes                 Yes
## 475                   Yes          Yes                  Yes                 Yes
## 476                   Yes          Yes                  Yes                  No
## 477                   Yes          Yes                  Yes                 Yes
## 478                   Yes          Yes                  Yes                 Yes
## 479                    No           No                   No                  No
## 480                    No           No                   No                 Yes
## 481                    No           No                   No                  No
## 482                    No           No                   No                  No
## 483                    No           No                   No                  No
## 484                    No           No                   No                 Yes
## 485                    No           No                   No                  No
## 486                    No           No                   No                  No
## 487                   Yes          Yes                  Yes                 Yes
## 488                   Yes          Yes                   No                 Yes
## 489                   Yes           No                  Yes                  No
## 490                    No           No                   No                  No
## 491                    No           No                   No                  No
## 492                    No           No                   No                  No
## 493                    No           No                   No                  No
## 494                   Yes          Yes                  Yes                 Yes
## 495                   Yes          Yes                  Yes                 Yes
## 497                   Yes           No                  Yes                  No
## 498                    No           No                   No                  No
## 499                   Yes           No                  Yes                  No
## 500                    No           No                   No                  No
## 501                    No           No                  Yes                 Yes
## 502                   Yes          Yes                  Yes                 Yes
## 503                    No           No                   No                  No
## 504                    No           No                   No                  No
## 505                    No           No                   No                  No
## 506                    No           No                   No                  No
## 507                    No           No                   No                  No
## 508                    No           No                   No                  No
## 509                   Yes          Yes                  Yes                 Yes
## 510                    No           No                   No                  No
## 511                   Yes          Yes                  Yes                  No
## 512                   Yes          Yes                   No                 Yes
## 513                   Yes           No                  Yes                 Yes
## 514                    No           No                   No                  No
## 515                   Yes          Yes                  Yes                 Yes
## 516                   Yes          Yes                  Yes                  No
## 517                   Yes          Yes                  Yes                  No
## 518                   Yes          Yes                  Yes                  No
## 519                    No           No                   No                  No
## 520                   Yes           No                  Yes                 Yes
## 521                    No           No                   No                  No
## 522                   Yes          Yes                  Yes                  No
## 523                    No           No                   No                  No
## 524                   Yes          Yes                  Yes                 Yes
## 526                   Yes          Yes                  Yes                 Yes
## 527                    No           No                   No                  No
## 528                   Yes          Yes                  Yes                 Yes
## 529                    No           No                   No                  No
## 530                    No           No                   No                  No
## 531                   Yes          Yes                  Yes                  No
## 532                    No           No                   No                  No
## 533                   Yes          Yes                  Yes                 Yes
## 534                   Yes          Yes                   No                  No
## 535                   Yes          Yes                   No                 Yes
## 536                    No           No                   No                  No
## 537                   Yes          Yes                  Yes                 Yes
## 538                    No          Yes                  Yes                  No
## 539                   Yes          Yes                  Yes                 Yes
## 540                   Yes          Yes                   No                 Yes
## 541                   Yes          Yes                  Yes                 Yes
## 542                    No           No                   No                  No
## 543                    No           No                   No                  No
## 544                    No           No                   No                  No
## 545                   Yes          Yes                  Yes                 Yes
## 546                    No           No                   No                  No
## 547                    No           No                   No                  No
## 548                    No           No                   No                  No
## 549                   Yes           No                  Yes                 Yes
## 550                   Yes           No                   No                  No
## 551                    No           No                   No                  No
## 552                    No           No                   No                  No
## 553                   Yes           No                  Yes                 Yes
## 554                   Yes          Yes                  Yes                 Yes
## 555                   Yes           No                   No                  No
## 556                   Yes          Yes                  Yes                  No
## 557                    No           No                   No                  No
## 558                    No           No                   No                  No
## 559                   Yes          Yes                  Yes                 Yes
## 560                   Yes          Yes                  Yes                 Yes
## 561                   Yes          Yes                  Yes                 Yes
## 562                   Yes          Yes                  Yes                 Yes
## 563                    No           No                   No                  No
## 564                   Yes          Yes                  Yes                 Yes
## 565                   Yes          Yes                  Yes                 Yes
## 566                    No           No                   No                  No
## 567                   Yes          Yes                  Yes                 Yes
## 568                   Yes          Yes                  Yes                 Yes
## 570                   Yes          Yes                  Yes                 Yes
## 571                    No           No                   No                  No
## 572                   Yes          Yes                  Yes                  No
## 573                   Yes          Yes                  Yes                  No
## 574                   Yes          Yes                  Yes                 Yes
## 575                   Yes          Yes                  Yes                 Yes
## 576                   Yes          Yes                   No                  No
## 577                    No           No                   No                  No
## 578                   Yes          Yes                  Yes                 Yes
## 579                    No           No                   No                  No
## 581                    No           No                   No                  No
## 582                    No           No                   No                  No
## 583                   Yes          Yes                  Yes                 Yes
## 584                    No           No                   No                  No
## 585                    No           No                   No                  No
## 586                   Yes          Yes                  Yes                 Yes
## 587                   Yes          Yes                  Yes                  No
## 588                    No           No                   No                  No
## 589                    No           No                   No                  No
## 590                   Yes          Yes                  Yes                  No
## 591                   Yes          Yes                  Yes                 Yes
## 592                   Yes          Yes                  Yes                 Yes
## 593                   Yes          Yes                  Yes                 Yes
## 594                   Yes          Yes                   No                  No
## 595                    No           No                   No                  No
## 596                   Yes          Yes                  Yes                 Yes
## 597                    No           No                   No                  No
## 598                   Yes          Yes                  Yes                 Yes
## 599                   Yes          Yes                  Yes                  No
## 600                   Yes          Yes                  Yes                 Yes
## 601                   Yes          Yes                  Yes                 Yes
## 602                   Yes          Yes                  Yes                  No
## 603                    No           No                   No                  No
## 604                   Yes          Yes                  Yes                 Yes
## 605                   Yes           No                   No                 Yes
## 606                   Yes          Yes                  Yes                  No
## 607                   Yes          Yes                  Yes                 Yes
## 608                   Yes          Yes                   No                  No
## 609                   Yes          Yes                  Yes                 Yes
## 611                   Yes          Yes                   No                 Yes
## 612                    No           No                   No                  No
## 613                    No           No                   No                  No
## 614                    No           No                   No                  No
## 615                    No           No                   No                  No
## 616                    No           No                   No                  No
## 617                    No           No                   No                  No
## 618                   Yes          Yes                  Yes                 Yes
## 619                    No           No                   No                 Yes
## 620                   Yes          Yes                   No                  No
## 621                   Yes          Yes                  Yes                  No
## 622                   Yes           No                   No                  No
## 624                   Yes          Yes                  Yes                 Yes
## 625                    No           No                   No                  No
## 626                   Yes          Yes                  Yes                 Yes
## 627                    No           No                   No                  No
## 628                    No           No                   No                  No
## 629                   Yes          Yes                  Yes                 Yes
## 631                    No           No                   No                  No
## 632                   Yes          Yes                  Yes                  No
## 633                    No           No                   No                  No
## 634                    No           No                   No                  No
## 635                    No           No                   No                  No
## 636                   Yes          Yes                  Yes                 Yes
## 638                   Yes          Yes                  Yes                  No
## 639                   Yes          Yes                   No                 Yes
## 640                    No           No                   No                  No
## 641                    No           No                   No                  No
## 642                   Yes          Yes                  Yes                  No
## 643                   Yes          Yes                  Yes                 Yes
## 644                   Yes          Yes                  Yes                 Yes
## 645                   Yes          Yes                  Yes                 Yes
## 646                    No           No                   No                  No
## 647                   Yes          Yes                  Yes                 Yes
## 648                   Yes          Yes                  Yes                 Yes
## 649                   Yes           No                  Yes                  No
## 650                    No           No                   No                  No
## 651                    No           No                   No                  No
## 652                   Yes           No                  Yes                 Yes
## 653                    No           No                   No                  No
## 654                    No           No                   No                  No
## 655                   Yes          Yes                  Yes                  No
## 656                   Yes          Yes                  Yes                 Yes
## 657                    No           No                   No                  No
## 658                    No           No                   No                  No
## 659                   Yes          Yes                  Yes                 Yes
## 660                   Yes          Yes                  Yes                 Yes
## 661                    No           No                   No                  No
## 662                    No           No                   No                  No
## 663                   Yes          Yes                  Yes                 Yes
## 664                    No           No                   No                  No
## 665                    No           No                   No                  No
## 666                    No           No                   No                  No
## 667                    No           No                   No                  No
## 669                    No           No                   No                  No
## 670                   Yes          Yes                  Yes                  No
## 671                    No           No                   No                  No
## 672                   Yes          Yes                  Yes                 Yes
## 673                   Yes          Yes                  Yes                 Yes
## 674                   Yes          Yes                  Yes                 Yes
## 675                    No           No                   No                  No
## 676                   Yes          Yes                  Yes                 Yes
## 677                   Yes          Yes                  Yes                 Yes
## 678                    No           No                   No                  No
## 679                    No           No                   No                  No
## 680                    No           No                   No                  No
## 681                   Yes          Yes                  Yes                 Yes
## 682                    No           No                   No                  No
## 683                    No           No                   No                  No
## 684                   Yes          Yes                  Yes                 Yes
## 685                   Yes          Yes                  Yes                 Yes
## 686                    No           No                   No                  No
## 688                   Yes          Yes                  Yes                 Yes
## 690                   Yes          Yes                  Yes                 Yes
## 691                   Yes          Yes                  Yes                  No
## 692                   Yes          Yes                  Yes                 Yes
## 693                    No           No                   No                  No
## 694                   Yes          Yes                  Yes                 Yes
## 695                   Yes          Yes                   No                  No
## 696                    No           No                   No                  No
## 697                   Yes          Yes                   No                  No
## 698                    No           No                   No                  No
## 699                   Yes          Yes                  Yes                 Yes
## 700                   Yes          Yes                   No                 Yes
## 701                    No           No                   No                  No
## 702                    No           No                   No                  No
## 703                   Yes           No                  Yes                 Yes
## 704                    No           No                   No                  No
## 705                    No           No                   No                  No
## 706                    No           No                   No                  No
## 707                   Yes          Yes                  Yes                 Yes
## 708                    No           No                   No                  No
## 709                   Yes          Yes                  Yes                 Yes
## 710                   Yes           No                   No                 Yes
## 711                   Yes          Yes                  Yes                 Yes
## 712                   Yes          Yes                  Yes                 Yes
## 713                    No           No                   No                  No
## 714                    No           No                   No                  No
## 715                    No           No                   No                  No
## 716                   Yes          Yes                  Yes                  No
## 717                    No           No                   No                  No
## 718                   Yes          Yes                   No                  No
## 719                   Yes          Yes                  Yes                  No
## 720                   Yes          Yes                  Yes                 Yes
## 721                   Yes           No                  Yes                 Yes
## 722                    No           No                   No                  No
## 723                   Yes          Yes                  Yes                  No
## 724                    No           No                   No                  No
## 725                   Yes          Yes                  Yes                  No
## 726                    No           No                   No                  No
## 727                    No           No                   No                  No
## 728                    No           No                   No                  No
## 729                   Yes           No                  Yes                 Yes
## 731                   Yes          Yes                  Yes                 Yes
## 732                    No           No                   No                  No
## 733                    No           No                   No                  No
## 734                    No           No                  Yes                 Yes
## 735                   Yes          Yes                  Yes                 Yes
## 737                    No           No                   No                  No
## 738                   Yes          Yes                  Yes                 Yes
## 739                   Yes          Yes                   No                  No
## 741                    No           No                   No                  No
## 742                   Yes          Yes                  Yes                  No
## 743                    No           No                   No                  No
## 744                    No           No                   No                  No
## 745                   Yes          Yes                  Yes                 Yes
## 746                   Yes          Yes                  Yes                 Yes
## 747                    No           No                   No                  No
## 748                   Yes          Yes                  Yes                 Yes
## 749                    No           No                   No                  No
## 750                    No           No                   No                  No
## 751                   Yes          Yes                   No                 Yes
## 752                    No           No                   No                  No
## 753                   Yes          Yes                   No                  No
## 754                   Yes          Yes                  Yes                 Yes
## 755                    No           No                   No                  No
## 756                    No           No                   No                  No
## 757                   Yes          Yes                   No                  No
## 758                   Yes          Yes                  Yes                 Yes
## 759                   Yes          Yes                  Yes                  No
## 760                    No           No                   No                  No
## 761                   Yes          Yes                   No                  No
## 762                   Yes          Yes                  Yes                 Yes
## 763                   Yes          Yes                  Yes                 Yes
## 764                    No           No                   No                  No
## 765                    No           No                   No                  No
## 766                   Yes          Yes                  Yes                 Yes
## 767                   Yes          Yes                  Yes                 Yes
## 768                   Yes          Yes                  Yes                 Yes
## 769                   Yes          Yes                  Yes                 Yes
## 770                    No           No                   No                  No
## 771                    No           No                   No                  No
## 772                   Yes          Yes                  Yes                 Yes
## 773                    No           No                   No                  No
## 774                    No           No                   No                  No
## 775                    No           No                   No                  No
## 776                   Yes          Yes                  Yes                 Yes
## 777                    No           No                   No                  No
## 778                   Yes          Yes                  Yes                 Yes
## 779                    No           No                   No                  No
## 780                   Yes          Yes                  Yes                 Yes
## 781                    No           No                   No                  No
## 782                   Yes          Yes                  Yes                 Yes
## 783                   Yes          Yes                   No                  No
## 784                   Yes           No                  Yes                 Yes
## 785                   Yes          Yes                  Yes                 Yes
## 786                   Yes          Yes                   No                 Yes
## 787                   Yes          Yes                   No                  No
## 788                   Yes          Yes                  Yes                  No
## 789                   Yes           No                  Yes                  No
## 790                   Yes           No                  Yes                 Yes
## 791                   Yes          Yes                  Yes                  No
## 792                   Yes          Yes                  Yes                 Yes
## 793                    No           No                   No                  No
## 794                   Yes          Yes                  Yes                 Yes
## 795                   Yes          Yes                  Yes                 Yes
## 797                    No           No                   No                  No
## 798                   Yes          Yes                  Yes                  No
## 799                   Yes          Yes                  Yes                  No
## 800                   Yes          Yes                   No                 Yes
## 801                    No           No                   No                  No
## 802                    No           No                   No                  No
## 803                   Yes           No                  Yes                 Yes
## 804                    No           No                   No                  No
## 805                    No           No                   No                  No
## 806                    No           No                   No                  No
## 807                    No           No                   No                  No
## 808                   Yes          Yes                  Yes                 Yes
## 809                   Yes          Yes                  Yes                  No
## 810                   Yes          Yes                  Yes                  No
## 811                   Yes           No                  Yes                  No
## 812                    No           No                   No                  No
## 814                    No           No                   No                  No
## 815                    No           No                   No                  No
## 816                    No           No                   No                  No
## 817                   Yes          Yes                  Yes                 Yes
## 818                   Yes          Yes                  Yes                 Yes
## 820                   Yes          Yes                  Yes                 Yes
## 821                   Yes          Yes                  Yes                  No
## 822                   Yes          Yes                   No                  No
## 823                    No           No                   No                  No
## 824                    No           No                   No                  No
## 825                   Yes          Yes                   No                  No
## 826                   Yes          Yes                  Yes                 Yes
## 827                    No           No                   No                  No
## 828                   Yes          Yes                  Yes                 Yes
## 829                    No           No                   No                  No
## 831                    No           No                   No                  No
## 832                   Yes          Yes                  Yes                 Yes
## 833                    No           No                   No                  No
## 834                    No           No                   No                  No
## 835                   Yes          Yes                  Yes                 Yes
## 836                    No           No                   No                  No
## 837                   Yes          Yes                  Yes                 Yes
## 838                   Yes           No                  Yes                  No
## 839                    No           No                   No                  No
## 841                    No           No                   No                  No
## 842                    No           No                   No                  No
## 845                   Yes          Yes                  Yes                 Yes
## 846                    No           No                   No                  No
## 847                   Yes          Yes                  Yes                  No
## 848                    No           No                   No                  No
## 849                    No           No                   No                  No
## 850                    No           No                   No                  No
## 851                    No           No                   No                  No
## 852                   Yes          Yes                  Yes                 Yes
## 853                    No           No                   No                  No
## 854                    No           No                   No                  No
## 855                   Yes          Yes                  Yes                 Yes
## 856                   Yes          Yes                  Yes                  No
## 857                    No           No                   No                  No
## 858                   Yes          Yes                  Yes                 Yes
## 859                   Yes          Yes                  Yes                 Yes
## 860                    No           No                   No                  No
## 861                   Yes          Yes                  Yes                 Yes
## 862                    No           No                   No                  No
## 863                   Yes          Yes                  Yes                 Yes
## 864                   Yes           No                  Yes                 Yes
## 865                   Yes          Yes                  Yes                 Yes
## 866                    No           No                   No                  No
## 867                    No           No                   No                  No
## 868                   Yes          Yes                  Yes                 Yes
## 869                    No           No                   No                  No
## 870                    No           No                   No                  No
## 871                    No           No                   No                  No
## 872                   Yes          Yes                  Yes                 Yes
## 873                   Yes          Yes                  Yes                  No
## 874                   Yes          Yes                  Yes                  No
## 875                   Yes          Yes                  Yes                  No
## 876                    No           No                   No                  No
## 877                    No           No                   No                  No
## 878                    No           No                   No                  No
## 879                   Yes          Yes                  Yes                 Yes
## 880                   Yes          Yes                  Yes                 Yes
## 881                    No           No                   No                  No
## 882                   Yes          Yes                  Yes                  No
## 883                    No           No                   No                  No
## 885                    No           No                   No                  No
## 886                   Yes           No                   No                 Yes
## 887                    No           No                   No                  No
## 889                    No           No                   No                  No
## 890                    No          Yes                  Yes                 Yes
## 891                   Yes          Yes                  Yes                 Yes
## 892                    No           No                   No                  No
## 893                    No           No                   No                  No
## 894                    No           No                   No                  No
## 895                    No           No                   No                  No
## 896                   Yes          Yes                  Yes                 Yes
## 897                   Yes          Yes                  Yes                 Yes
## 898                   Yes          Yes                  Yes                  No
## 899                    No           No                   No                  No
## 900                    No           No                   No                  No
## 902                    No           No                   No                  No
## 903                   Yes          Yes                  Yes                 Yes
## 904                   Yes          Yes                   No                 Yes
## 905                    No           No                   No                  No
## 906                   Yes          Yes                   No                  No
## 907                   Yes          Yes                  Yes                  No
## 908                    No           No                   No                  No
## 909                   Yes          Yes                  Yes                  No
## 910                    No           No                   No                  No
## 911                    No           No                   No                  No
## 912                    No           No                   No                  No
## 913                   Yes          Yes                  Yes                 Yes
## 914                   Yes          Yes                   No                 Yes
## 915                    No           No                   No                  No
## 916                    No           No                   No                  No
## 917                    No           No                   No                  No
## 918                   Yes           No                   No                  No
## 919                   Yes          Yes                   No                  No
## 920                    No           No                   No                  No
## 921                   Yes          Yes                   No                  No
## 922                   Yes          Yes                  Yes                 Yes
## 923                   Yes          Yes                  Yes                 Yes
## 924                   Yes          Yes                  Yes                  No
## 925                    No           No                   No                  No
## 926                   Yes          Yes                  Yes                 Yes
## 927                   Yes          Yes                  Yes                 Yes
## 928                   Yes          Yes                  Yes                 Yes
## 929                    No           No                   No                  No
## 930                    No           No                   No                  No
## 931                   Yes          Yes                  Yes                  No
## 932                    No           No                   No                  No
## 933                    No           No                   No                  No
## 934                   Yes          Yes                  Yes                  No
## 935                    No           No                   No                  No
## 936                   Yes          Yes                  Yes                 Yes
## 937                    No           No                   No                  No
## 938                    No           No                   No                  No
## 939                    No           No                   No                  No
## 940                    No           No                   No                  No
## 941                   Yes          Yes                   No                  No
## 942                   Yes          Yes                  Yes                  No
## 943                   Yes          Yes                  Yes                  No
## 945                   Yes          Yes                  Yes                  No
## 946                   Yes          Yes                   No                  No
## 947                   Yes          Yes                  Yes                  No
## 948                   Yes          Yes                   No                 Yes
## 950                   Yes          Yes                  Yes                 Yes
## 951                   Yes          Yes                  Yes                 Yes
## 952                    No           No                   No                  No
## 953                   Yes          Yes                   No                 Yes
## 954                   Yes          Yes                  Yes                 Yes
## 955                    No           No                   No                  No
## 956                    No           No                   No                  No
## 957                    No           No                   No                  No
## 958                    No           No                   No                  No
## 959                   Yes          Yes                  Yes                 Yes
## 960                   Yes          Yes                  Yes                 Yes
## 961                   Yes          Yes                  Yes                 Yes
## 962                    No           No                   No                  No
## 963                    No           No                   No                  No
## 964                    No           No                   No                  No
## 965                    No           No                   No                  No
## 966                    No           No                   No                  No
## 967                    No           No                   No                  No
## 968                    No           No                   No                  No
## 969                    No           No                   No                  No
## 970                   Yes          Yes                  Yes                  No
## 971                   Yes          Yes                   No                 Yes
## 972                   Yes          Yes                  Yes                 Yes
## 973                    No           No                   No                  No
## 974                   Yes          Yes                  Yes                 Yes
## 975                   Yes          Yes                  Yes                 Yes
## 976                    No           No                   No                  No
## 977                   Yes          Yes                  Yes                  No
## 978                   Yes          Yes                  Yes                  No
## 979                    No           No                   No                  No
## 980                    No           No                   No                  No
## 981                   Yes          Yes                   No                  No
## 982                    No           No                   No                  No
## 983                   Yes          Yes                  Yes                  No
## 985                    No           No                   No                  No
## 986                    No           No                   No                  No
## 987                    No           No                   No                  No
## 989                    No           No                   No                  No
## 990                    No           No                   No                  No
## 991                    No           No                   No                  No
## 992                    No           No                   No                  No
## 993                    No           No                   No                  No
## 994                   Yes          Yes                  Yes                  No
## 995                    No           No                   No                  No
## 996                   Yes          Yes                  Yes                 Yes
## 997                    No           No                   No                  No
## 998                   Yes          Yes                  Yes                 Yes
## 999                    No           No                   No                  No
## 1000                  Yes          Yes                  Yes                 Yes
## 1001                  Yes          Yes                  Yes                 Yes
## 1002                  Yes          Yes                  Yes                  No
## 1003                   No           No                   No                  No
## 1004                  Yes           No                   No                  No
## 1005                  Yes           No                  Yes                 Yes
## 1006                   No           No                   No                  No
## 1007                  Yes          Yes                  Yes                  No
## 1008                   No           No                   No                  No
## 1009                   No           No                   No                  No
## 1010                  Yes          Yes                  Yes                 Yes
## 1011                  Yes          Yes                  Yes                 Yes
## 1012                   No           No                   No                  No
## 1013                  Yes          Yes                  Yes                  No
## 1014                  Yes          Yes                  Yes                 Yes
## 1016                  Yes          Yes                  Yes                  No
## 1017                   No           No                   No                  No
## 1018                  Yes          Yes                  Yes                 Yes
## 1019                   No           No                   No                  No
## 1020                  Yes          Yes                  Yes                 Yes
## 1021                   No           No                   No                  No
## 1022                  Yes          Yes                  Yes                 Yes
## 1023                  Yes          Yes                   No                 Yes
## 1024                  Yes          Yes                  Yes                 Yes
## 1026                   No           No                   No                  No
## 1027                   No           No                   No                  No
## 1028                   No          Yes                   No                 Yes
## 1029                  Yes          Yes                  Yes                 Yes
## 1030                   No           No                   No                  No
## 1032                   No           No                   No                  No
## 1033                   No           No                   No                  No
## 1034                   No           No                   No                  No
## 1035                   No           No                   No                  No
## 1036                   No           No                   No                  No
## 1037                  Yes          Yes                  Yes                 Yes
## 1038                  Yes          Yes                   No                  No
## 1040                   No           No                   No                  No
## 1041                   No           No                   No                  No
## 1042                  Yes          Yes                  Yes                 Yes
## 1043                  Yes          Yes                  Yes                 Yes
## 1044                  Yes          Yes                   No                 Yes
## 1045                   No           No                   No                  No
## 1046                   No           No                   No                  No
## 1047                  Yes          Yes                  Yes                 Yes
## 1048                  Yes          Yes                  Yes                 Yes
## 1049                   No           No                   No                  No
## 1050                   No           No                   No                  No
## 1051                  Yes          Yes                  Yes                 Yes
## 1052                  Yes          Yes                   No                  No
## 1054                  Yes          Yes                  Yes                 Yes
## 1055                   No           No                   No                  No
## 1056                   No           No                   No                  No
## 1057                   No           No                   No                  No
## 1058                  Yes          Yes                  Yes                 Yes
## 1059                   No           No                   No                  No
## 1060                   No           No                   No                  No
## 1061                  Yes          Yes                   No                  No
## 1062                   No           No                   No                  No
## 1063                   No           No                   No                  No
## 1065                   No           No                   No                  No
## 1066                   No           No                   No                  No
## 1067                   No           No                   No                  No
## 1068                  Yes          Yes                  Yes                 Yes
## 1069                   No           No                   No                  No
## 1070                  Yes           No                  Yes                 Yes
## 1071                  Yes           No                   No                  No
## 1072                   No           No                   No                  No
## 1073                   No           No                   No                  No
## 1074                  Yes          Yes                   No                 Yes
## 1075                  Yes          Yes                  Yes                 Yes
## 1076                   No           No                   No                  No
## 1077                  Yes          Yes                  Yes                 Yes
## 1078                   No           No                   No                  No
## 1079                  Yes          Yes                  Yes                 Yes
## 1080                   No           No                   No                  No
## 1081                  Yes          Yes                  Yes                 Yes
## 1082                   No          Yes                   No                 Yes
## 1083                   No           No                   No                  No
## 1084                  Yes          Yes                  Yes                  No
## 1085                   No           No                   No                  No
## 1087                  Yes          Yes                  Yes                 Yes
## 1088                  Yes           No                  Yes                  No
## 1091                  Yes          Yes                  Yes                  No
## 1092                   No           No                   No                  No
## 1093                   No           No                   No                  No
## 1094                  Yes          Yes                  Yes                 Yes
## 1095                  Yes          Yes                  Yes                 Yes
## 1096                   No           No                   No                  No
## 1098                   No           No                   No                  No
## 1099                  Yes          Yes                  Yes                 Yes
## 1100                  Yes          Yes                  Yes                 Yes
## 1101                  Yes          Yes                  Yes                 Yes
## 1102                   No           No                   No                  No
## 1103                   No           No                   No                  No
## 1104                   No           No                   No                  No
## 1105                   No           No                   No                  No
## 1106                  Yes          Yes                  Yes                 Yes
## 1108                   No           No                   No                  No
## 1109                   No           No                   No                  No
## 1110                   No           No                   No                  No
## 1111                   No           No                   No                  No
## 1112                  Yes          Yes                  Yes                 Yes
## 1113                  Yes          Yes                  Yes                 Yes
## 1114                   No           No                   No                  No
## 1115                   No           No                   No                  No
## 1116                   No           No                   No                  No
## 1117                  Yes          Yes                  Yes                 Yes
## 1118                   No          Yes                  Yes                 Yes
## 1120                   No           No                   No                  No
## 1121                  Yes          Yes                  Yes                 Yes
## 1122                   No           No                   No                  No
## 1123                  Yes          Yes                  Yes                  No
## 1124                   No           No                   No                  No
## 1125                   No           No                   No                  No
## 1126                  Yes          Yes                  Yes                 Yes
## 1127                   No           No                   No                  No
## 1128                   No           No                   No                  No
## 1129                   No           No                   No                  No
## 1130                  Yes          Yes                  Yes                  No
## 1131                  Yes           No                   No                  No
## 1132                   No           No                   No                  No
## 1133                  Yes          Yes                   No                  No
## 1134                   No           No                   No                  No
## 1135                  Yes          Yes                  Yes                 Yes
## 1136                   No           No                   No                  No
## 1137                   No           No                   No                  No
## 1138                  Yes          Yes                  Yes                 Yes
## 1139                  Yes          Yes                  Yes                 Yes
## 1140                  Yes          Yes                  Yes                  No
## 1141                  Yes          Yes                  Yes                 Yes
## 1142                  Yes          Yes                  Yes                 Yes
## 1143                  Yes          Yes                  Yes                 Yes
## 1144                  Yes          Yes                  Yes                 Yes
## 1146                  Yes          Yes                  Yes                 Yes
## 1147                   No           No                   No                  No
## 1148                  Yes          Yes                  Yes                 Yes
## 1149                  Yes          Yes                  Yes                  No
## 1150                   No           No                   No                  No
## 1151                  Yes          Yes                  Yes                 Yes
## 1152                   No           No                   No                  No
## 1153                  Yes          Yes                  Yes                 Yes
## 1154                   No           No                   No                  No
## 1155                   No           No                   No                  No
## 1156                  Yes          Yes                  Yes                 Yes
## 1157                   No           No                   No                  No
## 1158                  Yes          Yes                  Yes                 Yes
## 1159                  Yes          Yes                  Yes                 Yes
## 1160                   No           No                   No                  No
## 1161                  Yes           No                  Yes                  No
## 1162                   No           No                   No                  No
## 1163                  Yes          Yes                  Yes                  No
## 1164                  Yes          Yes                  Yes                 Yes
## 1165                  Yes          Yes                  Yes                 Yes
## 1166                   No           No                   No                  No
## 1167                  Yes          Yes                  Yes                 Yes
## 1168                  Yes          Yes                  Yes                  No
## 1169                  Yes          Yes                  Yes                 Yes
## 1170                   No           No                   No                  No
## 1172                   No           No                   No                  No
## 1173                   No           No                   No                  No
## 1175                  Yes          Yes                  Yes                 Yes
## 1177                   No           No                   No                  No
## 1178                  Yes          Yes                   No                  No
## 1179                  Yes          Yes                  Yes                  No
## 1180                   No           No                   No                  No
## 1181                  Yes          Yes                  Yes                 Yes
## 1182                   No           No                   No                  No
## 1184                  Yes           No                  Yes                  No
## 1185                   No           No                   No                  No
## 1186                   No           No                   No                  No
## 1187                   No           No                   No                  No
## 1189                  Yes          Yes                  Yes                 Yes
## 1190                  Yes          Yes                  Yes                 Yes
## 1191                  Yes          Yes                  Yes                 Yes
## 1192                  Yes          Yes                  Yes                 Yes
## 1193                  Yes          Yes                  Yes                  No
## 1194                   No           No                   No                  No
## 1196                  Yes          Yes                  Yes                 Yes
## 1197                   No           No                   No                  No
## 1198                   No           No                   No                  No
## 1199                  Yes          Yes                  Yes                 Yes
## 1200                  Yes          Yes                  Yes                 Yes
## 1201                   No           No                   No                  No
## 1202                   No           No                   No                  No
## 1203                  Yes           No                  Yes                  No
## 1204                   No           No                   No                  No
## 1205                   No           No                   No                  No
## 1206                   No           No                   No                  No
## 1207                   No           No                   No                  No
## 1208                  Yes          Yes                  Yes                  No
## 1209                  Yes          Yes                   No                  No
## 1210                  Yes          Yes                  Yes                 Yes
## 1211                  Yes           No                  Yes                  No
## 1212                  Yes          Yes                  Yes                  No
## 1213                   No           No                   No                  No
## 1214                   No           No                   No                  No
## 1215                  Yes          Yes                  Yes                 Yes
## 1216                   No           No                   No                  No
## 1217                  Yes           No                  Yes                  No
## 1218                   No           No                   No                  No
## 1221                   No           No                   No                  No
## 1223                  Yes          Yes                  Yes                 Yes
## 1224                   No           No                   No                  No
## 1225                  Yes          Yes                  Yes                 Yes
## 1227                  Yes           No                   No                  No
## 1228                   No           No                   No                  No
## 1229                  Yes          Yes                  Yes                 Yes
## 1230                  Yes          Yes                  Yes                 Yes
## 1231                  Yes          Yes                   No                  No
## 1232                   No           No                   No                  No
## 1233                  Yes          Yes                  Yes                  No
## 1234                   No           No                   No                  No
## 1235                   No           No                   No                 Yes
## 1236                  Yes          Yes                  Yes                 Yes
## 1237                   No           No                   No                  No
## 1238                   No           No                   No                  No
## 1239                  Yes          Yes                  Yes                 Yes
## 1240                   No           No                   No                  No
## 1241                  Yes          Yes                  Yes                 Yes
## 1242                   No           No                   No                  No
## 1243                   No           No                   No                  No
## 1244                  Yes          Yes                  Yes                 Yes
## 1246                   No           No                   No                  No
## 1247                  Yes          Yes                  Yes                  No
## 1248                   No           No                   No                  No
## 1249                  Yes          Yes                   No                 Yes
## 1250                   No           No                   No                  No
## 1251                   No           No                   No                  No
## 1252                  Yes          Yes                   No                  No
## 1253                  Yes          Yes                   No                  No
## 1254                  Yes          Yes                  Yes                 Yes
## 1255                   No           No                   No                  No
## 1256                   No           No                   No                  No
## 1257                  Yes          Yes                   No                  No
## 1259                  Yes          Yes                  Yes                 Yes
## 1260                   No           No                   No                  No
## 1261                   No           No                   No                  No
## 1262                  Yes          Yes                  Yes                 Yes
## 1263                  Yes          Yes                  Yes                 Yes
## 1264                  Yes          Yes                  Yes                 Yes
## 1265                   No           No                   No                  No
## 1266                   No           No                   No                  No
## 1267                   No           No                   No                  No
## 1268                  Yes          Yes                  Yes                 Yes
## 1269                  Yes          Yes                  Yes                 Yes
## 1270                   No           No                   No                  No
## 1271                  Yes          Yes                  Yes                 Yes
## 1272                  Yes          Yes                  Yes                 Yes
## 1273                   No           No                  Yes                 Yes
## 1275                  Yes          Yes                  Yes                 Yes
## 1276                  Yes          Yes                  Yes                 Yes
## 1277                   No           No                   No                  No
## 1278                   No           No                   No                  No
## 1279                  Yes          Yes                  Yes                  No
## 1280                  Yes          Yes                  Yes                  No
## 1281                   No           No                   No                  No
## 1282                  Yes          Yes                  Yes                 Yes
## 1283                  Yes          Yes                  Yes                  No
## 1284                  Yes          Yes                  Yes                 Yes
## 1285                  Yes          Yes                  Yes                  No
## 1286                   No           No                   No                  No
## 1287                  Yes          Yes                  Yes                 Yes
## 1288                   No           No                   No                  No
## 1289                  Yes          Yes                  Yes                 Yes
## 1290                   No          Yes                  Yes                  No
## 1291                   No           No                   No                  No
## 1292                  Yes          Yes                  Yes                  No
## 1293                  Yes          Yes                  Yes                 Yes
## 1294                  Yes          Yes                  Yes                 Yes
## 1295                  Yes          Yes                  Yes                 Yes
## 1296                  Yes          Yes                  Yes                 Yes
## 1298                   No           No                   No                  No
## 1299                  Yes          Yes                  Yes                  No
## 1300                   No           No                   No                  No
## 1301                  Yes          Yes                  Yes                  No
## 1302                   No           No                   No                  No
## 1303                   No           No                   No                  No
## 1304                   No           No                   No                  No
## 1305                  Yes          Yes                  Yes                 Yes
## 1306                   No           No                   No                  No
## 1307                  Yes          Yes                  Yes                  No
## 1308                  Yes          Yes                  Yes                 Yes
## 1309                  Yes          Yes                  Yes                 Yes
## 1310                   No           No                   No                  No
## 1311                  Yes          Yes                  Yes                 Yes
## 1312                   No           No                   No                  No
## 1313                  Yes          Yes                  Yes                  No
## 1314                   No           No                   No                  No
## 1315                  Yes          Yes                  Yes                 Yes
## 1316                   No           No                   No                  No
## 1317                   No           No                   No                  No
## 1318                   No           No                   No                  No
## 1319                   No           No                   No                  No
## 1320                   No           No                   No                  No
## 1321                  Yes          Yes                   No                  No
## 1322                  Yes          Yes                   No                  No
## 1323                  Yes          Yes                  Yes                 Yes
## 1324                   No           No                   No                  No
## 1326                  Yes          Yes                  Yes                 Yes
## 1327                  Yes          Yes                   No                  No
## 1328                   No           No                   No                  No
## 1330                   No           No                   No                  No
## 1331                  Yes          Yes                  Yes                 Yes
## 1332                  Yes          Yes                  Yes                 Yes
## 1333                  Yes           No                   No                  No
## 1334                   No           No                   No                  No
## 1335                   No           No                   No                  No
## 1336                  Yes          Yes                   No                 Yes
## 1337                   No           No                   No                  No
## 1338                   No           No                   No                  No
## 1339                   No           No                   No                  No
## 1340                   No           No                   No                  No
## 1341                   No           No                   No                  No
## 1342                   No           No                   No                  No
## 1343                   No           No                   No                  No
## 1345                   No           No                   No                  No
## 1346                  Yes          Yes                  Yes                 Yes
## 1347                   No           No                   No                  No
## 1348                   No           No                   No                  No
## 1349                   No           No                   No                  No
## 1350                  Yes          Yes                  Yes                 Yes
## 1351                  Yes           No                  Yes                 Yes
## 1352                   No           No                   No                  No
## 1354                   No           No                   No                  No
## 1355                  Yes          Yes                  Yes                  No
## 1356                   No           No                   No                  No
## 1357                   No           No                   No                  No
## 1358                  Yes           No                  Yes                 Yes
## 1359                  Yes          Yes                   No                  No
## 1360                   No           No                   No                  No
## 1361                  Yes          Yes                  Yes                  No
## 1362                   No           No                   No                  No
## 1363                  Yes          Yes                  Yes                 Yes
## 1364                  Yes           No                   No                 Yes
## 1365                   No           No                   No                  No
## 1366                   No           No                   No                  No
## 1367                  Yes          Yes                  Yes                 Yes
## 1368                   No           No                   No                  No
## 1369                  Yes          Yes                  Yes                  No
## 1370                  Yes          Yes                   No                  No
## 1371                   No           No                   No                  No
## 1372                  Yes          Yes                  Yes                 Yes
## 1373                  Yes          Yes                  Yes                 Yes
## 1374                  Yes          Yes                   No                  No
## 1375                   No           No                   No                  No
## 1376                  Yes          Yes                  Yes                 Yes
## 1377                   No           No                   No                  No
## 1379                  Yes          Yes                   No                  No
## 1380                   No           No                   No                  No
## 1381                  Yes          Yes                   No                 Yes
## 1382                  Yes          Yes                  Yes                 Yes
## 1383                   No           No                   No                  No
## 1385                   No           No                   No                  No
## 1386                   No           No                   No                  No
## 1387                   No           No                   No                  No
## 1388                  Yes          Yes                  Yes                  No
## 1389                   No           No                   No                  No
## 1390                   No           No                   No                  No
## 1391                  Yes          Yes                   No                 Yes
## 1392                  Yes          Yes                  Yes                 Yes
## 1393                   No           No                   No                  No
## 1394                   No           No                   No                  No
## 1395                  Yes          Yes                  Yes                 Yes
## 1396                   No           No                   No                  No
## 1397                  Yes          Yes                  Yes                  No
## 1398                  Yes          Yes                  Yes                 Yes
## 1400                  Yes          Yes                  Yes                 Yes
## 1401                  Yes          Yes                  Yes                 Yes
## 1402                   No           No                   No                  No
## 1403                  Yes          Yes                  Yes                 Yes
## 1404                   No           No                   No                  No
## 1405                   No           No                   No                  No
## 1406                   No           No                   No                  No
## 1407                  Yes          Yes                  Yes                  No
## 1408                   No           No                   No                  No
## 1409                   No           No                   No                  No
## 1410                   No           No                   No                  No
## 1411                  Yes          Yes                   No                  No
## 1412                   No           No                  Yes                  No
## 1413                   No           No                   No                  No
## 1414                   No           No                   No                  No
## 1415                  Yes          Yes                   No                 Yes
## 1416                   No           No                   No                  No
## 1417                  Yes          Yes                  Yes                 Yes
## 1418                   No           No                   No                  No
## 1420                   No           No                   No                  No
## 1421                  Yes          Yes                   No                 Yes
## 1422                  Yes          Yes                  Yes                 Yes
## 1423                   No           No                   No                  No
## 1424                   No          Yes                   No                  No
## 1425                   No           No                   No                  No
## 1426                  Yes          Yes                  Yes                 Yes
## 1428                  Yes           No                  Yes                 Yes
## 1429                   No           No                   No                  No
## 1430                   No           No                   No                  No
## 1431                   No           No                   No                  No
## 1432                  Yes          Yes                  Yes                 Yes
## 1433                  Yes          Yes                  Yes                 Yes
## 1434                  Yes          Yes                  Yes                 Yes
## 1435                   No           No                   No                  No
## 1436                  Yes          Yes                   No                  No
## 1437                   No           No                   No                  No
## 1438                   No           No                   No                  No
## 1439                   No           No                   No                  No
## 1441                   No           No                   No                  No
## 1442                  Yes          Yes                   No                  No
## 1443                   No           No                   No                  No
## 1444                   No           No                   No                  No
## 1445                  Yes          Yes                  Yes                 Yes
## 1446                   No           No                   No                  No
## 1447                  Yes          Yes                  Yes                 Yes
## 1448                  Yes          Yes                  Yes                  No
## 1449                  Yes          Yes                  Yes                 Yes
## 1450                   No          Yes                  Yes                 Yes
## 1451                   No           No                   No                  No
## 1452                   No          Yes                  Yes                 Yes
## 1453                   No           No                   No                  No
## 1454                   No           No                   No                  No
## 1455                   No           No                   No                  No
## 1456                  Yes          Yes                  Yes                  No
## 1457                  Yes          Yes                   No                  No
## 1458                   No           No                   No                  No
## 1459                  Yes          Yes                  Yes                 Yes
## 1460                   No           No                   No                  No
## 1461                   No           No                   No                  No
## 1462                  Yes          Yes                  Yes                  No
## 1463                  Yes          Yes                  Yes                  No
## 1464                  Yes          Yes                  Yes                 Yes
## 1465                  Yes          Yes                  Yes                 Yes
## 1466                  Yes          Yes                   No                 Yes
## 1467                   No           No                   No                  No
## 1468                  Yes          Yes                  Yes                 Yes
## 1469                   No           No                   No                  No
## 1470                   No           No                   No                  No
## 1471                   No           No                   No                  No
## 1472                  Yes          Yes                  Yes                 Yes
## 1473                  Yes          Yes                  Yes                 Yes
## 1474                  Yes          Yes                  Yes                 Yes
## 1475                  Yes          Yes                  Yes                 Yes
## 1476                  Yes          Yes                  Yes                  No
## 1478                   No           No                   No                  No
## 1479                   No           No                   No                  No
## 1480                  Yes          Yes                  Yes                 Yes
## 1481                  Yes          Yes                  Yes                 Yes
## 1482                   No           No                   No                  No
## 1483                  Yes          Yes                   No                 Yes
## 1484                  Yes          Yes                   No                 Yes
## 1485                   No           No                   No                  No
## 1486                   No           No                   No                  No
## 1487                  Yes          Yes                  Yes                 Yes
## 1488                   No           No                   No                  No
## 1490                   No           No                   No                  No
## 1491                  Yes          Yes                  Yes                 Yes
## 1492                  Yes          Yes                  Yes                 Yes
## 1493                  Yes          Yes                   No                 Yes
## 1495                   No           No                   No                  No
## 1496                   No           No                   No                  No
## 1497                   No           No                   No                  No
## 1498                   No           No                   No                  No
## 1499                   No           No                   No                  No
## 1500                  Yes          Yes                  Yes                 Yes
## 1501                  Yes          Yes                  Yes                 Yes
## 1502                  Yes          Yes                  Yes                 Yes
## 1503                   No           No                   No                  No
## 1504                   No           No                   No                  No
## 1505                  Yes          Yes                  Yes                 Yes
## 1506                  Yes           No                   No                  No
## 1507                  Yes          Yes                  Yes                 Yes
## 1508                   No           No                   No                  No
## 1509                  Yes          Yes                  Yes                 Yes
## 1511                  Yes          Yes                  Yes                  No
## 1512                  Yes          Yes                  Yes                 Yes
## 1513                   No           No                   No                  No
## 1514                  Yes           No                   No                  No
## 1515                   No           No                   No                  No
## 1516                   No           No                   No                  No
## 1517                   No           No                   No                  No
## 1518                  Yes          Yes                  Yes                 Yes
## 1519                  Yes          Yes                  Yes                  No
## 1520                  Yes          Yes                  Yes                 Yes
## 1521                   No           No                   No                  No
## 1522                  Yes          Yes                   No                 Yes
## 1523                  Yes          Yes                  Yes                 Yes
## 1524                   No           No                   No                  No
## 1525                  Yes          Yes                  Yes                 Yes
## 1526                   No           No                   No                  No
## 1527                  Yes          Yes                  Yes                 Yes
## 1528                   No           No                   No                  No
## 1529                   No           No                   No                  No
## 1530                  Yes          Yes                  Yes                 Yes
## 1531                   No           No                   No                  No
## 1532                  Yes          Yes                   No                  No
## 1533                   No           No                   No                  No
## 1534                   No           No                   No                  No
## 1536                   No           No                   No                  No
## 1537                   No           No                   No                  No
## 1538                   No           No                   No                  No
## 1539                  Yes          Yes                  Yes                  No
## 1540                  Yes          Yes                  Yes                 Yes
## 1541                  Yes          Yes                  Yes                  No
## 1542                  Yes          Yes                  Yes                 Yes
## 1543                  Yes          Yes                  Yes                  No
## 1544                   No           No                   No                  No
## 1545                  Yes          Yes                  Yes                 Yes
## 1546                   No           No                   No                  No
## 1547                   No           No                   No                  No
## 1548                   No           No                   No                  No
## 1549                   No           No                   No                  No
## 1550                  Yes          Yes                  Yes                 Yes
## 1551                  Yes          Yes                  Yes                 Yes
## 1552                  Yes          Yes                  Yes                 Yes
## 1553                  Yes          Yes                  Yes                 Yes
## 1554                  Yes          Yes                   No                 Yes
## 1555                  Yes          Yes                  Yes                  No
## 1556                   No           No                   No                  No
## 1557                   No           No                   No                  No
## 1558                  Yes          Yes                  Yes                  No
## 1559                   No           No                   No                  No
## 1560                  Yes          Yes                  Yes                 Yes
## 1561                  Yes          Yes                  Yes                 Yes
## 1562                  Yes          Yes                  Yes                 Yes
## 1564                   No           No                   No                  No
## 1565                   No           No                   No                  No
## 1566                  Yes          Yes                  Yes                 Yes
## 1567                   No           No                   No                  No
## 1568                  Yes           No                  Yes                 Yes
## 1569                   No           No                   No                  No
## 1570                   No           No                   No                  No
## 1571                  Yes          Yes                  Yes                 Yes
## 1574                  Yes          Yes                  Yes                 Yes
## 1575                  Yes          Yes                  Yes                 Yes
## 1576                  Yes          Yes                   No                 Yes
## 1578                  Yes          Yes                  Yes                 Yes
## 1579                  Yes          Yes                  Yes                 Yes
## 1580                  Yes          Yes                  Yes                 Yes
## 1581                  Yes          Yes                  Yes                  No
## 1582                   No           No                   No                  No
## 1584                   No           No                   No                  No
## 1585                  Yes          Yes                  Yes                 Yes
## 1586                  Yes          Yes                  Yes                  No
## 1587                   No           No                   No                  No
## 1588                   No           No                   No                  No
## 1589                  Yes          Yes                  Yes                 Yes
## 1590                   No           No                   No                  No
## 1591                   No           No                   No                  No
## 1592                   No           No                   No                  No
## 1593                   No           No                   No                  No
## 1594                   No           No                   No                  No
## 1595                   No           No                   No                  No
## 1596                  Yes          Yes                  Yes                  No
## 1597                   No           No                   No                  No
## 1598                   No           No                   No                  No
## 1600                  Yes          Yes                  Yes                  No
## 1601                  Yes          Yes                  Yes                 Yes
## 1602                  Yes          Yes                   No                 Yes
## 1603                   No           No                   No                  No
## 1604                   No           No                   No                  No
## 1605                  Yes          Yes                  Yes                 Yes
## 1606                  Yes          Yes                  Yes                 Yes
## 1607                  Yes          Yes                  Yes                 Yes
## 1608                  Yes          Yes                   No                  No
## 1609                   No           No                   No                  No
## 1610                  Yes          Yes                  Yes                 Yes
## 1611                   No           No                   No                  No
## 1612                  Yes          Yes                  Yes                 Yes
## 1613                  Yes          Yes                  Yes                 Yes
## 1614                   No           No                   No                  No
## 1615                   No           No                   No                  No
## 1616                   No           No                   No                  No
## 1617                  Yes          Yes                   No                  No
## 1618                  Yes           No                   No                  No
## 1619                   No           No                   No                  No
## 1620                   No           No                   No                  No
## 1621                  Yes          Yes                  Yes                 Yes
## 1622                   No           No                   No                  No
## 1624                   No           No                   No                  No
## 1625                  Yes          Yes                  Yes                 Yes
## 1626                  Yes           No                  Yes                 Yes
## 1627                   No           No                   No                  No
## 1629                   No           No                   No                  No
## 1630                   No           No                   No                  No
## 1631                   No           No                   No                  No
## 1633                   No           No                   No                  No
## 1634                   No           No                   No                  No
## 1635                  Yes          Yes                  Yes                  No
## 1636                  Yes          Yes                  Yes                 Yes
## 1637                   No           No                   No                  No
## 1638                  Yes          Yes                  Yes                  No
## 1640                  Yes          Yes                  Yes                 Yes
## 1641                   No          Yes                  Yes                 Yes
## 1642                   No           No                   No                  No
## 1643                  Yes           No                   No                  No
## 1644                   No           No                   No                  No
## 1645                  Yes          Yes                   No                 Yes
## 1646                   No           No                   No                  No
## 1647                   No           No                   No                  No
## 1648                  Yes          Yes                  Yes                 Yes
## 1649                  Yes          Yes                  Yes                 Yes
## 1651                   No           No                   No                  No
## 1652                  Yes          Yes                  Yes                 Yes
## 1653                  Yes          Yes                  Yes                  No
## 1654                   No           No                   No                  No
## 1655                  Yes          Yes                  Yes                  No
## 1656                  Yes          Yes                  Yes                 Yes
## 1657                   No           No                   No                  No
## 1658                  Yes          Yes                   No                  No
## 1659                   No           No                   No                  No
## 1662                   No           No                   No                  No
## 1663                  Yes          Yes                  Yes                  No
## 1664                   No           No                   No                  No
## 1665                  Yes          Yes                  Yes                 Yes
## 1666                   No           No                   No                  No
## 1667                  Yes          Yes                  Yes                 Yes
## 1669                   No           No                   No                  No
## 1670                   No           No                   No                  No
## 1671                   No           No                   No                  No
## 1672                   No           No                   No                  No
## 1673                  Yes          Yes                  Yes                 Yes
## 1674                  Yes           No                  Yes                 Yes
## 1675                  Yes          Yes                  Yes                 Yes
## 1676                  Yes          Yes                  Yes                 Yes
## 1677                   No           No                   No                  No
## 1678                   No           No                   No                  No
## 1679                   No           No                   No                  No
## 1680                  Yes          Yes                  Yes                  No
## 1681                  Yes          Yes                  Yes                 Yes
## 1682                   No           No                   No                  No
## 1683                   No           No                   No                  No
## 1684                  Yes          Yes                  Yes                 Yes
## 1685                   No           No                   No                  No
## 1687                  Yes          Yes                  Yes                 Yes
## 1688                   No           No                   No                  No
## 1689                   No           No                   No                  No
## 1690                   No           No                   No                  No
## 1691                   No           No                   No                  No
## 1692                  Yes          Yes                   No                  No
## 1693                  Yes          Yes                  Yes                  No
## 1694                   No           No                   No                  No
## 1695                   No           No                   No                  No
## 1696                   No           No                   No                  No
## 1697                   No           No                   No                  No
## 1698                  Yes          Yes                  Yes                 Yes
## 1699                   No           No                   No                  No
## 1700                   No           No                   No                  No
## 1701                  Yes          Yes                  Yes                 Yes
## 1702                  Yes          Yes                  Yes                 Yes
## 1703                  Yes          Yes                  Yes                 Yes
## 1704                   No           No                   No                  No
## 1705                  Yes          Yes                  Yes                 Yes
## 1706                  Yes          Yes                  Yes                  No
## 1707                  Yes          Yes                  Yes                 Yes
## 1708                   No           No                   No                  No
## 1709                  Yes           No                   No                  No
## 1710                   No           No                   No                  No
## 1711                  Yes          Yes                  Yes                 Yes
## 1712                   No           No                   No                  No
## 1713                   No           No                   No                  No
## 1714                   No           No                   No                  No
## 1715                   No           No                   No                  No
## 1716                   No           No                   No                  No
## 1717                  Yes          Yes                  Yes                 Yes
## 1718                   No           No                   No                  No
## 1719                   No          Yes                   No                  No
## 1720                   No           No                   No                  No
## 1721                   No           No                   No                  No
## 1723                   No           No                   No                  No
## 1724                   No           No                   No                  No
## 1725                   No           No                   No                  No
## 1726                  Yes          Yes                  Yes                 Yes
## 1727                   No           No                   No                  No
## 1728                   No           No                   No                  No
## 1729                  Yes          Yes                  Yes                 Yes
## 1730                   No           No                   No                  No
## 1731                  Yes          Yes                  Yes                  No
## 1732                   No           No                   No                  No
## 1733                   No           No                   No                  No
## 1734                   No           No                   No                  No
## 1735                  Yes          Yes                   No                 Yes
## 1736                  Yes          Yes                  Yes                  No
## 1737                   No           No                   No                  No
## 1738                   No           No                   No                  No
## 1739                  Yes          Yes                  Yes                  No
## 1740                   No           No                   No                  No
## 1741                   No           No                   No                  No
## 1742                   No           No                   No                  No
## 1743                  Yes          Yes                  Yes                  No
## 1744                   No           No                   No                  No
## 1745                  Yes          Yes                  Yes                 Yes
## 1746                  Yes          Yes                  Yes                  No
## 1747                  Yes          Yes                  Yes                 Yes
## 1748                   No           No                   No                  No
## 1749                  Yes          Yes                  Yes                 Yes
## 1750                   No           No                   No                  No
## 1751                   No           No                   No                  No
## 1752                   No           No                   No                  No
## 1753                  Yes          Yes                   No                  No
## 1754                  Yes          Yes                   No                  No
## 1756                  Yes          Yes                  Yes                 Yes
## 1757                   No           No                   No                  No
## 1758                   No           No                   No                  No
## 1759                   No           No                   No                  No
## 1760                   No          Yes                  Yes                  No
## 1761                   No           No                   No                  No
## 1762                  Yes          Yes                  Yes                  No
## 1763                   No           No                   No                  No
## 1764                   No           No                   No                  No
## 1765                   No           No                   No                  No
## 1766                   No           No                   No                  No
## 1768                   No           No                   No                  No
## 1769                  Yes          Yes                  Yes                  No
## 1770                  Yes          Yes                   No                  No
## 1771                  Yes          Yes                  Yes                  No
## 1772                  Yes          Yes                  Yes                 Yes
## 1773                  Yes          Yes                  Yes                 Yes
## 1774                  Yes          Yes                  Yes                 Yes
## 1775                  Yes          Yes                  Yes                 Yes
## 1776                   No           No                   No                  No
## 1777                   No           No                   No                  No
## 1778                   No           No                   No                  No
## 1779                  Yes          Yes                  Yes                 Yes
## 1780                  Yes          Yes                  Yes                 Yes
## 1781                   No           No                   No                  No
## 1782                  Yes          Yes                  Yes                  No
## 1783                   No           No                   No                  No
## 1784                  Yes          Yes                  Yes                 Yes
## 1785                   No           No                   No                  No
## 1786                  Yes          Yes                  Yes                  No
## 1787                  Yes          Yes                   No                  No
## 1788                  Yes          Yes                  Yes                  No
## 1789                  Yes          Yes                  Yes                 Yes
## 1790                   No           No                   No                  No
## 1791                   No           No                   No                  No
## 1792                  Yes          Yes                  Yes                  No
## 1793                  Yes          Yes                  Yes                 Yes
## 1794                   No           No                   No                  No
## 1795                   No           No                   No                  No
## 1796                   No           No                   No                  No
## 1797                  Yes          Yes                  Yes                 Yes
## 1798                  Yes          Yes                   No                 Yes
## 1799                  Yes          Yes                  Yes                 Yes
## 1801                  Yes          Yes                  Yes                  No
## 1802                   No           No                   No                  No
## 1803                   No           No                   No                  No
## 1804                  Yes          Yes                  Yes                 Yes
## 1805                  Yes           No                  Yes                 Yes
## 1806                   No           No                   No                  No
## 1808                  Yes          Yes                  Yes                 Yes
## 1809                  Yes          Yes                  Yes                 Yes
## 1810                  Yes          Yes                  Yes                 Yes
## 1811                  Yes          Yes                  Yes                  No
## 1812                  Yes          Yes                  Yes                  No
## 1813                   No           No                   No                  No
## 1814                  Yes           No                   No                  No
## 1815                   No           No                   No                  No
## 1816                   No           No                   No                  No
## 1817                   No           No                   No                  No
## 1818                   No           No                   No                  No
## 1819                  Yes          Yes                  Yes                  No
## 1820                  Yes          Yes                  Yes                 Yes
## 1821                   No           No                   No                  No
## 1822                  Yes          Yes                  Yes                 Yes
## 1823                   No           No                   No                  No
## 1824                  Yes          Yes                  Yes                  No
## 1825                   No           No                   No                  No
## 1826                   No           No                   No                  No
## 1827                   No           No                   No                  No
## 1828                  Yes          Yes                  Yes                  No
## 1830                  Yes          Yes                  Yes                  No
## 1831                  Yes          Yes                  Yes                 Yes
## 1832                   No           No                   No                  No
## 1833                  Yes          Yes                  Yes                 Yes
## 1834                   No           No                   No                  No
## 1835                  Yes          Yes                  Yes                 Yes
## 1836                   No           No                   No                  No
## 1837                  Yes          Yes                  Yes                 Yes
## 1838                   No           No                  Yes                 Yes
## 1839                  Yes          Yes                  Yes                  No
## 1840                   No           No                   No                  No
## 1841                  Yes          Yes                  Yes                 Yes
## 1842                  Yes          Yes                  Yes                  No
## 1843                   No           No                   No                  No
## 1844                   No           No                   No                  No
## 1845                   No           No                   No                  No
## 1846                  Yes          Yes                   No                 Yes
## 1847                   No           No                   No                  No
## 1848                   No           No                   No                  No
## 1849                  Yes          Yes                  Yes                 Yes
## 1850                   No           No                   No                  No
## 1851                  Yes          Yes                  Yes                 Yes
## 1852                   No           No                   No                  No
## 1853                  Yes          Yes                  Yes                  No
## 1854                  Yes          Yes                  Yes                 Yes
## 1855                  Yes          Yes                  Yes                 Yes
## 1856                  Yes          Yes                  Yes                 Yes
## 1857                   No           No                   No                  No
## 1858                   No           No                   No                  No
## 1859                   No           No                   No                  No
## 1860                  Yes          Yes                   No                  No
## 1861                  Yes          Yes                  Yes                 Yes
## 1862                   No           No                   No                  No
## 1863                   No           No                   No                  No
## 1864                   No           No                  Yes                 Yes
## 1865                  Yes           No                   No                  No
## 1866                  Yes          Yes                  Yes                  No
## 1867                   No           No                   No                  No
## 1868                   No           No                   No                  No
## 1870                   No           No                   No                  No
## 1871                   No           No                   No                  No
## 1872                   No           No                   No                  No
## 1873                  Yes          Yes                  Yes                 Yes
## 1874                   No           No                   No                  No
## 1875                   No           No                   No                  No
## 1876                   No           No                   No                  No
## 1877                  Yes          Yes                  Yes                 Yes
## 1878                  Yes          Yes                  Yes                 Yes
## 1879                   No           No                   No                  No
## 1880                  Yes          Yes                  Yes                 Yes
## 1881                   No           No                   No                  No
## 1882                  Yes           No                   No                  No
## 1883                  Yes          Yes                  Yes                 Yes
## 1884                  Yes          Yes                  Yes                 Yes
## 1885                  Yes          Yes                  Yes                  No
## 1886                   No           No                   No                  No
## 1887                   No           No                   No                  No
## 1888                   No           No                   No                  No
## 1889                   No          Yes                  Yes                 Yes
## 1890                  Yes           No                  Yes                  No
## 1891                   No           No                   No                  No
## 1892                   No           No                   No                  No
## 1893                  Yes          Yes                  Yes                  No
## 1894                   No           No                   No                  No
## 1895                   No           No                   No                  No
## 1896                   No           No                   No                  No
## 1897                   No           No                   No                  No
## 1898                   No           No                   No                  No
## 1899                   No           No                   No                  No
## 1900                   No           No                   No                  No
## 1901                   No           No                   No                  No
## 1902                  Yes          Yes                  Yes                  No
## 1903                   No           No                   No                  No
## 1904                   No           No                   No                  No
## 1905                   No           No                   No                  No
## 1906                   No           No                   No                  No
## 1907                   No           No                   No                  No
## 1908                  Yes          Yes                   No                 Yes
## 1909                   No           No                   No                  No
## 1912                   No           No                   No                  No
## 1913                  Yes           No                   No                  No
## 1914                   No           No                   No                  No
## 1915                  Yes          Yes                  Yes                  No
## 1916                   No           No                   No                  No
## 1917                  Yes           No                  Yes                 Yes
## 1918                  Yes          Yes                  Yes                 Yes
## 1919                  Yes          Yes                  Yes                  No
## 1920                  Yes          Yes                  Yes                 Yes
## 1921                   No           No                   No                  No
## 1922                  Yes          Yes                   No                  No
## 1923                   No           No                   No                  No
## 1924                   No           No                   No                  No
## 1925                  Yes          Yes                  Yes                  No
## 1926                   No           No                   No                  No
## 1927                  Yes          Yes                   No                  No
## 1928                  Yes          Yes                  Yes                  No
## 1929                   No           No                   No                  No
## 1931                  Yes          Yes                  Yes                 Yes
## 1932                  Yes          Yes                  Yes                 Yes
## 1933                   No           No                   No                  No
## 1934                  Yes          Yes                  Yes                 Yes
## 1935                   No           No                   No                  No
## 1936                  Yes          Yes                  Yes                 Yes
## 1937                   No           No                   No                  No
## 1938                   No           No                   No                  No
## 1939                   No           No                   No                  No
## 1940                  Yes          Yes                  Yes                  No
## 1941                  Yes          Yes                  Yes                  No
## 1942                  Yes          Yes                  Yes                 Yes
## 1943                   No          Yes                   No                 Yes
## 1945                  Yes          Yes                  Yes                 Yes
## 1946                  Yes          Yes                  Yes                  No
## 1947                  Yes          Yes                  Yes                 Yes
## 1948                  Yes          Yes                  Yes                  No
## 1949                  Yes          Yes                  Yes                 Yes
## 1950                  Yes          Yes                   No                  No
## 1951                   No           No                   No                  No
## 1952                  Yes          Yes                  Yes                 Yes
## 1953                   No           No                   No                  No
## 1954                  Yes          Yes                  Yes                 Yes
## 1955                   No           No                   No                  No
## 1956                   No           No                   No                  No
## 1957                   No           No                   No                  No
## 1958                  Yes          Yes                  Yes                  No
## 1959                   No           No                   No                  No
## 1960                   No           No                   No                  No
## 1961                   No           No                   No                  No
## 1962                   No           No                   No                  No
## 1963                  Yes          Yes                  Yes                 Yes
## 1964                  Yes          Yes                  Yes                  No
## 1965                   No          Yes                   No                 Yes
## 1966                  Yes          Yes                  Yes                 Yes
## 1967                   No           No                   No                  No
## 1968                  Yes          Yes                  Yes                  No
## 1969                  Yes          Yes                  Yes                  No
## 1970                   No           No                   No                  No
## 1972                   No           No                   No                  No
## 1973                   No           No                   No                  No
## 1974                  Yes          Yes                  Yes                 Yes
## 1975                   No           No                   No                  No
## 1976                  Yes          Yes                   No                  No
## 1977                   No           No                   No                  No
## 1978                   No           No                   No                  No
## 1979                   No           No                   No                  No
## 1980                  Yes          Yes                  Yes                 Yes
## 1981                   No           No                   No                  No
## 1982                  Yes          Yes                  Yes                 Yes
## 1983                  Yes          Yes                  Yes                 Yes
## 1984                   No           No                   No                  No
## 1985                  Yes          Yes                  Yes                 Yes
## 1986                   No           No                   No                  No
## 1987                   No           No                   No                  No
## 1988                  Yes          Yes                   No                  No
## 1990                   No           No                   No                  No
## 1992                   No           No                   No                  No
## 1993                   No           No                   No                  No
## 1994                  Yes          Yes                  Yes                  No
## 1995                  Yes          Yes                  Yes                 Yes
## 1996                   No           No                   No                  No
## 1998                  Yes          Yes                  Yes                 Yes
## 1999                   No           No                   No                  No
## 2000                   No           No                   No                  No
## 2001                  Yes          Yes                  Yes                 Yes
## 2002                   No           No                   No                  No
## 2003                   No           No                   No                  No
## 2004                  Yes          Yes                  Yes                  No
## 2005                  Yes          Yes                  Yes                 Yes
## 2006                  Yes          Yes                  Yes                 Yes
## 2007                   No           No                   No                  No
## 2008                  Yes          Yes                   No                  No
## 2009                  Yes          Yes                  Yes                 Yes
## 2010                   No           No                   No                  No
## 2011                  Yes          Yes                  Yes                 Yes
## 2014                  Yes          Yes                  Yes                 Yes
## 2015                  Yes          Yes                   No                  No
## 2016                  Yes          Yes                  Yes                  No
## 2018                  Yes          Yes                   No                  No
## 2019                   No           No                   No                  No
## 2020                   No           No                   No                  No
## 2021                  Yes          Yes                  Yes                 Yes
## 2022                  Yes          Yes                  Yes                  No
## 2023                   No           No                   No                  No
## 2024                   No           No                   No                  No
## 2025                  Yes          Yes                  Yes                 Yes
## 2026                   No           No                   No                  No
## 2027                   No           No                   No                  No
## 2028                   No           No                   No                  No
## 2029                   No           No                   No                  No
## 2030                  Yes          Yes                  Yes                  No
## 2031                  Yes          Yes                  Yes                 Yes
## 2032                   No           No                   No                  No
## 2033                  Yes          Yes                  Yes                 Yes
## 2034                   No           No                   No                  No
## 2036                   No           No                   No                  No
## 2037                   No           No                   No                  No
## 2038                  Yes           No                   No                 Yes
## 2039                  Yes          Yes                  Yes                 Yes
## 2040                   No           No                   No                  No
## 2041                   No           No                   No                  No
## 2042                   No           No                   No                  No
## 2043                   No           No                   No                  No
## 2044                   No           No                   No                  No
## 2045                   No           No                   No                  No
## 2046                  Yes          Yes                   No                  No
## 2048                   No           No                   No                  No
## 2049                   No           No                   No                  No
## 2050                  Yes          Yes                  Yes                 Yes
## 2052                   No           No                   No                  No
## 2053                   No           No                   No                  No
## 2054                   No           No                   No                  No
## 2055                   No           No                   No                  No
## 2057                  Yes          Yes                  Yes                 Yes
## 2058                   No           No                   No                  No
## 2059                  Yes          Yes                  Yes                  No
## 2060                  Yes          Yes                  Yes                  No
## 2061                  Yes           No                  Yes                  No
## 2062                  Yes          Yes                   No                  No
## 2063                   No           No                   No                  No
## 2064                  Yes          Yes                  Yes                  No
## 2065                  Yes          Yes                  Yes                 Yes
## 2066                   No           No                   No                  No
## 2067                   No           No                   No                  No
## 2069                   No          Yes                  Yes                  No
## 2070                  Yes          Yes                  Yes                  No
## 2071                  Yes          Yes                  Yes                 Yes
## 2072                  Yes          Yes                  Yes                  No
## 2074                  Yes          Yes                  Yes                 Yes
## 2075                   No           No                   No                  No
## 2076                   No           No                   No                  No
## 2077                  Yes          Yes                  Yes                 Yes
## 2078                   No           No                   No                  No
## 2079                   No           No                   No                  No
## 2080                   No           No                   No                  No
## 2081                  Yes          Yes                  Yes                  No
## 2082                   No           No                   No                  No
## 2083                  Yes           No                   No                 Yes
## 2084                   No           No                   No                  No
## 2085                  Yes           No                  Yes                 Yes
## 2086                  Yes          Yes                  Yes                 Yes
## 2087                   No           No                   No                  No
## 2088                  Yes          Yes                   No                 Yes
## 2089                  Yes          Yes                   No                 Yes
## 2090                   No           No                   No                  No
## 2091                   No           No                   No                  No
## 2092                   No           No                   No                  No
## 2093                   No           No                   No                  No
## 2094                  Yes          Yes                  Yes                 Yes
## 2095                  Yes          Yes                   No                  No
## 2096                   No           No                   No                  No
## 2097                  Yes          Yes                   No                 Yes
## 2098                   No           No                   No                  No
## 2099                   No           No                   No                  No
## 2100                   No           No                   No                  No
## 2101                   No           No                   No                  No
## 2102                  Yes          Yes                  Yes                  No
## 2103                  Yes          Yes                   No                  No
## 2104                   No           No                   No                  No
## 2105                  Yes          Yes                  Yes                 Yes
## 2107                  Yes          Yes                  Yes                  No
## 2108                   No           No                   No                  No
## 2110                  Yes          Yes                   No                  No
## 2111                  Yes          Yes                  Yes                 Yes
## 2112                   No           No                   No                 Yes
## 2113                   No          Yes                  Yes                  No
## 2114                   No           No                   No                  No
## 2116                   No           No                   No                  No
## 2117                   No           No                   No                  No
## 2118                   No           No                   No                  No
## 2119                   No           No                   No                  No
## 2120                  Yes          Yes                   No                  No
## 2121                   No           No                   No                  No
## 2122                   No           No                   No                  No
## 2123                   No           No                   No                  No
## 2124                   No           No                   No                  No
## 2125                  Yes          Yes                   No                  No
## 2126                  Yes          Yes                  Yes                 Yes
## 2127                  Yes          Yes                  Yes                 Yes
## 2128                   No           No                   No                  No
## 2129                   No           No                   No                  No
## 2130                  Yes          Yes                  Yes                 Yes
## 2131                   No           No                   No                  No
## 2132                   No           No                   No                  No
## 2133                  Yes          Yes                  Yes                 Yes
## 2134                  Yes           No                  Yes                 Yes
## 2135                  Yes          Yes                  Yes                 Yes
## 2136                   No           No                   No                  No
## 2137                   No           No                   No                  No
## 2138                  Yes          Yes                  Yes                 Yes
## 2139                  Yes          Yes                  Yes                 Yes
## 2140                  Yes          Yes                   No                  No
## 2141                   No           No                   No                  No
## 2143                  Yes          Yes                  Yes                 Yes
## 2144                  Yes          Yes                  Yes                 Yes
## 2145                   No           No                   No                  No
## 2146                   No           No                   No                  No
## 2147                   No           No                   No                  No
## 2148                   No           No                   No                  No
## 2149                  Yes          Yes                   No                  No
## 2150                   No           No                   No                  No
## 2151                   No           No                   No                  No
## 2152                   No           No                   No                  No
## 2153                  Yes          Yes                  Yes                 Yes
## 2154                  Yes          Yes                  Yes                  No
## 2155                   No           No                   No                  No
## 2156                   No           No                   No                  No
## 2157                  Yes          Yes                  Yes                 Yes
## 2158                   No           No                   No                  No
## 2159                   No           No                   No                  No
## 2160                   No           No                   No                  No
## 2161                   No           No                   No                  No
## 2162                   No           No                   No                  No
## 2163                  Yes          Yes                  Yes                 Yes
## 2164                  Yes          Yes                  Yes                 Yes
## 2165                   No           No                   No                  No
## 2166                  Yes          Yes                  Yes                 Yes
## 2167                  Yes          Yes                  Yes                 Yes
## 2168                  Yes          Yes                  Yes                 Yes
## 2169                   No           No                   No                  No
## 2170                   No           No                   No                  No
## 2171                  Yes          Yes                  Yes                  No
## 2172                   No           No                   No                  No
## 2173                  Yes           No                  Yes                 Yes
## 2174                  Yes          Yes                  Yes                 Yes
## 2175                  Yes          Yes                  Yes                 Yes
## 2176                   No           No                   No                  No
## 2177                  Yes          Yes                  Yes                 Yes
## 2178                  Yes           No                  Yes                  No
## 2179                   No           No                   No                  No
## 2180                   No           No                   No                  No
## 2181                   No           No                   No                  No
## 2182                  Yes          Yes                   No                 Yes
## 2183                   No           No                   No                  No
## 2184                   No           No                   No                  No
## 2185                  Yes          Yes                   No                  No
## 2186                   No           No                   No                  No
## 2187                   No           No                   No                  No
## 2188                   No           No                   No                  No
## 2189                  Yes          Yes                  Yes                  No
## 2191                   No           No                   No                  No
## 2192                  Yes          Yes                  Yes                 Yes
## 2193                   No           No                   No                  No
## 2194                  Yes          Yes                   No                  No
## 2195                   No           No                   No                  No
## 2196                   No           No                   No                  No
## 2197                   No           No                   No                  No
## 2198                   No           No                   No                  No
## 2199                  Yes          Yes                  Yes                  No
## 2200                  Yes          Yes                  Yes                 Yes
## 2201                   No           No                   No                  No
## 2202                  Yes          Yes                  Yes                 Yes
## 2203                  Yes          Yes                  Yes                  No
## 2204                  Yes          Yes                  Yes                 Yes
## 2205                  Yes          Yes                  Yes                 Yes
## 2206                  Yes          Yes                  Yes                 Yes
## 2207                   No           No                   No                  No
## 2208                  Yes          Yes                  Yes                 Yes
## 2209                  Yes          Yes                  Yes                  No
## 2210                  Yes          Yes                   No                  No
## 2211                  Yes          Yes                   No                 Yes
## 2212                   No           No                   No                  No
## 2213                   No           No                   No                  No
## 2214                   No           No                   No                  No
## 2215                  Yes          Yes                  Yes                  No
## 2216                   No           No                   No                  No
## 2217                   No           No                   No                  No
## 2218                  Yes          Yes                  Yes                 Yes
## 2219                   No           No                   No                  No
## 2220                   No           No                   No                  No
## 2222                   No           No                   No                  No
## 2223                   No           No                   No                  No
## 2224                   No           No                   No                  No
## 2225                   No           No                   No                  No
## 2227                  Yes          Yes                  Yes                 Yes
## 2229                  Yes          Yes                   No                 Yes
## 2230                  Yes          Yes                  Yes                 Yes
## 2231                   No           No                   No                 Yes
## 2232                   No           No                   No                  No
## 2233                  Yes          Yes                  Yes                 Yes
## 2234                  Yes          Yes                  Yes                  No
## 2235                  Yes          Yes                  Yes                 Yes
## 2236                  Yes          Yes                  Yes                  No
## 2237                  Yes          Yes                  Yes                 Yes
## 2238                  Yes          Yes                  Yes                 Yes
## 2239                   No           No                   No                  No
## 2241                   No           No                   No                  No
## 2242                  Yes          Yes                  Yes                  No
## 2243                   No           No                   No                  No
## 2244                   No           No                   No                  No
## 2245                  Yes          Yes                  Yes                 Yes
## 2246                   No           No                   No                  No
## 2247                   No           No                   No                  No
## 2248                   No           No                   No                  No
## 2249                   No           No                   No                  No
## 2250                  Yes           No                  Yes                  No
## 2251                   No           No                   No                  No
## 2252                   No           No                   No                  No
## 2254                   No           No                   No                  No
## 2255                  Yes          Yes                  Yes                 Yes
## 2256                   No           No                   No                  No
## 2257                   No           No                   No                  No
## 2258                  Yes          Yes                  Yes                 Yes
## 2260                   No           No                   No                  No
## 2261                   No           No                   No                  No
## 2263                   No           No                   No                  No
## 2264                  Yes           No                  Yes                 Yes
## 2265                  Yes          Yes                  Yes                  No
## 2266                   No           No                   No                  No
## 2267                   No           No                   No                  No
## 2268                  Yes          Yes                  Yes                 Yes
## 2269                   No           No                   No                  No
## 2270                   No           No                   No                  No
## 2271                  Yes          Yes                   No                 Yes
## 2272                   No           No                   No                  No
## 2273                  Yes          Yes                  Yes                 Yes
## 2275                   No           No                   No                  No
## 2276                   No           No                   No                  No
## 2277                   No           No                   No                  No
## 2278                  Yes          Yes                  Yes                 Yes
## 2279                   No           No                   No                  No
## 2280                   No           No                   No                  No
## 2281                   No           No                   No                  No
## 2282                   No           No                   No                  No
## 2283                   No           No                   No                  No
## 2284                   No           No                   No                  No
## 2285                   No           No                   No                  No
## 2286                   No           No                   No                  No
## 2287                  Yes          Yes                  Yes                 Yes
## 2288                  Yes          Yes                  Yes                 Yes
## 2289                   No           No                   No                  No
## 2290                  Yes          Yes                   No                  No
## 2291                   No           No                   No                  No
## 2292                  Yes          Yes                  Yes                 Yes
## 2293                  Yes          Yes                   No                  No
## 2294                  Yes          Yes                   No                  No
## 2295                   No           No                   No                  No
## 2296                   No           No                   No                  No
## 2297                  Yes          Yes                  Yes                 Yes
## 2298                   No           No                   No                  No
## 2299                  Yes          Yes                  Yes                  No
## 2300                   No           No                   No                  No
## 2301                  Yes          Yes                  Yes                 Yes
## 2302                   No           No                   No                  No
## 2303                   No           No                   No                  No
## 2304                   No           No                   No                  No
## 2305                   No           No                   No                  No
## 2306                  Yes          Yes                  Yes                 Yes
## 2307                  Yes          Yes                  Yes                  No
## 2308                   No           No                   No                  No
## 2309                   No           No                   No                  No
## 2310                   No           No                   No                  No
## 2311                  Yes          Yes                  Yes                  No
## 2312                  Yes          Yes                  Yes                 Yes
## 2313                  Yes          Yes                  Yes                 Yes
## 2315                  Yes          Yes                  Yes                 Yes
## 2316                  Yes           No                  Yes                 Yes
## 2317                   No           No                   No                  No
## 2318                   No           No                   No                  No
## 2319                   No           No                   No                  No
## 2320                  Yes          Yes                   No                  No
## 2321                   No           No                   No                  No
## 2322                  Yes          Yes                  Yes                 Yes
## 2323                  Yes          Yes                  Yes                 Yes
## 2324                  Yes          Yes                  Yes                 Yes
## 2325                  Yes          Yes                  Yes                  No
## 2326                   No           No                   No                  No
## 2327                   No           No                   No                  No
## 2328                   No           No                   No                  No
## 2329                  Yes          Yes                  Yes                 Yes
## 2330                   No           No                   No                  No
## 2331                  Yes          Yes                  Yes                  No
## 2332                   No           No                   No                  No
## 2333                   No           No                   No                  No
## 2334                   No           No                   No                  No
## 2335                  Yes          Yes                  Yes                 Yes
## 2336                  Yes          Yes                  Yes                 Yes
## 2337                  Yes          Yes                  Yes                  No
## 2338                   No           No                   No                  No
## 2339                   No           No                   No                  No
## 2341                   No           No                   No                  No
## 2342                  Yes          Yes                  Yes                 Yes
## 2343                  Yes          Yes                  Yes                 Yes
## 2344                  Yes          Yes                  Yes                 Yes
## 2345                   No           No                   No                  No
## 2347                   No           No                   No                  No
## 2348                  Yes          Yes                  Yes                 Yes
## 2349                   No           No                   No                  No
## 2350                  Yes          Yes                  Yes                 Yes
## 2351                   No           No                   No                  No
## 2352                   No           No                   No                  No
## 2353                   No           No                   No                  No
## 2354                  Yes          Yes                  Yes                 Yes
## 2355                   No           No                   No                  No
## 2356                   No           No                   No                  No
## 2357                  Yes          Yes                  Yes                  No
## 2358                   No           No                   No                  No
## 2359                   No           No                   No                  No
## 2360                   No           No                   No                  No
## 2361                  Yes           No                  Yes                  No
## 2362                  Yes          Yes                  Yes                 Yes
## 2363                   No           No                   No                  No
## 2364                  Yes          Yes                  Yes                  No
## 2365                   No           No                   No                  No
## 2366                  Yes          Yes                  Yes                 Yes
## 2367                   No           No                   No                  No
## 2368                   No           No                   No                  No
## 2369                  Yes          Yes                  Yes                 Yes
## 2370                   No           No                   No                  No
## 2371                  Yes          Yes                  Yes                 Yes
## 2372                  Yes          Yes                   No                  No
## 2373                   No           No                   No                  No
## 2375                   No           No                   No                  No
## 2376                  Yes          Yes                  Yes                  No
## 2377                   No           No                   No                  No
## 2378                   No           No                   No                  No
## 2379                  Yes          Yes                  Yes                 Yes
## 2380                   No           No                   No                  No
## 2381                   No           No                   No                  No
## 2383                  Yes          Yes                  Yes                 Yes
## 2384                   No           No                   No                  No
## 2385                   No           No                   No                  No
## 2386                   No           No                   No                  No
## 2387                   No           No                   No                  No
## 2388                  Yes           No                  Yes                 Yes
## 2389                   No           No                   No                  No
## 2390                   No           No                   No                  No
## 2391                   No           No                   No                  No
## 2392                  Yes          Yes                   No                  No
## 2394                  Yes          Yes                  Yes                 Yes
## 2395                   No           No                   No                  No
## 2396                  Yes          Yes                  Yes                  No
## 2398                  Yes          Yes                  Yes                 Yes
## 2400                   No           No                   No                  No
## 2401                   No           No                   No                  No
## 2402                   No           No                   No                  No
## 2403                  Yes          Yes                  Yes                 Yes
## 2404                  Yes          Yes                   No                  No
## 2405                  Yes           No                   No                 Yes
## 2406                  Yes          Yes                  Yes                 Yes
## 2407                   No           No                   No                  No
## 2408                   No           No                   No                  No
## 2409                  Yes          Yes                  Yes                  No
## 2410                  Yes           No                  Yes                 Yes
## 2411                  Yes          Yes                   No                  No
## 2412                   No           No                   No                  No
## 2413                  Yes          Yes                  Yes                  No
## 2414                  Yes          Yes                   No                 Yes
## 2415                  Yes          Yes                  Yes                 Yes
## 2416                  Yes          Yes                  Yes                 Yes
## 2417                  Yes           No                   No                  No
## 2418                  Yes          Yes                  Yes                 Yes
## 2419                  Yes          Yes                  Yes                  No
## 2420                   No           No                   No                  No
## 2421                  Yes          Yes                  Yes                  No
## 2422                   No           No                   No                  No
## 2423                  Yes          Yes                  Yes                  No
## 2424                  Yes          Yes                  Yes                 Yes
## 2425                  Yes           No                  Yes                 Yes
## 2427                   No           No                   No                  No
## 2428                  Yes          Yes                  Yes                 Yes
## 2429                   No           No                   No                  No
## 2430                   No           No                   No                  No
## 2431                   No           No                   No                  No
## 2432                  Yes           No                  Yes                 Yes
## 2433                  Yes          Yes                  Yes                  No
## 2434                  Yes          Yes                  Yes                 Yes
## 2435                   No           No                   No                  No
## 2436                   No           No                   No                  No
## 2437                  Yes          Yes                  Yes                  No
## 2438                   No           No                   No                  No
## 2439                   No           No                   No                  No
## 2440                  Yes          Yes                  Yes                 Yes
## 2441                   No           No                   No                  No
## 2442                   No           No                   No                  No
## 2443                  Yes          Yes                  Yes                 Yes
## 2444                   No           No                   No                  No
## 2445                   No           No                   No                  No
## 2446                  Yes          Yes                  Yes                 Yes
## 2447                  Yes          Yes                   No                  No
## 2448                   No           No                   No                  No
## 2449                   No           No                   No                  No
## 2450                  Yes          Yes                   No                  No
## 2451                   No           No                   No                  No
## 2453                  Yes          Yes                  Yes                  No
## 2454                   No           No                   No                  No
## 2455                   No           No                   No                  No
## 2456                  Yes          Yes                  Yes                 Yes
## 2457                   No           No                   No                  No
## 2458                  Yes          Yes                  Yes                 Yes
## 2459                   No           No                   No                  No
## 2460                   No           No                   No                  No
## 2461                   No           No                   No                  No
## 2463                  Yes          Yes                  Yes                 Yes
## 2464                   No           No                   No                  No
## 2465                  Yes          Yes                  Yes                  No
## 2466                   No           No                   No                  No
## 2467                  Yes          Yes                  Yes                 Yes
## 2468                  Yes          Yes                   No                  No
## 2470                  Yes          Yes                  Yes                  No
## 2471                   No          Yes                   No                  No
## 2473                   No           No                   No                  No
## 2474                  Yes          Yes                   No                  No
## 2475                  Yes          Yes                  Yes                 Yes
## 2476                  Yes          Yes                  Yes                 Yes
## 2477                   No           No                   No                  No
## 2478                   No           No                   No                  No
## 2479                   No           No                   No                  No
## 2480                  Yes          Yes                  Yes                  No
## 2483                   No           No                   No                  No
## 2484                  Yes          Yes                  Yes                  No
## 2485                  Yes           No                  Yes                 Yes
## 2486                   No           No                   No                  No
## 2487                   No           No                   No                  No
## 2488                  Yes          Yes                   No                 Yes
## 2489                   No           No                   No                  No
## 2490                   No           No                   No                  No
## 2491                   No           No                   No                  No
## 2492                  Yes          Yes                  Yes                  No
## 2493                  Yes          Yes                  Yes                 Yes
## 2495                  Yes           No                   No                 Yes
## 2496                   No           No                   No                  No
## 2497                  Yes          Yes                  Yes                  No
## 2498                  Yes          Yes                  Yes                  No
## 2499                  Yes          Yes                  Yes                 Yes
## 2500                   No           No                   No                  No
## 2501                  Yes          Yes                  Yes                  No
## 2502                   No          Yes                   No                 Yes
## 2503                   No           No                   No                  No
## 2504                   No           No                   No                  No
## 2505                  Yes          Yes                   No                 Yes
## 2506                  Yes          Yes                   No                  No
## 2507                   No           No                   No                  No
## 2508                  Yes          Yes                  Yes                 Yes
## 2509                   No           No                   No                  No
## 2510                   No           No                   No                  No
## 2511                   No           No                   No                  No
## 2512                   No           No                   No                  No
## 2513                  Yes          Yes                  Yes                 Yes
## 2514                  Yes          Yes                  Yes                 Yes
## 2515                  Yes           No                  Yes                 Yes
## 2518                  Yes          Yes                  Yes                 Yes
## 2519                  Yes          Yes                  Yes                 Yes
## 2520                  Yes          Yes                  Yes                  No
## 2521                  Yes          Yes                  Yes                 Yes
## 2522                  Yes          Yes                  Yes                 Yes
## 2523                   No           No                   No                  No
## 2524                  Yes          Yes                  Yes                 Yes
## 2525                  Yes          Yes                  Yes                 Yes
## 2526                   No           No                   No                  No
## 2527                  Yes          Yes                  Yes                 Yes
## 2528                  Yes          Yes                  Yes                 Yes
## 2529                  Yes          Yes                  Yes                 Yes
## 2531                   No           No                   No                  No
## 2532                  Yes          Yes                  Yes                  No
## 2534                   No           No                   No                  No
## 2535                   No           No                   No                  No
## 2536                  Yes          Yes                  Yes                 Yes
## 2537                   No           No                   No                  No
## 2538                   No           No                   No                  No
## 2539                   No           No                   No                  No
## 2540                   No           No                   No                  No
## 2541                  Yes          Yes                  Yes                 Yes
## 2542                   No           No                   No                  No
## 2543                   No           No                   No                  No
## 2544                   No           No                   No                  No
## 2545                  Yes          Yes                  Yes                 Yes
## 2546                   No           No                   No                  No
## 2547                  Yes          Yes                  Yes                 Yes
## 2548                  Yes          Yes                   No                 Yes
## 2550                  Yes          Yes                  Yes                 Yes
## 2551                   No           No                   No                  No
## 2552                  Yes           No                   No                  No
## 2553                   No           No                   No                  No
## 2554                  Yes          Yes                  Yes                 Yes
## 2555                   No           No                   No                  No
## 2556                   No           No                   No                  No
## 2558                   No           No                   No                  No
## 2559                   No           No                   No                  No
## 2560                  Yes          Yes                  Yes                  No
## 2561                   No           No                   No                  No
## 2562                  Yes          Yes                  Yes                 Yes
## 2563                  Yes          Yes                  Yes                 Yes
## 2564                  Yes          Yes                  Yes                 Yes
## 2565                  Yes          Yes                   No                  No
## 2566                   No           No                   No                  No
## 2567                  Yes          Yes                  Yes                  No
## 2568                  Yes          Yes                  Yes                 Yes
## 2569                  Yes          Yes                  Yes                  No
## 2570                   No           No                   No                  No
## 2571                  Yes          Yes                  Yes                  No
## 2572                   No           No                   No                  No
## 2573                  Yes          Yes                  Yes                 Yes
## 2574                  Yes          Yes                  Yes                  No
## 2575                  Yes          Yes                  Yes                 Yes
## 2576                  Yes          Yes                  Yes                 Yes
## 2577                   No           No                   No                 Yes
## 2578                  Yes          Yes                  Yes                  No
## 2579                  Yes          Yes                  Yes                 Yes
## 2580                   No           No                   No                  No
## 2581                  Yes           No                   No                  No
## 2582                  Yes          Yes                  Yes                  No
## 2583                  Yes          Yes                   No                  No
## 2584                   No           No                   No                  No
## 2585                  Yes          Yes                  Yes                 Yes
## 2586                   No           No                   No                  No
## 2587                  Yes           No                  Yes                 Yes
## 2588                  Yes          Yes                  Yes                  No
## 2589                   No           No                   No                  No
## 2590                   No           No                   No                  No
## 2591                  Yes          Yes                  Yes                  No
## 2592                  Yes          Yes                  Yes                 Yes
## 2593                   No           No                   No                  No
## 2594                   No           No                   No                  No
## 2595                   No           No                   No                  No
## 2596                  Yes          Yes                  Yes                 Yes
## 2598                  Yes          Yes                  Yes                 Yes
## 2599                  Yes          Yes                  Yes                 Yes
## 2600                  Yes          Yes                  Yes                  No
## 2601                  Yes          Yes                  Yes                  No
## 2602                   No           No                   No                  No
## 2603                  Yes          Yes                  Yes                 Yes
## 2604                  Yes          Yes                  Yes                 Yes
## 2605                   No           No                   No                  No
## 2606                  Yes          Yes                  Yes                  No
## 2607                   No           No                   No                  No
## 2608                  Yes          Yes                  Yes                 Yes
## 2609                   No           No                   No                  No
## 2610                   No           No                   No                  No
## 2611                   No           No                   No                  No
## 2612                   No           No                   No                  No
## 2613                  Yes          Yes                  Yes                 Yes
## 2614                   No           No                   No                  No
## 2615                   No           No                   No                  No
## 2616                   No           No                   No                  No
## 2617                  Yes          Yes                   No                  No
## 2618                  Yes          Yes                  Yes                  No
## 2619                   No           No                   No                  No
## 2620                   No           No                   No                  No
## 2621                   No           No                   No                  No
## 2622                   No           No                   No                  No
## 2623                  Yes          Yes                  Yes                 Yes
## 2624                  Yes          Yes                  Yes                 Yes
## 2625                  Yes          Yes                  Yes                 Yes
## 2626                  Yes          Yes                  Yes                  No
## 2627                  Yes          Yes                  Yes                 Yes
## 2628                   No           No                   No                  No
## 2629                  Yes          Yes                  Yes                 Yes
## 2630                   No           No                   No                  No
## 2631                  Yes          Yes                  Yes                 Yes
## 2632                  Yes          Yes                  Yes                 Yes
## 2633                   No           No                   No                  No
## 2634                   No           No                   No                  No
## 2635                   No           No                   No                  No
## 2636                  Yes          Yes                  Yes                 Yes
## 2637                  Yes          Yes                   No                 Yes
## 2638                   No          Yes                   No                  No
## 2639                  Yes          Yes                  Yes                  No
## 2640                   No           No                   No                  No
## 2641                  Yes          Yes                  Yes                 Yes
## 2642                  Yes          Yes                  Yes                  No
## 2643                  Yes          Yes                   No                 Yes
## 2644                   No           No                   No                  No
## 2645                   No           No                   No                  No
## 2646                   No           No                   No                  No
## 2648                  Yes          Yes                  Yes                 Yes
## 2649                   No           No                   No                  No
## 2650                   No           No                   No                  No
## 2651                   No           No                   No                  No
## 2652                  Yes          Yes                   No                  No
## 2653                  Yes          Yes                  Yes                 Yes
## 2654                  Yes          Yes                  Yes                 Yes
## 2655                  Yes          Yes                  Yes                  No
## 2656                  Yes          Yes                   No                  No
## 2657                  Yes          Yes                   No                 Yes
## 2659                   No           No                   No                  No
## 2660                   No           No                   No                  No
## 2661                   No           No                   No                  No
## 2662                   No           No                   No                  No
## 2665                  Yes           No                   No                  No
## 2666                  Yes          Yes                  Yes                 Yes
## 2667                   No           No                   No                  No
## 2669                  Yes           No                  Yes                 Yes
## 2670                  Yes          Yes                  Yes                 Yes
## 2672                   No           No                   No                  No
## 2673                   No           No                   No                  No
## 2674                  Yes          Yes                  Yes                 Yes
## 2675                   No           No                   No                  No
## 2676                  Yes          Yes                   No                  No
## 2677                  Yes          Yes                  Yes                  No
## 2678                   No           No                   No                  No
## 2679                  Yes          Yes                  Yes                 Yes
## 2680                  Yes          Yes                  Yes                 Yes
## 2681                  Yes          Yes                  Yes                  No
## 2682                  Yes          Yes                  Yes                  No
## 2684                  Yes          Yes                  Yes                 Yes
## 2685                  Yes          Yes                   No                 Yes
## 2686                  Yes          Yes                  Yes                 Yes
## 2687                  Yes          Yes                  Yes                 Yes
## 2688                   No           No                   No                  No
## 2689                  Yes          Yes                  Yes                  No
## 2690                  Yes          Yes                  Yes                 Yes
## 2691                  Yes          Yes                  Yes                 Yes
## 2693                   No           No                   No                  No
## 2695                   No           No                   No                  No
## 2696                   No          Yes                  Yes                 Yes
## 2697                  Yes           No                  Yes                 Yes
## 2698                  Yes          Yes                  Yes                  No
## 2699                   No           No                   No                  No
## 2700                  Yes          Yes                  Yes                 Yes
## 2701                   No           No                   No                  No
## 2702                   No           No                   No                  No
## 2703                  Yes          Yes                  Yes                  No
## 2704                   No           No                   No                  No
## 2705                   No           No                   No                  No
## 2706                  Yes           No                   No                  No
## 2707                   No           No                   No                  No
## 2708                   No           No                   No                  No
## 2709                  Yes           No                  Yes                 Yes
## 2710                  Yes           No                   No                  No
## 2711                  Yes          Yes                   No                  No
## 2713                  Yes          Yes                  Yes                 Yes
## 2714                   No           No                   No                  No
## 2715                   No           No                   No                  No
## 2716                   No           No                   No                  No
## 2717                   No           No                   No                  No
## 2718                  Yes          Yes                  Yes                 Yes
## 2720                   No           No                   No                  No
## 2721                  Yes          Yes                  Yes                 Yes
## 2722                  Yes          Yes                   No                  No
## 2723                  Yes          Yes                  Yes                  No
## 2724                  Yes           No                  Yes                 Yes
## 2725                  Yes           No                  Yes                  No
## 2726                   No           No                   No                  No
## 2727                  Yes          Yes                   No                  No
## 2728                  Yes          Yes                  Yes                  No
## 2729                  Yes          Yes                  Yes                 Yes
## 2730                  Yes          Yes                  Yes                 Yes
## 2731                   No           No                   No                  No
## 2732                  Yes          Yes                  Yes                 Yes
## 2733                   No           No                   No                  No
## 2734                  Yes          Yes                  Yes                 Yes
## 2735                  Yes          Yes                   No                  No
## 2737                   No           No                   No                  No
## 2738                  Yes          Yes                  Yes                  No
## 2739                   No           No                   No                  No
## 2740                  Yes          Yes                  Yes                 Yes
## 2741                   No           No                   No                  No
## 2742                  Yes          Yes                  Yes                  No
## 2743                  Yes          Yes                  Yes                 Yes
## 2744                  Yes           No                   No                  No
## 2745                  Yes          Yes                   No                  No
## 2746                   No           No                   No                  No
## 2747                  Yes          Yes                  Yes                  No
## 2748                  Yes          Yes                  Yes                  No
## 2749                  Yes          Yes                  Yes                 Yes
## 2750                   No           No                   No                  No
## 2751                   No           No                   No                  No
## 2752                   No           No                   No                  No
## 2753                  Yes           No                   No                  No
## 2755                  Yes          Yes                  Yes                 Yes
## 2756                   No           No                   No                  No
## 2757                   No           No                   No                  No
## 2760                  Yes          Yes                  Yes                  No
## 2761                  Yes          Yes                  Yes                  No
## 2762                   No           No                   No                  No
## 2763                  Yes          Yes                  Yes                 Yes
## 2764                  Yes          Yes                  Yes                 Yes
## 2765                   No           No                   No                  No
## 2766                  Yes          Yes                  Yes                 Yes
## 2767                   No           No                   No                  No
## 2768                  Yes          Yes                  Yes                  No
## 2769                  Yes          Yes                  Yes                 Yes
## 2770                  Yes          Yes                  Yes                  No
## 2771                  Yes          Yes                  Yes                 Yes
## 2772                   No           No                   No                  No
## 2773                  Yes          Yes                   No                  No
## 2774                   No           No                   No                  No
## 2775                   No           No                   No                  No
## 2776                  Yes          Yes                  Yes                 Yes
## 2777                  Yes          Yes                  Yes                 Yes
## 2778                  Yes          Yes                  Yes                 Yes
## 2779                   No           No                   No                  No
## 2780                   No           No                   No                  No
## 2781                  Yes          Yes                  Yes                  No
## 2782                   No           No                   No                  No
## 2783                   No           No                   No                  No
## 2784                   No           No                   No                  No
## 2785                  Yes          Yes                  Yes                  No
## 2786                  Yes          Yes                  Yes                  No
## 2787                   No           No                   No                  No
## 2788                  Yes          Yes                   No                  No
## 2789                  Yes          Yes                  Yes                 Yes
## 2790                   No           No                   No                  No
## 2791                  Yes          Yes                  Yes                  No
## 2792                  Yes          Yes                  Yes                  No
## 2793                  Yes          Yes                  Yes                 Yes
## 2794                   No           No                   No                  No
## 2795                   No           No                   No                  No
## 2796                  Yes          Yes                  Yes                 Yes
## 2797                   No           No                   No                  No
## 2798                  Yes          Yes                   No                  No
## 2799                   No           No                   No                  No
## 2800                  Yes          Yes                  Yes                 Yes
## 2801                   No           No                   No                  No
## 2802                  Yes          Yes                  Yes                 Yes
## 2803                  Yes          Yes                  Yes                 Yes
## 2804                  Yes          Yes                   No                  No
## 2805                   No           No                   No                  No
## 2806                  Yes           No                  Yes                  No
## 2807                  Yes          Yes                  Yes                  No
## 2808                   No           No                   No                  No
## 2809                  Yes          Yes                  Yes                  No
## 2810                   No           No                   No                  No
## 2811                  Yes          Yes                  Yes                 Yes
## 2813                  Yes          Yes                  Yes                 Yes
## 2814                   No           No                   No                  No
## 2815                  Yes          Yes                  Yes                 Yes
## 2816                  Yes          Yes                  Yes                 Yes
## 2817                   No           No                   No                  No
## 2818                  Yes          Yes                  Yes                 Yes
## 2821                  Yes           No                  Yes                  No
## 2822                  Yes          Yes                  Yes                 Yes
## 2823                   No           No                   No                  No
## 2824                  Yes          Yes                  Yes                 Yes
## 2825                  Yes          Yes                  Yes                 Yes
## 2826                  Yes          Yes                   No                  No
## 2827                  Yes          Yes                  Yes                  No
## 2828                  Yes          Yes                  Yes                  No
## 2829                   No           No                   No                  No
## 2831                  Yes          Yes                  Yes                 Yes
## 2832                  Yes          Yes                   No                  No
## 2833                  Yes          Yes                  Yes                 Yes
## 2834                  Yes          Yes                  Yes                 Yes
## 2835                  Yes          Yes                  Yes                  No
## 2836                  Yes          Yes                  Yes                  No
## 2837                  Yes          Yes                  Yes                 Yes
## 2838                   No           No                   No                  No
## 2839                  Yes          Yes                   No                  No
## 2840                   No           No                   No                  No
## 2841                  Yes          Yes                  Yes                 Yes
## 2842                  Yes          Yes                  Yes                 Yes
## 2843                  Yes           No                   No                  No
## 2844                  Yes          Yes                  Yes                 Yes
## 2845                  Yes          Yes                  Yes                  No
## 2846                   No           No                   No                  No
## 2850                  Yes          Yes                  Yes                 Yes
## 2851                   No           No                   No                  No
## 2852                   No           No                   No                  No
## 2853                  Yes          Yes                  Yes                  No
## 2854                   No           No                   No                  No
## 2855                  Yes          Yes                  Yes                  No
## 2856                   No           No                   No                  No
## 2857                   No           No                   No                  No
## 2858                  Yes          Yes                  Yes                 Yes
## 2859                  Yes          Yes                  Yes                 Yes
## 2860                  Yes          Yes                  Yes                  No
## 2862                   No           No                   No                  No
## 2863                  Yes           No                  Yes                 Yes
## 2864                  Yes          Yes                  Yes                  No
## 2865                   No           No                   No                  No
## 2866                  Yes          Yes                  Yes                 Yes
## 2868                   No           No                   No                  No
## 2869                  Yes          Yes                  Yes                 Yes
## 2870                  Yes          Yes                  Yes                 Yes
## 2871                  Yes          Yes                  Yes                 Yes
## 2872                   No           No                   No                  No
## 2874                   No           No                   No                  No
## 2875                   No           No                   No                  No
## 2876                   No           No                   No                  No
## 2877                   No           No                   No                  No
## 2878                  Yes          Yes                  Yes                 Yes
## 2879                  Yes          Yes                   No                  No
## 2880                   No           No                   No                  No
## 2881                  Yes          Yes                  Yes                 Yes
## 2882                   No           No                   No                  No
## 2883                  Yes          Yes                   No                  No
## 2885                  Yes          Yes                  Yes                 Yes
## 2886                  Yes          Yes                  Yes                  No
## 2887                   No           No                   No                  No
## 2888                  Yes          Yes                  Yes                 Yes
## 2889                  Yes          Yes                  Yes                 Yes
## 2890                  Yes          Yes                  Yes                 Yes
## 2891                   No           No                   No                  No
## 2892                  Yes          Yes                  Yes                  No
## 2893                  Yes          Yes                   No                  No
## 2894                  Yes          Yes                  Yes                 Yes
## 2895                  Yes          Yes                  Yes                  No
## 2896                   No           No                   No                  No
## 2897                  Yes          Yes                   No                 Yes
## 2898                   No           No                   No                  No
## 2899                  Yes          Yes                  Yes                 Yes
## 2900                   No           No                   No                  No
## 2901                  Yes          Yes                   No                  No
## 2902                  Yes           No                  Yes                  No
## 2903                   No           No                   No                  No
## 2904                  Yes          Yes                  Yes                 Yes
## 2905                   No           No                   No                  No
## 2906                   No           No                   No                  No
## 2909                   No           No                   No                  No
## 2910                   No           No                   No                  No
## 2911                   No           No                   No                  No
## 2912                  Yes          Yes                  Yes                 Yes
## 2913                  Yes          Yes                  Yes                 Yes
## 2914                   No           No                   No                  No
## 2915                   No           No                   No                  No
## 2916                   No           No                   No                  No
## 2917                  Yes          Yes                  Yes                 Yes
## 2918                   No           No                   No                  No
## 2919                   No           No                   No                  No
## 2921                   No           No                   No                  No
## 2922                   No           No                  Yes                  No
## 2923                   No           No                   No                  No
## 2924                   No           No                   No                  No
## 2925                   No           No                   No                  No
## 2926                   No           No                   No                  No
## 2927                   No           No                   No                  No
## 2928                  Yes          Yes                  Yes                 Yes
## 2929                  Yes          Yes                  Yes                 Yes
## 2930                  Yes          Yes                  Yes                 Yes
## 2931                  Yes          Yes                  Yes                 Yes
## 2932                   No           No                   No                  No
## 2933                  Yes          Yes                  Yes                 Yes
## 2934                  Yes          Yes                  Yes                 Yes
## 2935                   No           No                   No                  No
## 2936                  Yes          Yes                  Yes                 Yes
## 2937                  Yes          Yes                  Yes                 Yes
## 2938                  Yes          Yes                  Yes                 Yes
## 2939                   No           No                   No                  No
## 2940                  Yes          Yes                  Yes                  No
## 2941                  Yes          Yes                  Yes                 Yes
## 2942                   No           No                   No                  No
## 2943                   No           No                   No                  No
## 2944                   No           No                   No                  No
## 2946                   No           No                   No                  No
## 2947                  Yes          Yes                  Yes                 Yes
## 2948                   No           No                   No                  No
## 2949                  Yes          Yes                  Yes                 Yes
## 2950                   No           No                   No                  No
## 2951                   No           No                   No                  No
## 2952                   No           No                   No                  No
## 2953                  Yes          Yes                  Yes                 Yes
## 2954                   No           No                   No                  No
## 2955                   No           No                   No                  No
## 2956                   No           No                   No                  No
## 2957                  Yes          Yes                  Yes                 Yes
## 2958                  Yes          Yes                  Yes                 Yes
## 2959                  Yes           No                   No                  No
## 2960                   No           No                   No                  No
## 2961                   No           No                   No                  No
## 2962                   No           No                   No                  No
## 2964                   No           No                   No                  No
## 2965                  Yes          Yes                   No                  No
## 2966                  Yes          Yes                  Yes                 Yes
## 2967                   No           No                   No                  No
## 2968                   No           No                   No                  No
## 2969                   No           No                   No                  No
## 2970                  Yes          Yes                  Yes                  No
## 2971                  Yes          Yes                   No                 Yes
## 2972                  Yes          Yes                  Yes                 Yes
## 2973                  Yes          Yes                   No                  No
## 2974                   No           No                   No                  No
## 2975                   No           No                   No                  No
## 2976                  Yes          Yes                  Yes                 Yes
## 2977                  Yes          Yes                  Yes                 Yes
## 2978                   No           No                   No                  No
## 2980                   No           No                   No                  No
## 2982                  Yes          Yes                   No                  No
## 2983                  Yes          Yes                   No                  No
## 2984                  Yes          Yes                  Yes                 Yes
## 2985                   No           No                   No                  No
## 2986                  Yes          Yes                  Yes                 Yes
## 2987                  Yes          Yes                  Yes                 Yes
## 2988                   No           No                   No                  No
## 2989                  Yes          Yes                  Yes                 Yes
## 2990                  Yes           No                  Yes                  No
## 2991                   No           No                   No                  No
## 2992                  Yes          Yes                  Yes                 Yes
## 2993                  Yes          Yes                   No                 Yes
## 2994                  Yes          Yes                   No                  No
## 2995                   No           No                   No                  No
## 2996                  Yes          Yes                  Yes                 Yes
## 2997                   No           No                   No                  No
## 2998                  Yes          Yes                  Yes                  No
## 2999                  Yes          Yes                  Yes                 Yes
## 3000                  Yes          Yes                  Yes                 Yes
## 3002                  Yes          Yes                  Yes                  No
## 3003                  Yes          Yes                  Yes                 Yes
## 3004                   No           No                   No                  No
## 3005                  Yes          Yes                  Yes                 Yes
## 3006                   No           No                   No                  No
## 3007                  Yes          Yes                  Yes                 Yes
## 3008                  Yes          Yes                  Yes                 Yes
## 3009                  Yes          Yes                  Yes                 Yes
## 3010                  Yes          Yes                  Yes                  No
## 3011                  Yes           No                   No                  No
## 3012                  Yes          Yes                  Yes                  No
## 3013                  Yes          Yes                  Yes                  No
## 3015                  Yes          Yes                  Yes                 Yes
## 3016                   No           No                   No                  No
## 3017                  Yes          Yes                  Yes                  No
## 3018                   No           No                   No                  No
## 3019                  Yes          Yes                  Yes                  No
## 3020                  Yes          Yes                  Yes                  No
## 3021                  Yes           No                  Yes                 Yes
## 3022                  Yes          Yes                  Yes                 Yes
## 3023                  Yes          Yes                   No                 Yes
## 3024                  Yes          Yes                  Yes                 Yes
## 3025                  Yes          Yes                  Yes                 Yes
## 3027                  Yes          Yes                  Yes                  No
## 3028                  Yes           No                   No                 Yes
## 3029                   No           No                   No                  No
## 3030                  Yes          Yes                  Yes                 Yes
## 3031                   No           No                   No                  No
## 3032                  Yes          Yes                  Yes                 Yes
## 3033                   No          Yes                  Yes                 Yes
## 3034                  Yes          Yes                  Yes                 Yes
## 3035                  Yes          Yes                  Yes                 Yes
## 3036                  Yes          Yes                  Yes                 Yes
## 3037                  Yes          Yes                  Yes                 Yes
## 3038                  Yes           No                   No                  No
## 3039                  Yes           No                   No                  No
## 3040                  Yes          Yes                  Yes                  No
## 3041                   No           No                   No                  No
## 3042                  Yes          Yes                  Yes                  No
## 3044                  Yes          Yes                  Yes                 Yes
## 3045                   No           No                   No                  No
## 3046                   No           No                   No                  No
## 3047                   No           No                   No                  No
## 3048                  Yes          Yes                  Yes                 Yes
## 3049                   No           No                   No                  No
## 3050                  Yes          Yes                  Yes                  No
## 3051                  Yes          Yes                  Yes                 Yes
## 3053                   No           No                   No                  No
## 3054                   No           No                   No                  No
## 3055                   No           No                   No                  No
## 3056                   No           No                   No                  No
## 3057                   No           No                   No                  No
## 3058                  Yes          Yes                  Yes                 Yes
## 3060                  Yes           No                   No                  No
## 3061                   No           No                   No                  No
## 3062                   No           No                   No                  No
## 3063                   No           No                   No                  No
## 3064                  Yes          Yes                  Yes                 Yes
## 3065                   No           No                   No                  No
## 3066                  Yes          Yes                  Yes                 Yes
## 3067                  Yes          Yes                   No                 Yes
## 3068                   No           No                   No                  No
## 3069                  Yes          Yes                  Yes                  No
## 3070                   No           No                   No                  No
## 3071                   No           No                   No                  No
## 3072                  Yes          Yes                  Yes                  No
## 3073                  Yes          Yes                  Yes                 Yes
## 3074                   No           No                   No                  No
## 3075                  Yes          Yes                   No                  No
## 3076                  Yes          Yes                  Yes                 Yes
## 3078                   No           No                   No                  No
## 3079                   No           No                   No                  No
## 3080                   No           No                   No                  No
## 3081                   No           No                   No                  No
## 3082                  Yes           No                   No                 Yes
## 3084                  Yes          Yes                  Yes                 Yes
## 3085                   No           No                   No                  No
## 3086                  Yes          Yes                  Yes                  No
## 3087                   No           No                   No                  No
## 3088                  Yes           No                   No                  No
## 3090                  Yes          Yes                  Yes                 Yes
## 3091                  Yes          Yes                  Yes                 Yes
## 3092                  Yes          Yes                  Yes                  No
## 3093                   No           No                   No                  No
## 3094                   No           No                   No                  No
## 3095                   No           No                   No                  No
## 3096                   No           No                   No                  No
## 3097                  Yes          Yes                  Yes                 Yes
## 3098                  Yes          Yes                  Yes                 Yes
## 3099                  Yes          Yes                  Yes                 Yes
## 3100                  Yes          Yes                  Yes                 Yes
## 3101                   No           No                   No                  No
## 3102                   No           No                   No                  No
## 3103                   No           No                   No                  No
## 3104                  Yes          Yes                  Yes                 Yes
## 3105                   No           No                   No                  No
## 3106                   No           No                   No                  No
## 3107                  Yes          Yes                  Yes                 Yes
## 3108                   No           No                   No                  No
## 3109                  Yes          Yes                  Yes                  No
## 3110                   No           No                   No                  No
## 3111                  Yes          Yes                  Yes                  No
## 3112                   No           No                   No                  No
## 3113                  Yes          Yes                  Yes                 Yes
## 3114                  Yes          Yes                  Yes                 Yes
## 3115                   No           No                   No                  No
## 3116                  Yes          Yes                  Yes                 Yes
## 3117                   No           No                   No                  No
## 3118                   No           No                   No                  No
## 3119                  Yes          Yes                  Yes                 Yes
## 3120                  Yes          Yes                   No                  No
## 3121                  Yes          Yes                  Yes                  No
## 3122                   No           No                   No                  No
## 3123                  Yes          Yes                  Yes                 Yes
## 3124                  Yes          Yes                   No                  No
## 3126                  Yes          Yes                  Yes                 Yes
## 3127                   No           No                   No                  No
## 3128                  Yes          Yes                  Yes                  No
## 3129                  Yes          Yes                  Yes                  No
## 3130                  Yes          Yes                  Yes                 Yes
## 3131                   No           No                   No                  No
## 3132                   No           No                   No                  No
## 3133                   No           No                   No                  No
## 3134                   No           No                   No                  No
## 3136                  Yes          Yes                   No                 Yes
## 3137                  Yes           No                   No                  No
## 3138                  Yes          Yes                  Yes                 Yes
## 3139                   No           No                   No                  No
## 3140                   No           No                   No                  No
## 3141                   No          Yes                   No                 Yes
## 3142                  Yes          Yes                  Yes                 Yes
## 3143                   No           No                   No                  No
## 3144                  Yes          Yes                  Yes                 Yes
## 3145                   No           No                   No                  No
## 3146                   No           No                   No                  No
## 3147                  Yes          Yes                  Yes                  No
## 3148                  Yes          Yes                  Yes                  No
## 3149                   No           No                   No                  No
## 3150                   No           No                   No                  No
## 3151                   No           No                   No                  No
## 3152                   No           No                   No                  No
## 3153                  Yes          Yes                  Yes                 Yes
## 3154                   No           No                   No                  No
## 3155                   No           No                   No                  No
## 3156                   No           No                   No                  No
## 3157                  Yes          Yes                  Yes                 Yes
## 3158                  Yes          Yes                  Yes                 Yes
## 3159                   No           No                   No                  No
## 3160                   No           No                   No                  No
## 3161                   No           No                   No                  No
## 3162                  Yes          Yes                   No                  No
## 3163                   No           No                   No                  No
## 3164                  Yes          Yes                  Yes                  No
## 3165                  Yes          Yes                  Yes                 Yes
## 3166                   No           No                   No                  No
## 3167                  Yes          Yes                  Yes                 Yes
## 3168                  Yes          Yes                  Yes                 Yes
## 3169                   No           No                   No                  No
## 3170                  Yes           No                   No                  No
## 3171                   No           No                   No                  No
## 3172                   No           No                   No                  No
## 3173                   No           No                   No                  No
## 3174                  Yes           No                   No                 Yes
## 3175                   No           No                   No                  No
## 3177                   No           No                   No                  No
## 3178                   No           No                   No                  No
## 3179                   No           No                   No                  No
## 3180                  Yes          Yes                  Yes                  No
## 3181                   No           No                   No                  No
## 3182                   No           No                   No                  No
## 3183                   No           No                   No                  No
## 3184                   No           No                   No                  No
## 3185                  Yes          Yes                  Yes                 Yes
## 3186                  Yes          Yes                  Yes                 Yes
## 3187                  Yes          Yes                  Yes                 Yes
## 3188                  Yes          Yes                  Yes                 Yes
## 3189                   No           No                   No                  No
## 3190                  Yes          Yes                  Yes                  No
## 3191                   No           No                   No                  No
## 3192                  Yes          Yes                  Yes                 Yes
## 3193                  Yes          Yes                  Yes                 Yes
## 3194                  Yes          Yes                  Yes                 Yes
## 3195                   No           No                   No                  No
## 3196                   No           No                   No                  No
## 3197                  Yes          Yes                   No                 Yes
## 3198                  Yes          Yes                  Yes                  No
## 3199                   No          Yes                  Yes                  No
## 3200                   No           No                   No                  No
## 3201                  Yes          Yes                  Yes                 Yes
## 3202                   No           No                   No                  No
## 3203                   No           No                   No                  No
## 3204                   No           No                   No                  No
## 3205                   No           No                   No                  No
## 3206                  Yes          Yes                  Yes                 Yes
## 3207                  Yes           No                  Yes                  No
## 3208                  Yes          Yes                  Yes                 Yes
## 3210                  Yes          Yes                  Yes                 Yes
## 3211                   No           No                   No                  No
## 3213                   No           No                   No                  No
## 3215                  Yes          Yes                  Yes                 Yes
## 3216                   No           No                   No                  No
## 3217                   No           No                   No                  No
## 3218                  Yes           No                  Yes                 Yes
## 3219                   No           No                   No                  No
## 3221                   No           No                   No                  No
## 3222                   No           No                   No                  No
## 3223                   No           No                   No                  No
## 3224                   No           No                   No                  No
## 3225                  Yes          Yes                  Yes                 Yes
## 3226                  Yes          Yes                  Yes                 Yes
## 3227                  Yes           No                  Yes                  No
## 3228                  Yes          Yes                  Yes                  No
## 3229                  Yes           No                  Yes                 Yes
## 3230                  Yes          Yes                  Yes                 Yes
## 3231                  Yes          Yes                  Yes                  No
## 3232                   No           No                   No                  No
## 3233                  Yes          Yes                   No                  No
## 3234                  Yes          Yes                  Yes                 Yes
## 3235                   No           No                   No                  No
## 3236                   No           No                   No                  No
## 3238                   No           No                   No                  No
## 3239                  Yes          Yes                  Yes                 Yes
## 3240                  Yes          Yes                  Yes                  No
## 3241                  Yes          Yes                  Yes                 Yes
## 3242                   No           No                   No                  No
## 3243                   No           No                   No                  No
## 3244                   No           No                   No                  No
## 3245                   No           No                   No                  No
## 3246                  Yes          Yes                  Yes                 Yes
## 3247                  Yes           No                  Yes                  No
## 3248                   No           No                   No                  No
## 3249                  Yes          Yes                  Yes                  No
## 3250                   No           No                   No                  No
## 3251                   No           No                   No                  No
## 3252                   No           No                   No                  No
## 3253                   No           No                   No                  No
## 3254                   No           No                   No                  No
## 3255                   No           No                   No                  No
## 3256                  Yes          Yes                  Yes                  No
## 3257                   No           No                   No                  No
## 3258                  Yes          Yes                  Yes                  No
## 3259                   No           No                   No                  No
## 3260                  Yes          Yes                  Yes                 Yes
## 3261                   No           No                   No                  No
## 3262                  Yes          Yes                  Yes                 Yes
## 3263                  Yes          Yes                  Yes                 Yes
## 3264                   No           No                   No                  No
## 3266                  Yes          Yes                   No                  No
## 3267                   No           No                   No                  No
## 3268                   No           No                   No                  No
## 3269                  Yes          Yes                   No                  No
## 3270                  Yes          Yes                  Yes                 Yes
## 3271                   No           No                   No                  No
## 3272                  Yes          Yes                  Yes                  No
## 3273                   No           No                   No                  No
## 3274                  Yes          Yes                  Yes                 Yes
## 3275                   No           No                   No                  No
## 3276                  Yes          Yes                  Yes                 Yes
## 3277                  Yes          Yes                  Yes                 Yes
## 3278                   No           No                   No                  No
## 3279                   No           No                   No                  No
## 3280                  Yes          Yes                  Yes                  No
## 3282                  Yes          Yes                  Yes                 Yes
## 3283                  Yes           No                  Yes                 Yes
## 3284                   No           No                   No                  No
## 3285                   No           No                   No                  No
## 3286                  Yes          Yes                   No                  No
## 3287                  Yes          Yes                  Yes                  No
## 3288                   No           No                   No                  No
## 3289                  Yes          Yes                  Yes                 Yes
## 3290                   No          Yes                  Yes                 Yes
## 3291                  Yes          Yes                  Yes                 Yes
## 3292                  Yes          Yes                  Yes                 Yes
## 3293                   No           No                   No                  No
## 3294                  Yes          Yes                  Yes                  No
## 3295                  Yes          Yes                  Yes                  No
## 3296                   No           No                   No                  No
## 3297                  Yes          Yes                  Yes                  No
## 3298                  Yes          Yes                  Yes                 Yes
## 3299                  Yes          Yes                  Yes                 Yes
## 3300                  Yes          Yes                   No                  No
## 3301                  Yes          Yes                  Yes                  No
## 3302                  Yes          Yes                   No                  No
## 3303                  Yes          Yes                  Yes                 Yes
## 3305                   No           No                   No                  No
## 3306                   No           No                   No                  No
## 3307                  Yes          Yes                  Yes                  No
## 3308                   No           No                  Yes                  No
## 3309                   No           No                   No                  No
## 3310                  Yes          Yes                  Yes                 Yes
## 3312                   No           No                   No                  No
## 3313                   No           No                   No                  No
## 3314                  Yes           No                  Yes                 Yes
## 3315                   No           No                   No                  No
## 3316                  Yes           No                   No                 Yes
## 3317                   No           No                   No                  No
## 3318                  Yes          Yes                   No                  No
## 3319                   No           No                   No                  No
## 3320                   No           No                   No                  No
## 3321                   No           No                   No                  No
## 3322                   No           No                   No                  No
## 3323                  Yes          Yes                  Yes                 Yes
## 3324                   No           No                   No                  No
## 3325                  Yes          Yes                  Yes                 Yes
## 3326                   No           No                   No                  No
## 3327                  Yes          Yes                  Yes                 Yes
## 3328                   No           No                   No                  No
## 3330                   No           No                   No                  No
## 3331                  Yes          Yes                  Yes                 Yes
## 3332                   No           No                   No                  No
## 3334                  Yes          Yes                  Yes                 Yes
## 3335                  Yes          Yes                  Yes                  No
## 3336                  Yes          Yes                  Yes                  No
## 3337                  Yes           No                   No                  No
## 3338                  Yes          Yes                  Yes                  No
## 3339                   No           No                   No                  No
## 3340                   No           No                   No                  No
## 3341                   No           No                   No                  No
## 3342                  Yes          Yes                  Yes                  No
## 3343                   No           No                   No                  No
## 3344                   No           No                   No                  No
## 3346                  Yes          Yes                  Yes                 Yes
## 3347                  Yes          Yes                  Yes                 Yes
## 3348                  Yes          Yes                  Yes                  No
## 3349                  Yes          Yes                  Yes                 Yes
## 3350                  Yes          Yes                  Yes                  No
## 3351                   No           No                   No                  No
## 3352                   No           No                  Yes                  No
## 3353                   No           No                   No                  No
## 3354                  Yes          Yes                  Yes                  No
## 3355                  Yes          Yes                  Yes                  No
## 3356                  Yes          Yes                  Yes                 Yes
## 3357                   No           No                   No                  No
## 3358                  Yes          Yes                  Yes                  No
## 3359                  Yes          Yes                   No                 Yes
## 3360                  Yes          Yes                  Yes                  No
## 3361                   No           No                   No                  No
## 3362                  Yes          Yes                  Yes                 Yes
## 3363                   No           No                   No                  No
## 3364                   No           No                   No                  No
## 3365                  Yes          Yes                  Yes                 Yes
## 3366                   No           No                   No                  No
## 3367                  Yes          Yes                  Yes                 Yes
## 3368                  Yes          Yes                  Yes                  No
## 3369                  Yes          Yes                  Yes                  No
## 3370                  Yes          Yes                  Yes                 Yes
## 3371                   No           No                   No                  No
## 3372                  Yes          Yes                  Yes                 Yes
## 3373                  Yes          Yes                  Yes                  No
## 3374                  Yes          Yes                  Yes                  No
## 3376                   No           No                   No                  No
## 3377                  Yes          Yes                  Yes                  No
## 3378                   No           No                   No                  No
## 3379                   No           No                   No                  No
## 3380                  Yes          Yes                  Yes                  No
## 3381                  Yes          Yes                  Yes                  No
## 3382                  Yes          Yes                  Yes                 Yes
## 3383                  Yes          Yes                  Yes                  No
## 3384                  Yes          Yes                  Yes                  No
## 3385                  Yes          Yes                  Yes                 Yes
## 3386                  Yes          Yes                  Yes                 Yes
## 3387                  Yes          Yes                  Yes                  No
## 3388                   No           No                   No                  No
## 3389                  Yes           No                   No                 Yes
## 3391                  Yes          Yes                  Yes                 Yes
## 3392                   No           No                   No                  No
## 3393                  Yes          Yes                  Yes                 Yes
## 3394                  Yes          Yes                  Yes                 Yes
## 3395                   No           No                   No                  No
## 3396                   No           No                   No                  No
## 3398                   No           No                   No                  No
## 3399                   No           No                   No                  No
## 3400                  Yes          Yes                  Yes                  No
## 3401                   No           No                   No                  No
## 3402                  Yes          Yes                  Yes                 Yes
## 3403                  Yes          Yes                  Yes                 Yes
## 3404                   No          Yes                  Yes                 Yes
## 3405                   No           No                   No                  No
## 3406                  Yes          Yes                  Yes                  No
## 3407                   No           No                   No                  No
## 3408                  Yes          Yes                  Yes                  No
## 3409                   No           No                   No                  No
## 3410                  Yes          Yes                  Yes                 Yes
## 3411                  Yes          Yes                  Yes                 Yes
## 3413                   No           No                   No                  No
## 3414                  Yes          Yes                  Yes                  No
## 3415                   No           No                   No                  No
## 3416                  Yes          Yes                  Yes                 Yes
## 3417                   No           No                   No                  No
## 3418                  Yes          Yes                  Yes                 Yes
## 3419                   No           No                   No                  No
## 3422                  Yes          Yes                  Yes                  No
## 3423                  Yes          Yes                  Yes                 Yes
## 3424                   No           No                   No                  No
## 3425                  Yes          Yes                   No                  No
## 3426                  Yes          Yes                  Yes                  No
## 3428                   No           No                   No                  No
## 3429                   No           No                   No                  No
## 3430                  Yes          Yes                  Yes                 Yes
## 3431                  Yes          Yes                  Yes                  No
## 3432                  Yes          Yes                  Yes                 Yes
## 3433                   No           No                   No                  No
## 3434                   No           No                   No                  No
## 3435                   No           No                   No                  No
## 3436                   No           No                   No                  No
## 3437                  Yes          Yes                   No                  No
## 3438                   No           No                   No                  No
## 3439                   No           No                   No                  No
## 3440                   No           No                   No                  No
## 3441                   No           No                  Yes                  No
## 3442                  Yes          Yes                  Yes                  No
## 3443                   No           No                   No                  No
## 3444                  Yes          Yes                  Yes                 Yes
## 3445                  Yes          Yes                  Yes                 Yes
## 3446                   No           No                   No                  No
## 3447                  Yes          Yes                  Yes                 Yes
## 3448                  Yes          Yes                  Yes                 Yes
## 3449                  Yes          Yes                  Yes                 Yes
## 3450                  Yes          Yes                  Yes                  No
## 3451                  Yes          Yes                   No                  No
## 3452                  Yes          Yes                  Yes                 Yes
## 3453                  Yes          Yes                  Yes                 Yes
## 3454                   No           No                   No                  No
## 3455                  Yes          Yes                  Yes                 Yes
## 3456                   No           No                   No                  No
## 3457                   No           No                   No                  No
## 3458                   No           No                   No                  No
## 3459                   No           No                   No                  No
## 3460                  Yes          Yes                  Yes                  No
## 3461                   No           No                   No                  No
## 3462                   No           No                   No                  No
## 3463                   No           No                   No                  No
## 3464                   No           No                   No                  No
## 3465                   No           No                   No                  No
## 3466                  Yes          Yes                  Yes                  No
## 3467                   No           No                   No                  No
## 3468                  Yes          Yes                   No                  No
## 3469                   No           No                   No                  No
## 3470                  Yes          Yes                  Yes                 Yes
## 3471                  Yes          Yes                  Yes                  No
## 3472                   No           No                   No                  No
## 3473                   No           No                   No                  No
## 3474                   No           No                   No                  No
## 3476                   No           No                   No                  No
## 3477                  Yes          Yes                  Yes                 Yes
## 3478                   No           No                   No                  No
## 3479                   No           No                   No                  No
## 3480                   No           No                   No                  No
## 3481                  Yes          Yes                  Yes                 Yes
## 3483                   No           No                   No                  No
## 3484                   No           No                   No                  No
## 3485                   No           No                   No                  No
## 3486                  Yes          Yes                  Yes                  No
## 3487                   No           No                   No                  No
## 3489                  Yes          Yes                   No                  No
## 3490                  Yes          Yes                  Yes                 Yes
## 3491                  Yes          Yes                   No                 Yes
## 3492                   No           No                   No                  No
## 3493                  Yes          Yes                  Yes                 Yes
## 3494                  Yes          Yes                  Yes                 Yes
## 3495                  Yes          Yes                  Yes                 Yes
## 3496                   No           No                   No                  No
## 3497                   No           No                   No                  No
## 3498                  Yes          Yes                  Yes                 Yes
## 3499                   No           No                   No                  No
## 3500                   No           No                   No                  No
## 3501                  Yes          Yes                  Yes                  No
## 3502                  Yes          Yes                  Yes                 Yes
## 3503                  Yes           No                  Yes                  No
## 3504                  Yes          Yes                  Yes                 Yes
## 3505                  Yes          Yes                  Yes                 Yes
## 3506                  Yes          Yes                  Yes                 Yes
## 3507                  Yes          Yes                  Yes                  No
## 3508                   No           No                   No                  No
## 3510                   No           No                   No                  No
## 3511                   No           No                   No                  No
## 3512                  Yes          Yes                  Yes                  No
## 3513                  Yes          Yes                   No                  No
## 3514                   No           No                   No                  No
## 3515                   No           No                   No                  No
## 3516                   No           No                   No                  No
## 3517                  Yes          Yes                  Yes                 Yes
## 3518                   No           No                   No                  No
## 3519                  Yes          Yes                  Yes                  No
## 3520                  Yes          Yes                  Yes                 Yes
## 3521                   No           No                   No                  No
## 3522                   No           No                   No                  No
## 3523                  Yes          Yes                  Yes                  No
## 3524                  Yes          Yes                   No                  No
## 3525                  Yes          Yes                  Yes                  No
## 3526                   No           No                   No                  No
## 3527                   No           No                   No                  No
## 3528                  Yes           No                   No                  No
## 3529                  Yes          Yes                   No                  No
## 3530                   No           No                   No                  No
## 3531                  Yes          Yes                   No                  No
## 3532                  Yes          Yes                  Yes                 Yes
## 3533                   No           No                   No                  No
## 3534                  Yes          Yes                  Yes                 Yes
## 3535                   No           No                   No                  No
## 3536                  Yes          Yes                  Yes                  No
## 3537                   No           No                   No                  No
## 3538                  Yes          Yes                  Yes                 Yes
## 3539                   No           No                   No                  No
## 3540                   No           No                   No                  No
## 3541                  Yes           No                  Yes                  No
## 3542                  Yes          Yes                  Yes                 Yes
## 3544                  Yes          Yes                   No                  No
## 3545                   No           No                   No                  No
## 3546                   No           No                   No                  No
## 3547                  Yes           No                   No                  No
## 3548                  Yes          Yes                  Yes                 Yes
## 3549                   No           No                   No                  No
## 3550                  Yes           No                  Yes                  No
## 3551                  Yes          Yes                  Yes                 Yes
## 3552                   No           No                   No                  No
## 3553                  Yes          Yes                  Yes                 Yes
## 3554                  Yes          Yes                  Yes                  No
## 3555                  Yes          Yes                  Yes                 Yes
## 3556                   No           No                   No                  No
## 3557                   No           No                   No                  No
## 3558                  Yes          Yes                  Yes                 Yes
## 3559                  Yes          Yes                  Yes                 Yes
## 3560                   No           No                   No                  No
## 3561                   No           No                   No                  No
## 3562                  Yes          Yes                  Yes                 Yes
## 3563                   No           No                   No                  No
## 3564                  Yes          Yes                  Yes                 Yes
## 3565                  Yes          Yes                  Yes                 Yes
## 3567                  Yes          Yes                  Yes                 Yes
## 3568                  Yes          Yes                  Yes                  No
## 3569                  Yes           No                  Yes                 Yes
## 3570                   No           No                   No                  No
## 3571                  Yes          Yes                  Yes                 Yes
## 3573                   No           No                   No                  No
## 3574                   No           No                   No                  No
## 3575                  Yes          Yes                   No                  No
## 3576                   No           No                   No                  No
## 3577                   No           No                   No                  No
## 3578                   No           No                   No                  No
## 3579                   No           No                   No                  No
## 3580                   No           No                   No                  No
## 3581                   No           No                   No                  No
## 3582                  Yes          Yes                  Yes                  No
## 3583                   No           No                   No                  No
## 3584                  Yes          Yes                  Yes                 Yes
## 3585                  Yes          Yes                  Yes                 Yes
## 3586                  Yes          Yes                  Yes                 Yes
## 3587                   No           No                   No                  No
## 3588                   No           No                   No                  No
## 3589                   No           No                   No                  No
## 3590                   No           No                   No                  No
## 3591                  Yes          Yes                  Yes                 Yes
## 3592                  Yes          Yes                  Yes                 Yes
## 3593                  Yes          Yes                  Yes                  No
## 3594                   No           No                   No                  No
## 3595                  Yes          Yes                  Yes                 Yes
## 3596                   No           No                   No                  No
## 3597                  Yes          Yes                  Yes                 Yes
## 3598                   No           No                   No                  No
## 3599                   No           No                   No                  No
## 3600                  Yes          Yes                  Yes                 Yes
## 3601                   No           No                   No                  No
## 3602                   No           No                   No                  No
## 3603                  Yes          Yes                  Yes                 Yes
## 3604                   No           No                   No                  No
## 3605                   No           No                   No                  No
## 3606                   No           No                   No                  No
## 3607                   No           No                   No                  No
## 3608                   No          Yes                   No                  No
## 3609                   No           No                   No                  No
## 3610                  Yes          Yes                  Yes                 Yes
## 3611                  Yes          Yes                  Yes                  No
## 3612                  Yes          Yes                  Yes                 Yes
## 3613                  Yes          Yes                  Yes                 Yes
## 3614                  Yes          Yes                   No                  No
## 3615                   No           No                   No                  No
## 3616                   No           No                   No                  No
## 3617                   No           No                   No                  No
## 3618                   No           No                   No                  No
## 3619                  Yes          Yes                  Yes                  No
## 3620                  Yes          Yes                  Yes                 Yes
## 3621                   No           No                   No                  No
## 3622                   No           No                   No                  No
## 3623                   No           No                  Yes                  No
## 3624                  Yes          Yes                  Yes                 Yes
## 3625                   No           No                   No                  No
## 3627                  Yes          Yes                  Yes                 Yes
## 3628                  Yes          Yes                  Yes                 Yes
## 3629                   No           No                   No                  No
## 3630                  Yes          Yes                  Yes                  No
## 3631                  Yes          Yes                  Yes                 Yes
## 3632                   No           No                   No                  No
## 3633                  Yes          Yes                  Yes                 Yes
## 3634                  Yes          Yes                  Yes                 Yes
## 3635                  Yes          Yes                   No                 Yes
## 3637                   No           No                   No                  No
## 3638                   No           No                   No                  No
## 3639                  Yes          Yes                  Yes                  No
## 3640                  Yes           No                   No                  No
## 3641                  Yes          Yes                  Yes                  No
## 3642                  Yes          Yes                  Yes                 Yes
## 3643                  Yes          Yes                   No                  No
## 3644                  Yes           No                  Yes                 Yes
## 3645                  Yes          Yes                  Yes                 Yes
## 3646                  Yes          Yes                  Yes                  No
## 3647                  Yes          Yes                   No                  No
## 3648                  Yes          Yes                  Yes                 Yes
## 3649                   No           No                   No                  No
## 3650                   No           No                   No                  No
## 3652                   No           No                   No                  No
## 3653                   No           No                   No                  No
## 3654                   No           No                   No                  No
## 3655                   No           No                   No                  No
## 3656                  Yes          Yes                  Yes                 Yes
## 3657                  Yes           No                  Yes                 Yes
## 3658                  Yes           No                  Yes                  No
## 3659                   No           No                   No                  No
## 3660                  Yes          Yes                  Yes                  No
## 3661                  Yes           No                   No                  No
## 3662                   No           No                   No                  No
## 3663                  Yes          Yes                  Yes                 Yes
## 3664                  Yes          Yes                  Yes                 Yes
## 3665                   No           No                   No                  No
## 3667                  Yes          Yes                  Yes                 Yes
## 3668                   No           No                   No                  No
## 3670                   No           No                   No                  No
## 3671                   No           No                   No                  No
## 3672                   No           No                   No                  No
## 3673                  Yes           No                   No                  No
## 3674                   No           No                   No                  No
## 3675                   No           No                   No                  No
## 3676                  Yes          Yes                  Yes                  No
## 3677                   No           No                   No                  No
## 3678                   No           No                   No                  No
## 3679                   No           No                   No                  No
## 3680                  Yes          Yes                  Yes                  No
## 3681                  Yes          Yes                  Yes                 Yes
## 3682                  Yes          Yes                  Yes                 Yes
## 3683                  Yes          Yes                  Yes                 Yes
## 3684                  Yes          Yes                  Yes                  No
## 3685                  Yes          Yes                  Yes                 Yes
## 3686                   No           No                   No                  No
## 3687                   No           No                   No                  No
## 3688                  Yes          Yes                  Yes                  No
## 3689                  Yes          Yes                  Yes                 Yes
## 3690                   No           No                   No                  No
## 3691                   No           No                   No                  No
## 3692                  Yes          Yes                  Yes                 Yes
## 3694                  Yes          Yes                  Yes                  No
## 3695                  Yes          Yes                   No                 Yes
## 3696                  Yes          Yes                  Yes                 Yes
## 3697                  Yes          Yes                  Yes                 Yes
## 3698                  Yes          Yes                  Yes                 Yes
## 3699                  Yes          Yes                  Yes                 Yes
## 3700                   No           No                   No                  No
## 3701                   No           No                   No                  No
## 3702                   No           No                   No                  No
## 3703                  Yes          Yes                  Yes                 Yes
## 3704                  Yes           No                  Yes                 Yes
## 3706                   No           No                   No                  No
## 3707                  Yes          Yes                  Yes                 Yes
## 3708                  Yes          Yes                  Yes                 Yes
## 3709                  Yes          Yes                  Yes                 Yes
## 3710                  Yes          Yes                  Yes                 Yes
## 3711                   No           No                   No                  No
## 3712                  Yes          Yes                  Yes                 Yes
## 3713                  Yes          Yes                  Yes                  No
## 3714                   No           No                   No                  No
## 3715                  Yes           No                  Yes                 Yes
## 3716                  Yes          Yes                  Yes                  No
## 3717                  Yes          Yes                  Yes                 Yes
## 3718                  Yes          Yes                  Yes                 Yes
## 3719                   No           No                   No                  No
## 3720                   No           No                   No                  No
## 3721                   No           No                   No                  No
## 3722                  Yes          Yes                  Yes                 Yes
## 3723                  Yes          Yes                   No                  No
## 3724                   No           No                   No                  No
## 3725                   No           No                   No                  No
## 3726                   No           No                   No                  No
## 3727                  Yes          Yes                  Yes                 Yes
## 3728                   No           No                   No                  No
## 3729                  Yes           No                   No                 Yes
## 3730                   No           No                   No                  No
## 3731                   No           No                   No                  No
## 3732                   No           No                   No                  No
## 3733                  Yes          Yes                  Yes                 Yes
## 3734                  Yes          Yes                   No                 Yes
## 3736                   No           No                   No                  No
## 3737                  Yes          Yes                  Yes                  No
## 3738                   No           No                   No                  No
## 3739                   No           No                   No                  No
## 3740                   No           No                   No                  No
## 3741                   No           No                   No                  No
## 3742                   No           No                   No                  No
## 3743                  Yes          Yes                   No                 Yes
## 3744                  Yes          Yes                  Yes                  No
## 3745                  Yes          Yes                  Yes                 Yes
## 3746                  Yes          Yes                  Yes                 Yes
## 3747                  Yes          Yes                  Yes                 Yes
## 3748                   No           No                   No                  No
## 3749                  Yes          Yes                  Yes                 Yes
## 3750                   No           No                   No                  No
## 3751                  Yes          Yes                  Yes                 Yes
## 3752                   No           No                   No                  No
## 3753                   No           No                   No                  No
## 3754                  Yes          Yes                  Yes                 Yes
## 3755                  Yes           No                  Yes                 Yes
## 3756                   No           No                   No                  No
## 3757                  Yes          Yes                  Yes                 Yes
## 3758                   No           No                   No                  No
## 3759                  Yes          Yes                  Yes                 Yes
## 3760                  Yes          Yes                  Yes                  No
## 3761                   No           No                   No                  No
## 3762                   No           No                   No                  No
## 3763                  Yes          Yes                  Yes                 Yes
## 3764                  Yes          Yes                  Yes                  No
## 3765                   No           No                   No                  No
## 3766                  Yes          Yes                  Yes                  No
## 3767                   No           No                   No                  No
## 3768                  Yes          Yes                  Yes                  No
## 3769                  Yes          Yes                   No                  No
## 3770                   No           No                   No                  No
## 3771                  Yes          Yes                  Yes                 Yes
## 3774                   No           No                   No                  No
## 3775                  Yes           No                   No                  No
## 3776                   No           No                   No                  No
## 3777                  Yes          Yes                  Yes                 Yes
## 3778                   No           No                   No                  No
## 3779                  Yes          Yes                  Yes                 Yes
## 3780                  Yes          Yes                  Yes                  No
## 3781                  Yes          Yes                  Yes                  No
## 3782                   No           No                   No                  No
## 3783                  Yes          Yes                  Yes                 Yes
## 3784                  Yes          Yes                   No                  No
## 3785                   No           No                   No                  No
## 3786                   No          Yes                  Yes                  No
## 3787                   No           No                   No                  No
## 3788                  Yes          Yes                   No                  No
## 3789                   No           No                   No                  No
## 3790                  Yes           No                   No                  No
## 3791                  Yes          Yes                  Yes                 Yes
## 3792                  Yes           No                  Yes                 Yes
## 3793                   No           No                   No                  No
## 3794                   No           No                   No                  No
## 3795                  Yes          Yes                  Yes                  No
## 3796                  Yes          Yes                  Yes                 Yes
## 3797                  Yes          Yes                  Yes                  No
## 3798                   No           No                   No                  No
## 3800                   No           No                   No                  No
## 3801                   No           No                   No                  No
## 3802                  Yes          Yes                  Yes                 Yes
## 3803                  Yes          Yes                  Yes                 Yes
## 3804                  Yes          Yes                  Yes                 Yes
## 3806                  Yes          Yes                  Yes                  No
## 3807                   No           No                   No                  No
## 3808                  Yes          Yes                   No                  No
## 3809                   No           No                   No                  No
## 3810                   No          Yes                  Yes                 Yes
## 3811                  Yes          Yes                  Yes                  No
## 3812                   No           No                   No                  No
## 3813                  Yes          Yes                  Yes                 Yes
## 3814                  Yes          Yes                  Yes                 Yes
## 3815                   No           No                   No                  No
## 3816                   No           No                   No                  No
## 3817                   No           No                   No                  No
## 3818                   No           No                   No                  No
## 3819                  Yes          Yes                  Yes                  No
## 3820                   No           No                   No                  No
## 3821                  Yes          Yes                  Yes                 Yes
## 3822                  Yes          Yes                  Yes                  No
## 3823                  Yes          Yes                  Yes                 Yes
## 3824                   No           No                   No                  No
## 3825                   No           No                   No                  No
## 3826                  Yes           No                   No                 Yes
## 3827                   No          Yes                  Yes                 Yes
## 3828                  Yes          Yes                  Yes                 Yes
## 3829                   No           No                   No                  No
## 3830                  Yes          Yes                  Yes                  No
## 3831                  Yes          Yes                  Yes                 Yes
## 3832                   No           No                   No                  No
## 3833                   No           No                   No                  No
## 3834                  Yes          Yes                  Yes                 Yes
## 3835                  Yes          Yes                  Yes                  No
## 3836                   No           No                   No                  No
## 3837                  Yes          Yes                  Yes                 Yes
## 3838                  Yes          Yes                  Yes                  No
## 3839                  Yes          Yes                  Yes                  No
## 3840                   No           No                   No                  No
## 3841                   No           No                   No                  No
## 3842                  Yes          Yes                  Yes                 Yes
## 3843                   No           No                   No                  No
## 3844                  Yes          Yes                   No                 Yes
## 3846                   No           No                   No                  No
## 3847                  Yes          Yes                  Yes                 Yes
## 3848                   No           No                   No                  No
## 3849                  Yes          Yes                  Yes                  No
## 3850                  Yes          Yes                   No                 Yes
## 3851                  Yes          Yes                   No                  No
## 3852                  Yes          Yes                  Yes                  No
## 3853                   No           No                   No                  No
## 3854                   No           No                   No                  No
## 3855                  Yes          Yes                  Yes                 Yes
## 3856                   No           No                   No                  No
## 3857                  Yes          Yes                  Yes                 Yes
## 3858                   No           No                   No                  No
## 3859                  Yes          Yes                  Yes                 Yes
## 3860                  Yes           No                  Yes                 Yes
## 3861                  Yes          Yes                  Yes                 Yes
## 3862                  Yes          Yes                  Yes                  No
## 3863                  Yes          Yes                  Yes                 Yes
## 3864                   No           No                   No                  No
## 3865                  Yes          Yes                  Yes                 Yes
## 3866                  Yes          Yes                  Yes                 Yes
## 3867                  Yes          Yes                  Yes                 Yes
## 3868                   No           No                   No                  No
## 3869                   No           No                   No                  No
## 3870                   No           No                   No                  No
## 3871                  Yes          Yes                  Yes                  No
## 3872                  Yes           No                   No                  No
## 3873                  Yes          Yes                   No                 Yes
## 3874                   No           No                   No                  No
## 3875                   No           No                   No                  No
## 3876                  Yes          Yes                  Yes                 Yes
## 3877                  Yes          Yes                  Yes                 Yes
## 3878                   No           No                   No                  No
## 3879                  Yes          Yes                  Yes                  No
## 3880                   No           No                   No                  No
## 3881                  Yes          Yes                  Yes                 Yes
## 3882                  Yes          Yes                  Yes                  No
## 3883                  Yes          Yes                  Yes                 Yes
## 3884                   No           No                   No                  No
## 3885                   No           No                   No                  No
## 3886                  Yes          Yes                   No                  No
## 3887                  Yes          Yes                  Yes                  No
## 3888                  Yes          Yes                  Yes                  No
## 3889                  Yes          Yes                  Yes                 Yes
## 3890                  Yes           No                  Yes                 Yes
## 3891                  Yes          Yes                  Yes                 Yes
## 3892                   No           No                   No                  No
## 3893                  Yes          Yes                   No                  No
## 3894                  Yes          Yes                  Yes                 Yes
## 3895                   No           No                   No                  No
## 3896                  Yes          Yes                  Yes                 Yes
## 3897                   No           No                   No                  No
## 3898                  Yes          Yes                   No                  No
## 3899                   No           No                   No                  No
## 3900                   No           No                   No                  No
## 3902                  Yes          Yes                  Yes                  No
## 3903                  Yes          Yes                  Yes                 Yes
## 3904                  Yes          Yes                  Yes                 Yes
## 3905                  Yes          Yes                  Yes                 Yes
## 3906                   No           No                   No                  No
## 3907                  Yes          Yes                  Yes                 Yes
## 3908                  Yes          Yes                   No                 Yes
## 3909                  Yes          Yes                  Yes                  No
## 3910                   No           No                   No                  No
## 3911                   No           No                   No                  No
## 3912                  Yes          Yes                  Yes                 Yes
## 3913                  Yes          Yes                  Yes                  No
## 3914                   No           No                   No                  No
## 3915                  Yes          Yes                  Yes                 Yes
## 3916                   No           No                   No                  No
## 3917                  Yes          Yes                  Yes                 Yes
## 3918                   No           No                   No                  No
## 3919                  Yes          Yes                  Yes                 Yes
## 3920                   No           No                   No                  No
## 3921                   No           No                   No                  No
## 3922                   No           No                   No                  No
## 3923                  Yes          Yes                  Yes                  No
## 3924                   No           No                   No                  No
## 3925                   No           No                   No                  No
## 3926                   No           No                   No                  No
## 3927                  Yes           No                  Yes                 Yes
## 3928                   No           No                   No                  No
## 3929                  Yes          Yes                  Yes                 Yes
## 3930                   No           No                   No                  No
## 3931                  Yes          Yes                  Yes                 Yes
## 3932                   No           No                   No                  No
## 3933                  Yes          Yes                  Yes                 Yes
## 3934                  Yes          Yes                  Yes                 Yes
## 3935                   No           No                   No                  No
## 3936                   No           No                   No                  No
## 3937                  Yes          Yes                  Yes                 Yes
## 3939                  Yes          Yes                  Yes                  No
## 3940                  Yes           No                  Yes                 Yes
## 3941                   No           No                   No                  No
## 3943                   No           No                   No                  No
## 3944                   No           No                   No                  No
## 3945                   No           No                   No                  No
## 3946                   No           No                   No                  No
## 3947                  Yes          Yes                  Yes                 Yes
## 3949                  Yes          Yes                  Yes                 Yes
## 3950                  Yes          Yes                  Yes                 Yes
## 3952                   No           No                   No                  No
## 3953                   No           No                   No                  No
## 3954                  Yes          Yes                  Yes                  No
## 3955                   No           No                   No                  No
## 3957                  Yes          Yes                  Yes                 Yes
## 3958                   No           No                   No                  No
## 3959                   No          Yes                  Yes                 Yes
## 3960                   No           No                   No                  No
## 3961                  Yes          Yes                   No                  No
## 3962                   No           No                   No                  No
## 3963                  Yes          Yes                  Yes                 Yes
## 3964                   No           No                   No                  No
## 3965                   No           No                   No                  No
## 3966                  Yes           No                  Yes                  No
## 3967                   No           No                   No                  No
## 3968                   No           No                   No                  No
## 3969                  Yes          Yes                  Yes                 Yes
## 3970                  Yes          Yes                  Yes                 Yes
## 3971                  Yes          Yes                  Yes                 Yes
## 3972                   No           No                   No                  No
## 3973                  Yes          Yes                  Yes                 Yes
## 3974                   No           No                   No                  No
## 3975                  Yes          Yes                   No                 Yes
## 3976                   No           No                   No                  No
## 3978                   No           No                   No                  No
## 3979                  Yes          Yes                  Yes                 Yes
## 3980                  Yes          Yes                  Yes                 Yes
## 3981                   No           No                   No                  No
## 3982                   No           No                   No                  No
## 3983                  Yes          Yes                  Yes                  No
## 3984                  Yes          Yes                  Yes                 Yes
## 3985                   No           No                   No                  No
## 3986                  Yes          Yes                  Yes                 Yes
## 3987                   No           No                   No                  No
## 3988                   No           No                   No                  No
## 3989                   No           No                   No                  No
## 3990                   No           No                   No                  No
## 3991                  Yes          Yes                  Yes                 Yes
## 3992                  Yes          Yes                  Yes                 Yes
## 3993                  Yes          Yes                  Yes                 Yes
## 3994                  Yes          Yes                   No                 Yes
## 3995                  Yes          Yes                  Yes                  No
## 3996                   No           No                   No                  No
## 3997                   No           No                   No                  No
## 3998                   No           No                   No                  No
## 3999                  Yes          Yes                  Yes                 Yes
## 4000                  Yes           No                  Yes                 Yes
## 4001                   No           No                   No                  No
## 4002                   No           No                   No                  No
## 4003                  Yes          Yes                  Yes                 Yes
## 4004                   No           No                   No                  No
## 4005                  Yes          Yes                   No                  No
## 4006                   No           No                   No                  No
## 4007                   No           No                   No                  No
## 4008                   No           No                   No                  No
## 4009                   No           No                   No                  No
## 4010                  Yes          Yes                   No                 Yes
## 4011                   No           No                   No                  No
## 4012                  Yes          Yes                  Yes                  No
## 4013                  Yes          Yes                  Yes                 Yes
## 4014                  Yes          Yes                   No                 Yes
## 4015                   No           No                   No                  No
## 4016                  Yes          Yes                  Yes                  No
## 4017                   No           No                   No                  No
## 4018                   No           No                   No                  No
## 4019                  Yes          Yes                  Yes                 Yes
## 4020                  Yes          Yes                  Yes                 Yes
## 4021                  Yes          Yes                   No                  No
## 4022                  Yes          Yes                  Yes                  No
## 4023                  Yes          Yes                  Yes                 Yes
## 4024                   No           No                   No                  No
## 4025                  Yes          Yes                  Yes                 Yes
## 4026                   No           No                   No                  No
## 4027                  Yes          Yes                  Yes                  No
## 4028                   No           No                   No                  No
## 4029                   No           No                   No                  No
## 4030                   No           No                   No                  No
## 4031                  Yes          Yes                  Yes                  No
## 4032                  Yes          Yes                  Yes                  No
## 4033                  Yes          Yes                  Yes                  No
## 4034                   No           No                   No                  No
## 4035                  Yes          Yes                  Yes                  No
## 4036                  Yes          Yes                  Yes                 Yes
## 4037                   No           No                   No                  No
## 4038                  Yes          Yes                  Yes                 Yes
## 4039                   No           No                   No                  No
## 4040                   No           No                   No                  No
## 4041                  Yes          Yes                  Yes                 Yes
## 4042                   No           No                   No                  No
## 4043                  Yes          Yes                   No                  No
## 4044                  Yes          Yes                   No                 Yes
## 4046                  Yes          Yes                  Yes                 Yes
## 4047                  Yes           No                  Yes                  No
## 4048                   No           No                   No                  No
## 4049                  Yes          Yes                   No                 Yes
## 4050                  Yes          Yes                  Yes                 Yes
## 4051                   No           No                   No                  No
## 4052                   No           No                   No                  No
## 4053                  Yes          Yes                  Yes                 Yes
## 4054                   No           No                   No                  No
## 4055                  Yes          Yes                  Yes                  No
## 4056                   No           No                   No                  No
## 4057                   No           No                   No                  No
## 4058                   No           No                   No                  No
## 4061                   No           No                   No                  No
## 4062                   No           No                   No                  No
## 4063                   No           No                   No                  No
## 4064                   No           No                   No                  No
## 4065                   No           No                   No                  No
## 4067                  Yes          Yes                  Yes                  No
## 4068                   No           No                   No                  No
## 4069                   No           No                   No                  No
## 4070                  Yes          Yes                   No                  No
## 4071                  Yes          Yes                  Yes                  No
## 4072                   No           No                   No                  No
## 4073                  Yes          Yes                   No                  No
## 4074                  Yes          Yes                  Yes                  No
## 4075                  Yes          Yes                  Yes                  No
## 4076                  Yes           No                  Yes                 Yes
## 4077                  Yes          Yes                  Yes                 Yes
## 4078                  Yes          Yes                  Yes                 Yes
## 4079                   No           No                   No                  No
## 4080                  Yes          Yes                  Yes                 Yes
## 4081                   No           No                   No                  No
## 4082                  Yes          Yes                  Yes                 Yes
## 4083                   No           No                   No                  No
## 4084                  Yes          Yes                  Yes                 Yes
## 4085                  Yes          Yes                  Yes                 Yes
## 4086                   No           No                   No                  No
## 4087                  Yes          Yes                  Yes                 Yes
## 4088                  Yes          Yes                  Yes                 Yes
## 4089                  Yes           No                   No                 Yes
## 4090                   No           No                   No                  No
## 4091                  Yes          Yes                  Yes                 Yes
## 4092                   No          Yes                   No                  No
## 4094                  Yes          Yes                  Yes                 Yes
## 4095                  Yes          Yes                  Yes                 Yes
## 4096                   No           No                   No                  No
## 4097                  Yes          Yes                   No                  No
## 4098                   No           No                   No                  No
## 4099                   No           No                   No                  No
## 4100                   No           No                   No                  No
## 4101                  Yes          Yes                  Yes                 Yes
## 4102                   No          Yes                  Yes                 Yes
## 4103                  Yes          Yes                  Yes                 Yes
## 4104                   No           No                   No                  No
## 4105                   No           No                   No                  No
## 4106                   No           No                   No                  No
## 4107                  Yes          Yes                  Yes                  No
## 4108                  Yes          Yes                   No                  No
## 4109                   No           No                   No                  No
## 4111                   No           No                   No                  No
## 4112                   No           No                   No                  No
## 4113                   No           No                   No                  No
## 4114                   No           No                   No                  No
## 4115                   No           No                   No                  No
## 4116                  Yes          Yes                  Yes                  No
## 4117                  Yes          Yes                   No                  No
## 4118                   No           No                   No                  No
## 4119                   No           No                   No                  No
## 4121                  Yes          Yes                  Yes                 Yes
## 4122                   No           No                   No                  No
## 4123                   No           No                   No                  No
## 4124                   No           No                   No                  No
## 4126                   No           No                   No                  No
## 4127                  Yes          Yes                  Yes                  No
## 4130                   No           No                   No                  No
## 4131                   No           No                   No                  No
## 4133                   No           No                   No                  No
## 4134                  Yes          Yes                  Yes                 Yes
## 4135                   No           No                   No                  No
## 4136                   No           No                   No                  No
## 4137                  Yes          Yes                  Yes                 Yes
## 4138                  Yes          Yes                  Yes                 Yes
## 4139                   No           No                   No                  No
## 4140                   No           No                   No                  No
## 4141                  Yes          Yes                  Yes                  No
## 4142                   No           No                   No                  No
## 4143                   No           No                   No                  No
## 4144                  Yes          Yes                   No                  No
## 4145                  Yes          Yes                  Yes                  No
## 4146                   No           No                   No                  No
## 4147                  Yes          Yes                  Yes                 Yes
## 4148                   No           No                   No                  No
## 4149                  Yes          Yes                  Yes                 Yes
## 4150                   No           No                   No                  No
## 4151                  Yes          Yes                   No                  No
## 4152                   No           No                   No                  No
## 4153                   No           No                   No                  No
## 4154                   No           No                   No                  No
## 4155                   No           No                   No                  No
## 4156                  Yes          Yes                  Yes                 Yes
## 4157                   No           No                   No                  No
## 4158                   No           No                   No                  No
## 4159                  Yes          Yes                  Yes                 Yes
## 4160                  Yes           No                   No                  No
## 4161                   No           No                   No                  No
## 4162                  Yes          Yes                  Yes                 Yes
## 4163                   No           No                   No                  No
## 4164                   No           No                   No                  No
## 4165                   No           No                   No                  No
## 4166                   No           No                   No                  No
## 4167                  Yes          Yes                  Yes                 Yes
## 4168                   No           No                   No                  No
## 4169                   No           No                   No                  No
## 4170                   No           No                   No                  No
## 4171                  Yes          Yes                  Yes                 Yes
## 4172                  Yes           No                  Yes                  No
## 4173                   No           No                   No                  No
## 4174                   No           No                   No                  No
## 4175                   No           No                   No                  No
## 4176                  Yes          Yes                   No                 Yes
## 4177                  Yes          Yes                  Yes                 Yes
## 4178                   No           No                   No                  No
## 4179                   No           No                   No                  No
## 4180                   No          Yes                  Yes                 Yes
## 4181                  Yes          Yes                   No                  No
## 4182                  Yes          Yes                   No                  No
## 4183                   No           No                   No                  No
## 4184                  Yes          Yes                  Yes                 Yes
## 4185                  Yes          Yes                   No                 Yes
## 4186                   No           No                   No                  No
## 4187                   No           No                   No                  No
## 4188                   No           No                   No                  No
## 4189                   No           No                   No                  No
## 4190                   No           No                   No                  No
## 4191                  Yes          Yes                  Yes                 Yes
## 4192                  Yes          Yes                  Yes                  No
## 4193                   No           No                   No                  No
## 4194                  Yes          Yes                  Yes                  No
## 4195                  Yes           No                  Yes                  No
## 4196                  Yes          Yes                  Yes                 Yes
## 4197                   No           No                   No                  No
## 4198                   No           No                   No                  No
## 4199                  Yes          Yes                  Yes                 Yes
## 4200                   No           No                   No                  No
## 4201                   No           No                   No                  No
## 4202                   No           No                   No                  No
## 4203                   No           No                   No                  No
## 4204                  Yes          Yes                  Yes                 Yes
## 4205                   No           No                   No                  No
## 4206                   No           No                   No                  No
## 4207                  Yes          Yes                  Yes                 Yes
## 4209                  Yes          Yes                   No                  No
## 4211                   No           No                   No                  No
## 4212                   No           No                   No                  No
## 4213                   No           No                   No                  No
## 4214                   No           No                   No                  No
## 4215                   No           No                   No                  No
## 4216                   No           No                   No                  No
## 4217                   No           No                   No                  No
## 4218                  Yes           No                  Yes                  No
## 4220                   No          Yes                  Yes                  No
## 4221                  Yes          Yes                  Yes                  No
## 4222                   No           No                   No                  No
## 4223                   No           No                   No                  No
## 4224                   No           No                   No                  No
## 4225                   No           No                   No                  No
## 4226                   No           No                   No                  No
## 4227                   No           No                   No                  No
## 4228                   No           No                   No                  No
## 4229                  Yes          Yes                  Yes                 Yes
## 4230                   No           No                   No                  No
## 4232                  Yes          Yes                  Yes                 Yes
## 4233                   No           No                   No                  No
## 4234                  Yes          Yes                   No                 Yes
## 4235                  Yes          Yes                  Yes                 Yes
## 4236                  Yes          Yes                  Yes                 Yes
## 4237                   No           No                   No                  No
## 4238                   No           No                   No                  No
## 4239                   No           No                   No                  No
## 4240                   No           No                   No                  No
## 4241                  Yes          Yes                  Yes                 Yes
## 4242                   No           No                   No                  No
## 4243                   No           No                   No                  No
## 4244                   No           No                   No                  No
## 4245                  Yes          Yes                  Yes                 Yes
## 4246                  Yes          Yes                  Yes                 Yes
## 4247                  Yes          Yes                   No                  No
## 4248                  Yes          Yes                   No                  No
## 4249                  Yes          Yes                  Yes                 Yes
## 4250                   No           No                   No                  No
## 4251                   No           No                   No                  No
## 4252                  Yes          Yes                  Yes                  No
## 4253                   No           No                   No                  No
## 4254                   No           No                   No                  No
## 4255                   No           No                   No                  No
## 4257                  Yes          Yes                  Yes                 Yes
## 4258                  Yes          Yes                  Yes                  No
## 4259                   No           No                   No                  No
## 4260                  Yes           No                  Yes                  No
## 4261                  Yes          Yes                   No                  No
## 4262                  Yes          Yes                  Yes                 Yes
## 4263                  Yes          Yes                  Yes                 Yes
## 4264                   No           No                   No                  No
## 4265                  Yes          Yes                  Yes                 Yes
## 4266                   No           No                   No                  No
## 4267                   No           No                   No                  No
## 4268                  Yes          Yes                  Yes                  No
## 4269                  Yes          Yes                  Yes                 Yes
## 4270                  Yes          Yes                  Yes                  No
## 4271                   No           No                   No                  No
## 4272                   No           No                   No                  No
## 4273                  Yes          Yes                  Yes                 Yes
## 4275                   No           No                   No                  No
## 4276                   No           No                   No                  No
## 4277                   No           No                   No                  No
## 4278                  Yes          Yes                  Yes                 Yes
## 4279                  Yes          Yes                  Yes                 Yes
## 4280                  Yes          Yes                  Yes                 Yes
## 4282                   No           No                   No                  No
## 4283                   No           No                   No                  No
## 4285                   No           No                   No                  No
## 4286                   No           No                   No                  No
## 4287                  Yes          Yes                  Yes                 Yes
## 4288                  Yes          Yes                  Yes                 Yes
## 4289                   No           No                   No                  No
## 4290                  Yes           No                   No                  No
## 4291                   No           No                   No                  No
## 4292                   No           No                   No                  No
## 4293                   No           No                   No                  No
## 4294                   No           No                   No                  No
## 4295                  Yes          Yes                  Yes                 Yes
## 4296                  Yes          Yes                  Yes                 Yes
## 4297                   No           No                   No                  No
## 4298                  Yes           No                  Yes                  No
## 4299                   No           No                   No                  No
## 4300                  Yes          Yes                  Yes                 Yes
## 4301                   No           No                   No                  No
## 4302                  Yes          Yes                  Yes                 Yes
## 4303                   No           No                   No                  No
## 4304                  Yes          Yes                  Yes                 Yes
## 4305                  Yes          Yes                  Yes                 Yes
## 4306                   No           No                   No                  No
## 4307                  Yes          Yes                   No                  No
## 4308                   No           No                   No                  No
## 4309                   No           No                   No                  No
## 4310                   No           No                   No                  No
## 4311                   No           No                   No                  No
## 4312                   No           No                   No                  No
## 4313                  Yes          Yes                  Yes                 Yes
## 4314                   No           No                   No                  No
## 4315                  Yes          Yes                  Yes                 Yes
## 4316                   No           No                   No                  No
## 4317                   No           No                   No                  No
## 4318                  Yes           No                  Yes                 Yes
## 4319                  Yes          Yes                  Yes                 Yes
## 4320                  Yes          Yes                  Yes                 Yes
## 4321                   No          Yes                  Yes                  No
## 4322                  Yes          Yes                  Yes                 Yes
## 4323                  Yes          Yes                  Yes                 Yes
## 4324                  Yes          Yes                  Yes                 Yes
## 4325                  Yes          Yes                  Yes                  No
## 4326                  Yes           No                   No                  No
## 4327                   No           No                   No                  No
## 4328                  Yes           No                  Yes                 Yes
## 4329                   No           No                   No                  No
## 4330                   No           No                   No                  No
## 4331                  Yes          Yes                  Yes                 Yes
## 4332                   No           No                   No                  No
## 4333                   No           No                   No                  No
## 4334                  Yes          Yes                  Yes                 Yes
## 4335                  Yes           No                  Yes                  No
## 4336                   No           No                   No                  No
## 4337                   No           No                   No                  No
## 4338                   No           No                   No                  No
## 4339                  Yes          Yes                  Yes                  No
## 4340                  Yes          Yes                  Yes                  No
## 4341                  Yes          Yes                  Yes                 Yes
## 4342                   No           No                   No                  No
## 4343                   No           No                   No                  No
## 4344                   No           No                   No                  No
## 4345                   No           No                   No                  No
## 4346                   No           No                   No                  No
## 4347                   No          Yes                  Yes                  No
## 4348                   No           No                   No                  No
## 4349                   No           No                   No                  No
## 4350                   No           No                   No                  No
## 4351                   No           No                   No                  No
## 4352                  Yes          Yes                  Yes                  No
## 4353                   No           No                   No                  No
## 4354                   No           No                   No                  No
## 4355                   No           No                   No                  No
## 4356                   No           No                   No                  No
## 4357                   No           No                   No                  No
## 4358                  Yes          Yes                  Yes                 Yes
## 4359                   No           No                   No                  No
## 4360                  Yes          Yes                  Yes                  No
## 4361                  Yes          Yes                  Yes                  No
## 4362                  Yes          Yes                  Yes                 Yes
## 4363                  Yes          Yes                  Yes                 Yes
## 4364                  Yes          Yes                   No                 Yes
## 4365                   No           No                   No                  No
## 4366                   No           No                   No                  No
## 4367                   No           No                   No                  No
## 4368                  Yes          Yes                   No                 Yes
## 4369                  Yes          Yes                  Yes                  No
## 4370                  Yes          Yes                  Yes                 Yes
## 4371                   No           No                   No                  No
## 4372                   No           No                   No                  No
## 4373                   No           No                   No                  No
## 4374                   No           No                   No                  No
## 4375                   No           No                   No                  No
## 4376                  Yes          Yes                  Yes                  No
## 4377                  Yes           No                  Yes                 Yes
## 4378                  Yes          Yes                  Yes                 Yes
## 4379                   No           No                   No                  No
## 4380                   No           No                   No                  No
## 4381                   No           No                   No                  No
## 4383                  Yes          Yes                   No                 Yes
## 4384                  Yes          Yes                  Yes                  No
## 4385                  Yes          Yes                  Yes                  No
## 4386                  Yes          Yes                  Yes                  No
## 4387                   No           No                   No                  No
## 4388                  Yes          Yes                  Yes                 Yes
## 4389                   No           No                   No                  No
## 4390                  Yes          Yes                  Yes                  No
## 4391                  Yes          Yes                  Yes                  No
## 4392                   No           No                   No                  No
## 4393                   No           No                   No                  No
## 4394                  Yes          Yes                  Yes                 Yes
## 4395                  Yes          Yes                  Yes                 Yes
## 4396                   No           No                   No                  No
## 4397                  Yes          Yes                  Yes                 Yes
## 4398                  Yes          Yes                  Yes                 Yes
## 4400                  Yes          Yes                  Yes                 Yes
## 4401                  Yes          Yes                  Yes                 Yes
## 4402                   No           No                   No                  No
## 4403                   No          Yes                  Yes                  No
## 4404                   No           No                   No                  No
## 4405                  Yes          Yes                  Yes                  No
## 4406                  Yes          Yes                  Yes                 Yes
## 4407                  Yes          Yes                  Yes                 Yes
## 4408                   No           No                   No                  No
## 4409                   No           No                   No                  No
## 4410                  Yes          Yes                  Yes                  No
## 4411                  Yes          Yes                  Yes                 Yes
## 4412                  Yes          Yes                  Yes                 Yes
## 4413                  Yes          Yes                  Yes                  No
## 4414                   No           No                   No                  No
## 4415                   No           No                   No                  No
## 4416                   No           No                   No                  No
## 4417                   No           No                   No                  No
## 4419                   No           No                   No                  No
## 4420                  Yes          Yes                  Yes                 Yes
## 4421                  Yes          Yes                  Yes                 Yes
## 4422                  Yes          Yes                  Yes                  No
## 4423                  Yes          Yes                  Yes                 Yes
## 4424                   No           No                   No                  No
## 4425                  Yes          Yes                  Yes                 Yes
## 4426                  Yes          Yes                  Yes                 Yes
## 4427                  Yes          Yes                   No                  No
## 4428                   No           No                   No                  No
## 4429                  Yes          Yes                   No                  No
## 4430                  Yes          Yes                  Yes                 Yes
## 4431                  Yes          Yes                  Yes                 Yes
## 4432                  Yes          Yes                   No                  No
## 4433                  Yes          Yes                  Yes                 Yes
## 4434                  Yes           No                   No                 Yes
## 4435                   No           No                   No                  No
## 4436                  Yes          Yes                  Yes                  No
## 4437                  Yes          Yes                  Yes                 Yes
## 4438                   No           No                   No                  No
## 4439                  Yes          Yes                  Yes                  No
## 4440                   No           No                   No                  No
## 4441                   No           No                   No                  No
## 4442                  Yes          Yes                  Yes                 Yes
## 4443                   No           No                   No                  No
## 4444                   No           No                   No                  No
## 4445                   No           No                   No                  No
## 4446                  Yes          Yes                  Yes                 Yes
## 4447                  Yes           No                   No                  No
## 4448                   No           No                   No                  No
## 4449                   No           No                   No                  No
## 4450                   No           No                   No                  No
## 4451                   No           No                   No                  No
## 4452                  Yes          Yes                   No                 Yes
## 4453                   No           No                   No                  No
## 4454                   No          Yes                   No                  No
## 4455                   No           No                   No                  No
## 4456                   No           No                   No                  No
## 4457                   No           No                   No                  No
## 4458                   No           No                   No                  No
## 4459                  Yes          Yes                  Yes                 Yes
## 4460                   No           No                   No                  No
## 4461                  Yes          Yes                  Yes                  No
## 4462                  Yes           No                  Yes                 Yes
## 4463                   No           No                   No                  No
## 4464                   No           No                   No                  No
## 4465                  Yes          Yes                  Yes                 Yes
## 4466                   No           No                   No                  No
## 4467                  Yes          Yes                  Yes                 Yes
## 4468                   No           No                   No                  No
## 4469                  Yes          Yes                  Yes                 Yes
## 4471                  Yes          Yes                  Yes                 Yes
## 4472                  Yes          Yes                  Yes                 Yes
## 4473                  Yes          Yes                  Yes                 Yes
## 4475                   No           No                   No                  No
## 4476                   No           No                   No                  No
## 4477                   No           No                   No                  No
## 4478                   No           No                   No                  No
## 4479                  Yes          Yes                  Yes                 Yes
## 4480                   No           No                   No                  No
## 4481                   No           No                   No                  No
## 4482                   No           No                   No                  No
## 4483                   No           No                   No                  No
## 4485                   No           No                   No                  No
## 4486                   No           No                   No                  No
## 4487                   No           No                   No                  No
## 4488                  Yes          Yes                  Yes                 Yes
## 4489                  Yes          Yes                   No                  No
## 4490                   No           No                   No                  No
## 4491                  Yes          Yes                  Yes                 Yes
## 4492                  Yes          Yes                  Yes                 Yes
## 4493                  Yes          Yes                  Yes                 Yes
## 4494                   No           No                   No                  No
## 4495                   No           No                   No                  No
## 4496                   No           No                   No                  No
## 4497                  Yes           No                  Yes                  No
## 4498                   No           No                   No                  No
## 4499                  Yes          Yes                  Yes                 Yes
## 4500                  Yes          Yes                  Yes                  No
## 4501                  Yes          Yes                  Yes                 Yes
## 4502                  Yes          Yes                  Yes                  No
## 4504                   No           No                   No                  No
## 4505                   No           No                   No                  No
## 4506                   No           No                   No                  No
## 4507                  Yes          Yes                  Yes                 Yes
## 4508                  Yes          Yes                  Yes                 Yes
## 4509                  Yes          Yes                  Yes                 Yes
## 4510                  Yes          Yes                  Yes                  No
## 4511                   No           No                   No                  No
## 4512                  Yes          Yes                   No                  No
## 4513                  Yes          Yes                   No                  No
## 4514                  Yes          Yes                  Yes                 Yes
## 4515                  Yes          Yes                  Yes                  No
## 4516                  Yes          Yes                  Yes                  No
## 4517                   No           No                   No                  No
## 4518                  Yes          Yes                  Yes                 Yes
## 4519                   No           No                   No                  No
## 4520                   No           No                   No                  No
## 4521                   No           No                   No                  No
## 4522                  Yes          Yes                  Yes                 Yes
## 4523                  Yes          Yes                  Yes                  No
## 4524                  Yes           No                  Yes                  No
## 4525                  Yes          Yes                  Yes                 Yes
## 4526                   No           No                   No                  No
## 4528                  Yes          Yes                  Yes                 Yes
## 4529                   No           No                   No                  No
## 4530                   No           No                   No                  No
## 4531                   No           No                   No                  No
## 4532                   No           No                   No                  No
## 4533                   No           No                   No                  No
## 4534                  Yes          Yes                  Yes                 Yes
## 4535                  Yes          Yes                  Yes                 Yes
## 4536                   No           No                   No                  No
## 4537                  Yes          Yes                  Yes                 Yes
## 4538                  Yes          Yes                  Yes                 Yes
## 4539                  Yes          Yes                  Yes                  No
## 4540                   No           No                   No                  No
## 4541                   No           No                   No                  No
## 4542                   No           No                   No                  No
## 4543                  Yes          Yes                  Yes                 Yes
## 4545                   No           No                   No                  No
## 4546                  Yes          Yes                   No                 Yes
## 4547                   No           No                   No                  No
## 4548                   No           No                   No                  No
## 4549                  Yes          Yes                  Yes                 Yes
## 4550                   No           No                   No                  No
## 4551                   No           No                   No                  No
## 4552                  Yes          Yes                  Yes                  No
## 4553                   No           No                   No                  No
## 4554                   No           No                   No                  No
## 4555                  Yes          Yes                  Yes                  No
## 4556                  Yes          Yes                   No                  No
## 4557                  Yes          Yes                  Yes                  No
## 4558                  Yes          Yes                  Yes                 Yes
## 4559                   No           No                   No                  No
## 4560                  Yes           No                  Yes                  No
## 4561                   No           No                   No                  No
## 4562                   No           No                   No                  No
## 4563                  Yes          Yes                  Yes                  No
## 4564                  Yes          Yes                  Yes                 Yes
## 4565                  Yes          Yes                  Yes                  No
## 4566                  Yes          Yes                  Yes                 Yes
## 4567                  Yes          Yes                  Yes                  No
## 4568                  Yes          Yes                  Yes                 Yes
## 4569                   No           No                   No                  No
## 4570                   No           No                   No                  No
## 4571                   No           No                   No                  No
## 4572                   No           No                   No                  No
## 4573                  Yes          Yes                  Yes                  No
## 4574                  Yes          Yes                  Yes                  No
## 4575                  Yes          Yes                  Yes                 Yes
## 4577                   No           No                   No                  No
## 4578                   No           No                   No                  No
## 4579                   No           No                  Yes                  No
## 4580                   No           No                   No                  No
## 4581                   No           No                   No                  No
## 4582                   No           No                   No                  No
## 4583                  Yes          Yes                   No                 Yes
## 4584                   No           No                   No                  No
## 4585                  Yes          Yes                   No                  No
## 4586                   No           No                   No                  No
## 4587                  Yes          Yes                  Yes                 Yes
## 4588                  Yes          Yes                  Yes                 Yes
## 4589                  Yes          Yes                  Yes                 Yes
## 4590                   No           No                   No                  No
## 4591                  Yes          Yes                  Yes                 Yes
## 4592                   No           No                   No                  No
## 4593                  Yes          Yes                  Yes                 Yes
## 4594                  Yes          Yes                  Yes                 Yes
## 4595                   No          Yes                   No                  No
## 4596                   No           No                   No                  No
## 4597                   No           No                   No                  No
## 4598                  Yes          Yes                  Yes                 Yes
## 4599                   No           No                   No                  No
## 4600                  Yes          Yes                  Yes                  No
## 4601                   No           No                   No                  No
## 4602                   No           No                   No                  No
## 4603                  Yes          Yes                  Yes                 Yes
## 4604                  Yes          Yes                  Yes                 Yes
## 4605                  Yes          Yes                  Yes                  No
## 4606                   No           No                   No                  No
## 4607                   No           No                   No                  No
## 4608                  Yes          Yes                  Yes                 Yes
## 4609                   No           No                   No                  No
## 4610                   No           No                   No                  No
## 4611                  Yes          Yes                  Yes                  No
## 4612                   No           No                   No                  No
## 4615                  Yes          Yes                  Yes                  No
## 4616                  Yes          Yes                  Yes                 Yes
## 4617                   No           No                   No                  No
## 4618                  Yes          Yes                  Yes                  No
## 4619                  Yes          Yes                  Yes                  No
## 4620                  Yes          Yes                  Yes                 Yes
## 4621                   No           No                   No                  No
## 4622                   No           No                   No                  No
## 4623                   No           No                   No                  No
## 4624                  Yes           No                  Yes                 Yes
## 4625                   No           No                   No                  No
## 4626                   No           No                   No                  No
## 4627                  Yes          Yes                  Yes                 Yes
## 4628                   No           No                   No                  No
## 4629                   No           No                   No                  No
## 4630                  Yes          Yes                  Yes                  No
## 4631                   No           No                   No                  No
## 4633                   No           No                   No                  No
## 4634                   No           No                   No                  No
## 4635                   No           No                   No                  No
## 4636                  Yes          Yes                  Yes                 Yes
## 4637                   No           No                   No                  No
## 4638                  Yes          Yes                  Yes                  No
## 4639                   No           No                   No                  No
## 4640                  Yes          Yes                  Yes                  No
## 4641                   No           No                   No                  No
## 4642                  Yes          Yes                  Yes                 Yes
## 4643                  Yes          Yes                  Yes                  No
## 4644                  Yes           No                  Yes                 Yes
## 4645                   No           No                   No                  No
## 4646                  Yes          Yes                  Yes                 Yes
## 4647                  Yes          Yes                  Yes                 Yes
## 4648                  Yes          Yes                  Yes                 Yes
## 4649                   No           No                   No                  No
## 4650                  Yes          Yes                  Yes                  No
## 4651                   No           No                   No                  No
## 4652                  Yes          Yes                  Yes                 Yes
## 4654                   No           No                   No                  No
## 4655                   No           No                   No                  No
## 4657                   No           No                   No                  No
## 4658                  Yes          Yes                  Yes                  No
## 4660                  Yes          Yes                  Yes                 Yes
## 4661                   No           No                   No                  No
## 4662                   No           No                   No                  No
## 4663                  Yes          Yes                  Yes                 Yes
## 4664                   No           No                   No                  No
## 4665                   No           No                   No                  No
## 4666                  Yes          Yes                  Yes                 Yes
## 4667                  Yes          Yes                  Yes                 Yes
## 4670                   No           No                   No                  No
## 4671                  Yes          Yes                  Yes                  No
## 4672                   No           No                   No                  No
## 4673                  Yes          Yes                  Yes                 Yes
## 4674                  Yes          Yes                  Yes                 Yes
## 4675                   No           No                   No                  No
## 4676                  Yes          Yes                  Yes                 Yes
## 4677                   No           No                   No                  No
## 4678                  Yes          Yes                   No                  No
## 4679                  Yes          Yes                  Yes                 Yes
## 4680                   No           No                   No                  No
## 4681                   No           No                   No                  No
## 4682                   No           No                   No                  No
## 4683                   No           No                   No                  No
## 4684                  Yes          Yes                   No                 Yes
## 4685                   No           No                   No                  No
## 4687                  Yes          Yes                  Yes                  No
## 4688                  Yes          Yes                  Yes                 Yes
## 4689                  Yes          Yes                  Yes                  No
## 4690                  Yes           No                  Yes                  No
## 4691                   No           No                   No                  No
## 4692                  Yes          Yes                  Yes                 Yes
## 4693                   No           No                   No                  No
## 4694                   No           No                   No                  No
## 4695                  Yes          Yes                  Yes                  No
## 4696                  Yes          Yes                  Yes                  No
## 4697                  Yes          Yes                  Yes                 Yes
## 4698                   No           No                   No                  No
## 4699                   No           No                   No                  No
## 4700                   No           No                   No                  No
## 4701                  Yes          Yes                  Yes                 Yes
## 4703                   No           No                   No                  No
## 4704                  Yes          Yes                  Yes                  No
## 4705                  Yes          Yes                  Yes                 Yes
## 4706                   No           No                   No                  No
## 4707                  Yes          Yes                   No                  No
## 4708                   No           No                   No                  No
## 4709                   No           No                   No                  No
## 4710                   No           No                   No                  No
## 4712                  Yes           No                   No                  No
## 4713                  Yes          Yes                  Yes                  No
## 4714                   No           No                   No                  No
## 4715                  Yes          Yes                  Yes                  No
## 4716                   No           No                   No                  No
## 4717                   No           No                   No                  No
## 4718                   No           No                   No                  No
## 4719                   No           No                   No                  No
## 4720                  Yes          Yes                   No                  No
## 4721                  Yes          Yes                  Yes                 Yes
## 4722                  Yes          Yes                  Yes                 Yes
## 4723                  Yes          Yes                  Yes                 Yes
## 4724                   No           No                   No                  No
## 4725                  Yes          Yes                  Yes                  No
## 4727                  Yes           No                  Yes                  No
## 4728                   No           No                   No                  No
## 4729                  Yes          Yes                   No                  No
## 4731                   No           No                   No                  No
## 4732                   No           No                   No                  No
## 4733                   No           No                   No                  No
## 4734                  Yes          Yes                  Yes                 Yes
## 4735                  Yes          Yes                  Yes                 Yes
## 4736                   No           No                   No                  No
## 4737                  Yes          Yes                  Yes                  No
## 4738                   No           No                   No                  No
## 4739                  Yes           No                  Yes                  No
## 4740                  Yes          Yes                  Yes                 Yes
## 4741                   No           No                   No                  No
## 4742                   No           No                   No                  No
## 4743                   No           No                   No                  No
## 4744                   No           No                   No                  No
## 4745                  Yes          Yes                  Yes                 Yes
## 4746                  Yes          Yes                  Yes                 Yes
## 4748                   No           No                   No                  No
## 4749                  Yes          Yes                  Yes                 Yes
## 4750                   No           No                   No                  No
## 4751                   No           No                   No                  No
## 4752                   No           No                   No                  No
## 4754                   No           No                   No                  No
## 4755                  Yes          Yes                  Yes                 Yes
## 4756                  Yes          Yes                  Yes                  No
## 4757                  Yes          Yes                  Yes                  No
## 4759                   No           No                   No                  No
## 4760                   No           No                   No                  No
## 4761                   No           No                   No                  No
## 4762                  Yes          Yes                  Yes                 Yes
## 4763                   No           No                   No                  No
## 4764                   No           No                   No                  No
## 4765                   No           No                   No                  No
## 4766                  Yes          Yes                  Yes                 Yes
## 4767                   No           No                   No                  No
## 4768                   No           No                   No                  No
## 4769                   No           No                   No                  No
## 4770                  Yes          Yes                  Yes                 Yes
## 4771                  Yes          Yes                  Yes                  No
## 4773                  Yes          Yes                  Yes                 Yes
## 4774                  Yes          Yes                  Yes                  No
## 4775                   No           No                   No                  No
## 4776                   No           No                   No                  No
## 4777                  Yes          Yes                  Yes                  No
## 4778                  Yes          Yes                   No                  No
## 4779                   No           No                   No                  No
## 4780                   No           No                   No                  No
## 4781                  Yes          Yes                   No                  No
## 4782                  Yes          Yes                  Yes                  No
## 4783                   No           No                   No                  No
## 4784                  Yes          Yes                  Yes                 Yes
## 4785                   No           No                   No                  No
## 4787                   No           No                   No                  No
## 4788                  Yes           No                  Yes                 Yes
## 4789                   No           No                   No                  No
## 4790                  Yes          Yes                  Yes                  No
## 4791                   No           No                   No                  No
## 4792                   No           No                   No                  No
## 4793                   No           No                   No                  No
## 4794                   No           No                   No                  No
## 4795                  Yes          Yes                  Yes                 Yes
## 4796                   No           No                   No                  No
## 4797                  Yes          Yes                  Yes                 Yes
## 4798                   No           No                   No                  No
## 4799                   No           No                   No                  No
## 4800                  Yes          Yes                  Yes                 Yes
## 4801                  Yes          Yes                  Yes                  No
## 4802                  Yes          Yes                  Yes                 Yes
## 4803                  Yes          Yes                  Yes                  No
## 4804                  Yes          Yes                  Yes                 Yes
## 4805                  Yes          Yes                  Yes                 Yes
## 4806                   No           No                   No                  No
## 4807                   No           No                   No                  No
## 4808                  Yes          Yes                   No                 Yes
## 4809                   No           No                   No                  No
## 4810                   No           No                   No                  No
## 4811                   No           No                   No                  No
## 4812                  Yes          Yes                  Yes                 Yes
## 4813                   No           No                   No                  No
## 4815                   No           No                   No                  No
## 4817                  Yes          Yes                  Yes                 Yes
## 4818                  Yes          Yes                  Yes                 Yes
## 4820                  Yes          Yes                  Yes                 Yes
## 4821                  Yes          Yes                  Yes                 Yes
## 4822                  Yes          Yes                  Yes                 Yes
## 4823                   No           No                   No                  No
## 4824                   No           No                   No                  No
## 4825                   No           No                   No                  No
## 4826                  Yes          Yes                  Yes                  No
## 4827                   No           No                   No                  No
## 4828                  Yes          Yes                  Yes                 Yes
## 4829                   No           No                   No                  No
## 4830                  Yes           No                   No                  No
## 4831                  Yes          Yes                   No                  No
## 4832                   No           No                   No                  No
## 4833                  Yes          Yes                  Yes                  No
## 4834                   No           No                   No                  No
## 4835                  Yes           No                  Yes                  No
## 4836                   No           No                   No                  No
## 4837                   No           No                   No                  No
## 4838                   No           No                   No                  No
## 4839                  Yes           No                   No                  No
## 4840                   No           No                   No                  No
## 4841                   No           No                   No                  No
## 4842                  Yes          Yes                  Yes                 Yes
## 4843                  Yes          Yes                  Yes                  No
## 4844                   No           No                   No                  No
## 4845                   No           No                   No                  No
## 4846                  Yes          Yes                  Yes                  No
## 4847                  Yes           No                  Yes                 Yes
## 4848                  Yes          Yes                  Yes                 Yes
## 4849                   No           No                   No                  No
## 4850                   No           No                   No                  No
## 4851                   No           No                   No                  No
## 4852                   No           No                   No                  No
## 4853                  Yes           No                  Yes                 Yes
## 4854                   No           No                   No                  No
## 4855                   No           No                   No                  No
##      package_guided_tour package_insurance night_mainland night_zanzibar
## 1                     No                No              0              7
## 2                     No                No              0              7
## 3                    Yes                No              6              6
## 4                     No                No              3              0
## 5                    Yes               Yes              7              0
## 6                     No                No             14              7
## 7                     No                No              7              0
## 8                     No                No              4              0
## 9                     No                No             60              0
## 10                   Yes               Yes              6              0
## 11                   Yes                No             11             14
## 12                   Yes                No             17              9
## 13                    No               Yes             12              6
## 14                   Yes               Yes              7              8
## 15                    No                No             14              0
## 16                   Yes                No              8              0
## 17                    No                No              2              0
## 18                   Yes                No              5              0
## 19                    No                No             17              0
## 20                    No                No             20              0
## 21                    No                No              3              0
## 22                    No                No             18              2
## 23                    No                No             15              0
## 24                   Yes                No              4              0
## 26                   Yes                No              8              0
## 27                    No                No              3              0
## 28                    No                No              5              0
## 29                    No                No              0              5
## 30                   Yes                No              8              2
## 31                   Yes                No              6              5
## 32                    No                No             20              5
## 33                    No                No             12              3
## 34                    No                No              5              0
## 35                    No                No              5              5
## 36                    No                No             17              0
## 37                    No                No              7              3
## 38                    No                No              0              5
## 39                    No                No              4              0
## 40                    No               Yes              7              6
## 41                    No                No              4              0
## 42                    No                No             11              5
## 43                    No                No              1              0
## 44                   Yes                No              6              0
## 45                    No                No             15              5
## 46                    No                No             29              0
## 47                    No                No              2              0
## 48                   Yes                No             12              0
## 49                    No                No             60              7
## 50                   Yes               Yes             10              0
## 51                    No                No             77              0
## 52                    No                No              2              0
## 53                   Yes                No              4              4
## 54                    No                No             27              0
## 55                    No                No              1              0
## 56                    No                No             15              2
## 57                   Yes                No             15              0
## 58                    No                No              3              1
## 59                   Yes               Yes              7              0
## 60                    No                No              5              0
## 61                    No                No              2              0
## 62                   Yes                No             14              0
## 63                    No                No             28              0
## 64                   Yes                No             10             10
## 65                    No                No              2              0
## 66                    No                No             24              0
## 67                    No                No              6              0
## 68                    No                No              4              0
## 69                    No                No             18              0
## 70                    No                No              2             11
## 71                   Yes               Yes              7              4
## 72                    No                No              3             15
## 73                    No                No              9              6
## 74                    No                No              1              0
## 75                   Yes                No              4              0
## 76                    No                No              9             12
## 77                   Yes                No              9              0
## 78                   Yes               Yes              7              5
## 79                   Yes               Yes             11              0
## 80                    No                No              8              0
## 81                   Yes                No              9              0
## 83                    No                No             20              0
## 84                    No                No             20              3
## 85                    No                No              5              0
## 86                    No                No             12              4
## 87                    No                No              2             12
## 88                    No                No              4             10
## 89                    No                No              6              0
## 90                    No                No              4              0
## 91                    No                No              0              3
## 92                   Yes                No             14              0
## 93                   Yes               Yes              5              4
## 94                    No                No             10              0
## 96                    No                No              2              0
## 97                    No                No              3              0
## 98                   Yes               Yes              7              0
## 99                    No                No              3              5
## 100                   No                No             10              0
## 101                   No                No              4              0
## 102                   No                No              8              0
## 103                   No                No              3              0
## 104                   No                No            100              0
## 105                   No               Yes              0              7
## 106                   No                No              7              0
## 107                  Yes               Yes              3              0
## 108                  Yes                No             10              0
## 109                  Yes                No              7              0
## 110                   No                No              9              0
## 111                  Yes               Yes              4             11
## 112                   No                No              2              0
## 113                   No                No              2              0
## 114                  Yes               Yes              4              0
## 115                   No                No              9              6
## 117                  Yes                No             13              0
## 118                  Yes               Yes              6              5
## 119                  Yes                No              6              0
## 120                   No               Yes              4              0
## 121                  Yes                No             13              0
## 123                   No                No             14              0
## 124                   No                No              4              0
## 125                  Yes                No              5              0
## 126                   No                No              3              0
## 127                  Yes                No              4              0
## 128                   No                No              8              0
## 129                  Yes               Yes              6              0
## 130                  Yes                No              7              0
## 131                   No                No              3              0
## 132                  Yes               Yes              3              0
## 133                  Yes                No             15              0
## 134                   No                No             42              0
## 135                  Yes               Yes              6              0
## 136                  Yes               Yes             11              4
## 138                  Yes                No             12              0
## 139                   No                No              0              4
## 140                   No                No              3              0
## 141                  Yes                No              0              7
## 142                   No                No              3              0
## 143                   No               Yes              0              7
## 144                   No                No              5              6
## 145                   No                No             14              4
## 146                   No                No             16              0
## 147                   No                No             10              0
## 148                  Yes                No              9              0
## 149                   No                No              8              0
## 150                   No                No              3              0
## 151                   No                No              5              0
## 152                  Yes                No             10              0
## 153                  Yes               Yes             11              3
## 154                   No                No              6              0
## 155                  Yes               Yes              9              0
## 156                   No                No              0              7
## 157                   No                No              0              4
## 158                   No                No             20              0
## 159                  Yes                No             12              0
## 160                   No                No              0              7
## 161                  Yes                No             10              5
## 162                  Yes               Yes             11              0
## 163                  Yes                No             16              0
## 164                   No               Yes              0              4
## 165                  Yes                No              6              7
## 166                  Yes                No             15              0
## 167                  Yes               Yes              9              0
## 168                   No                No              4              0
## 169                   No                No              2              0
## 170                   No                No              2              0
## 171                   No                No             30              0
## 173                  Yes                No              8              0
## 174                   No                No              3              0
## 175                   No                No             14              0
## 176                  Yes                No             10              4
## 177                   No                No              7              0
## 178                  Yes               Yes              6              0
## 179                   No                No              0              7
## 180                   No                No              3              0
## 181                  Yes                No              3             10
## 182                   No                No             15              0
## 183                  Yes               Yes             12              0
## 184                  Yes                No             20              0
## 185                  Yes                No              7              0
## 186                   No                No              2              0
## 187                  Yes                No              6              0
## 188                  Yes                No              6              0
## 189                  Yes                No              0             35
## 190                  Yes                No              4              6
## 191                   No                No             30              0
## 192                   No                No              0              7
## 193                  Yes                No              5              4
## 194                   No                No              0              7
## 195                   No               Yes              5             10
## 196                   No                No             15              0
## 197                   No                No             30              0
## 198                   No                No              7              0
## 199                   No                No              8              0
## 200                   No                No              0              7
## 201                   No                No              3              0
## 202                  Yes               Yes              6              0
## 203                  Yes                No              7              0
## 204                   No                No              4              0
## 205                  Yes                No              3              0
## 206                  Yes                No              4              6
## 207                  Yes                No              0              7
## 208                  Yes                No             10              0
## 209                  Yes                No             35              0
## 210                  Yes               Yes             10              5
## 211                   No                No             60             14
## 212                   No                No              7              0
## 213                  Yes                No              7              6
## 214                   No                No              2              0
## 215                   No                No             17              4
## 216                  Yes               Yes              8              0
## 217                  Yes               Yes              7              0
## 218                   No                No              0              4
## 219                   No               Yes              0              7
## 220                   No                No              0              7
## 221                  Yes                No              7              0
## 222                   No                No             14              0
## 223                   No                No              3              6
## 224                   No                No             44              0
## 225                  Yes                No             10              4
## 226                   No                No              1              0
## 228                   No                No              4              0
## 229                   No                No              1              2
## 230                   No                No             40              2
## 231                   No                No              0             12
## 232                   No                No              2              0
## 233                  Yes                No             13              0
## 234                  Yes               Yes              9              0
## 235                   No                No              7              6
## 237                  Yes               Yes             11              0
## 238                   No                No              8              4
## 239                   No                No             18              0
## 241                   No                No              2              0
## 242                   No                No              0              7
## 243                   No                No              3              0
## 244                   No                No              3              0
## 245                  Yes                No              5              4
## 246                  Yes                No             12              2
## 247                   No                No             14              4
## 248                  Yes               Yes             10              0
## 249                   No                No              0              7
## 250                   No               Yes              0              7
## 251                   No                No              5              0
## 252                   No                No              0              7
## 253                  Yes                No              7              0
## 254                  Yes                No             12              0
## 255                  Yes               Yes              9              5
## 256                   No                No              1             44
## 257                   No                No              4              0
## 258                  Yes                No              9              0
## 259                   No                No              5              0
## 260                   No                No             15              3
## 261                  Yes                No              5              6
## 262                  Yes                No             14              0
## 264                   No                No              2              1
## 265                   No                No             10              3
## 266                  Yes               Yes             10              4
## 267                   No                No              4              0
## 268                   No                No             11              0
## 269                  Yes               Yes              8              4
## 270                   No                No              3              0
## 271                   No                No              0              6
## 272                   No                No              5              0
## 273                   No               Yes             12              0
## 274                  Yes                No              8              0
## 275                   No                No             60              0
## 276                  Yes                No             10              7
## 277                   No                No              7              0
## 278                   No                No             14              0
## 279                   No                No              4              0
## 280                   No                No              4              0
## 282                   No                No              0              7
## 283                   No                No              8              4
## 284                   No                No              0              8
## 285                  Yes                No             23              0
## 286                   No                No              9              0
## 287                  Yes                No              5              2
## 288                   No                No             25              0
## 289                   No                No              2              0
## 290                   No                No              4              0
## 291                   No                No             45              0
## 292                   No                No             50              6
## 293                   No                No             26              0
## 294                   No                No              6              0
## 295                  Yes                No              8              3
## 296                   No                No              8              6
## 297                   No                No             21              0
## 298                   No                No              4              0
## 299                   No                No              3              0
## 300                   No                No              7              0
## 302                   No                No             10              0
## 303                   No                No              0              6
## 305                  Yes                No              9              0
## 306                   No                No              3              0
## 307                   No                No              4              0
## 308                   No                No              2              0
## 309                   No                No             20              7
## 310                  Yes                No              3              0
## 311                  Yes                No              7              0
## 312                   No                No              8              0
## 313                   No                No              0             16
## 314                  Yes                No             14              0
## 315                  Yes                No              6              0
## 316                   No                No              3              0
## 320                   No                No              1              0
## 321                   No                No             15              0
## 322                   No                No              5              2
## 323                   No                No             10              0
## 324                   No                No              3              0
## 325                   No                No              3              0
## 326                   No                No             60              0
## 327                   No                No             10              4
## 328                  Yes               Yes              6              5
## 329                   No                No             20              0
## 330                   No                No              2              0
## 331                  Yes                No             14              0
## 332                  Yes                No              5              0
## 333                   No               Yes              0              9
## 334                  Yes                No             12              0
## 335                   No                No             30              0
## 336                   No                No             42              0
## 337                   No                No              2              0
## 338                  Yes               Yes             15              0
## 339                   No                No              3              0
## 340                  Yes                No             15              0
## 341                  Yes                No             11              0
## 342                   No                No              0              7
## 343                   No                No             35              0
## 344                   No                No              0            120
## 345                   No                No              1              0
## 346                  Yes                No              0              7
## 347                   No                No             14              5
## 348                   No                No              6              0
## 349                   No                No              1              0
## 350                   No                No              0              7
## 351                  Yes                No             10              0
## 352                  Yes               Yes             12              0
## 354                   No                No              5              0
## 355                   No                No             56              5
## 356                  Yes                No              0              7
## 357                  Yes                No              0             14
## 358                   No                No              0              6
## 359                   No                No              8              4
## 360                   No                No              5              0
## 361                  Yes               Yes             11              0
## 362                  Yes               Yes              7             11
## 363                  Yes                No             12              0
## 364                  Yes               Yes             14              6
## 365                   No                No              1              0
## 366                   No                No              3              0
## 367                   No                No             10              0
## 368                   No                No              6              6
## 369                   No                No              7             10
## 370                   No                No              3             19
## 371                   No                No              0              9
## 372                   No                No              1              0
## 373                  Yes                No              8              0
## 374                   No                No              5              0
## 375                   No                No              8              0
## 376                  Yes               Yes             14              5
## 377                   No                No              5              0
## 378                  Yes               Yes             10              0
## 379                  Yes                No              5              0
## 380                   No                No              6              0
## 381                   No                No              0             20
## 382                   No                No              2              0
## 383                   No                No              1              0
## 384                   No                No              7              0
## 385                   No                No             20             19
## 386                   No                No              7              0
## 387                   No                No              2              0
## 388                  Yes               Yes              7              0
## 389                   No                No              9              0
## 390                   No                No              4              0
## 391                   No                No              4              0
## 392                   No                No             10              0
## 393                   No                No             45              7
## 394                   No                No             10              3
## 396                  Yes                No             12              5
## 397                   No                No              7              0
## 398                   No                No              0             21
## 399                   No                No             30              5
## 400                   No                No              3              0
## 401                  Yes               Yes              0              4
## 402                   No                No             22              0
## 403                  Yes                No             10              0
## 404                   No                No              8              0
## 405                   No                No              7              0
## 406                   No                No             12              0
## 407                  Yes                No              8              0
## 408                   No                No              3              0
## 409                   No                No              4              0
## 410                   No                No              8              5
## 411                  Yes                No             14             14
## 412                   No                No              2              0
## 413                   No                No              0              8
## 414                   No                No              3              0
## 415                   No                No              2              0
## 416                   No                No              9              1
## 417                  Yes               Yes              5              0
## 418                   No                No             10              0
## 419                   No                No              6              0
## 420                   No                No             33              0
## 422                  Yes                No              0              7
## 423                   No                No             10              3
## 424                   No                No             23              0
## 426                   No                No              2              0
## 427                   No                No              5              0
## 428                  Yes               Yes             10              6
## 429                   No                No              8              0
## 430                   No                No              0            108
## 431                  Yes               Yes              5              0
## 432                  Yes               Yes             30              8
## 433                   No                No              1              0
## 435                  Yes               Yes             30              0
## 436                   No                No             15              3
## 437                   No                No             10              0
## 439                   No                No             90              0
## 440                   No                No             18              3
## 441                   No                No              0              6
## 442                   No                No              2              0
## 443                   No                No              0              3
## 444                  Yes                No              0              8
## 445                   No                No             17              0
## 446                  Yes                No              8              2
## 447                   No                No             45              0
## 448                   No                No              4              0
## 449                  Yes                No             15              0
## 450                  Yes                No             14              4
## 451                   No                No              0              7
## 452                   No                No             14              0
## 453                   No                No              0              4
## 454                   No                No              2              0
## 456                   No                No              1              0
## 457                   No                No             16              6
## 458                  Yes                No              5              7
## 459                   No               Yes              0             20
## 460                   No                No             30              0
## 461                   No                No              4              0
## 462                   No                No              0              8
## 463                   No                No              0              9
## 464                  Yes                No             12              0
## 465                  Yes                No              9              0
## 466                   No                No              1              0
## 467                  Yes                No              7              0
## 468                  Yes               Yes              5              2
## 469                  Yes                No             10              0
## 470                   No                No              3              1
## 471                   No                No             30              0
## 472                   No                No              0              5
## 473                  Yes               Yes              5              0
## 474                  Yes                No              7              0
## 475                  Yes               Yes             13              0
## 476                   No                No              8              5
## 477                  Yes               Yes              4              0
## 478                  Yes                No             13              5
## 479                   No                No              3              0
## 480                   No                No              6              0
## 481                   No                No              9              0
## 482                   No                No             12              0
## 483                   No                No              5              0
## 484                   No                No             14              7
## 485                   No                No              7              0
## 486                   No                No              3              3
## 487                  Yes                No             12              0
## 488                  Yes                No             10              0
## 489                  Yes                No              8              0
## 490                   No                No              4              0
## 491                   No                No              8              0
## 492                   No                No              1              0
## 493                   No                No              9              7
## 494                  Yes                No             12              5
## 495                   No                No              7              6
## 497                  Yes                No              9              8
## 498                   No                No              4             10
## 499                  Yes                No              5              2
## 500                   No                No              2              0
## 501                  Yes                No              4              0
## 502                  Yes               Yes              3              0
## 503                   No                No             18              4
## 504                   No                No              3              0
## 505                   No                No              4              0
## 506                   No                No             28              0
## 507                   No                No              1              0
## 508                   No                No              5              5
## 509                  Yes                No             10              0
## 510                   No                No              2              0
## 511                   No                No              0              7
## 512                  Yes                No             18              0
## 513                  Yes                No             16              0
## 514                   No                No             13              3
## 515                  Yes                No              6              0
## 516                   No                No              9              4
## 517                  Yes                No             11              3
## 518                   No                No              0              7
## 519                   No                No              6              0
## 520                   No                No              3              3
## 521                   No               Yes             12              9
## 522                  Yes               Yes              7              7
## 523                   No                No              3              0
## 524                  Yes                No             11              0
## 526                  Yes               Yes              9              0
## 527                   No                No              4              0
## 528                   No                No             10              0
## 529                   No                No              0             12
## 530                   No                No             35              3
## 531                   No                No              7              7
## 532                   No                No              4              0
## 533                   No                No              8              4
## 534                   No                No             13              0
## 535                  Yes                No             12              0
## 536                  Yes                No              8              4
## 537                  Yes                No              7              7
## 538                  Yes                No              1             13
## 539                  Yes                No             14              3
## 540                   No                No             15              8
## 541                  Yes                No             15              0
## 542                   No                No              2              0
## 543                   No                No             12              0
## 544                   No                No              2              0
## 545                  Yes                No             13              0
## 546                   No                No              2              4
## 547                   No                No              4              0
## 548                   No                No             12              6
## 549                   No                No             10              0
## 550                   No               Yes              6              0
## 551                   No                No              0              3
## 552                   No                No             16              0
## 553                  Yes                No              7              1
## 554                  Yes               Yes             14              0
## 555                   No                No              0              7
## 556                   No               Yes              5              5
## 557                   No                No              2              0
## 558                   No                No              5              0
## 559                  Yes               Yes             10              3
## 560                  Yes               Yes              6              0
## 561                   No                No              5              0
## 562                  Yes                No              6              0
## 563                   No                No              5              8
## 564                  Yes               Yes              6              0
## 565                  Yes               Yes              7              7
## 566                   No                No              5              0
## 567                  Yes                No              6              0
## 568                   No                No              4              0
## 570                  Yes                No             10              0
## 571                   No                No              7              0
## 572                  Yes                No              4              5
## 573                   No                No              0             14
## 574                  Yes               Yes             11              0
## 575                  Yes                No             11              0
## 576                   No                No              0              7
## 577                   No                No             20              0
## 578                  Yes                No             10              4
## 579                   No                No              0              7
## 581                   No                No             10              0
## 582                   No                No             18              0
## 583                  Yes                No              6              0
## 584                   No                No              3              0
## 585                   No                No              1              0
## 586                  Yes                No              7             14
## 587                   No                No             14              3
## 588                   No                No              5              0
## 589                   No                No              3              0
## 590                  Yes                No             10              0
## 591                  Yes                No             10              3
## 592                  Yes                No             14              0
## 593                  Yes                No              4              0
## 594                   No               Yes              0              8
## 595                   No                No              2              0
## 596                   No                No             12              0
## 597                   No                No            120              0
## 598                  Yes               Yes              4              0
## 599                   No                No              7              0
## 600                  Yes                No             12              0
## 601                  Yes                No              5              0
## 602                   No                No              0              7
## 603                   No                No              5              0
## 604                  Yes               Yes              5             10
## 605                  Yes                No             10              5
## 606                   No                No              5              0
## 607                  Yes                No              9              5
## 608                  Yes                No              5              5
## 609                  Yes               Yes              4              3
## 611                  Yes                No             12              0
## 612                   No                No              2              0
## 613                   No                No              7              0
## 614                   No                No             16              4
## 615                   No                No              7              0
## 616                   No                No             10              5
## 617                   No                No              3              0
## 618                  Yes               Yes             16              0
## 619                   No                No              8              2
## 620                  Yes                No              9              0
## 621                   No                No              0              7
## 622                   No                No             10              0
## 624                  Yes                No             10             11
## 625                   No                No              7              0
## 626                  Yes                No              7              0
## 627                   No                No              2              0
## 628                   No                No             25              0
## 629                  Yes               Yes              7              3
## 631                   No                No              1              0
## 632                   No                No             12              0
## 633                   No                No              2              0
## 634                   No                No              2              5
## 635                   No                No              5              0
## 636                  Yes                No              7              0
## 638                   No               Yes              0              7
## 639                   No               Yes              0              6
## 640                   No                No              0             12
## 641                   No                No              3              0
## 642                   No                No              8              0
## 643                  Yes                No              7              0
## 644                   No                No             10              0
## 645                  Yes                No              8              0
## 646                   No                No             13              4
## 647                  Yes               Yes              4              2
## 648                  Yes                No             15              4
## 649                   No                No              0             14
## 650                   No                No              6              1
## 651                   No                No              2              0
## 652                  Yes                No             12              0
## 653                   No                No              8              3
## 654                   No                No             28              0
## 655                  Yes                No              0              7
## 656                  Yes               Yes              4              4
## 657                   No                No              3              4
## 658                   No                No              0              6
## 659                  Yes                No              4              0
## 660                  Yes                No             56              3
## 661                   No                No              5              0
## 662                   No                No             14              0
## 663                  Yes                No             10              0
## 664                   No                No              1              0
## 665                   No                No              0              5
## 666                   No                No              3              0
## 667                   No                No              3              2
## 669                   No                No              4              0
## 670                   No                No              0              7
## 671                   No                No             24              0
## 672                  Yes                No             15              3
## 673                  Yes                No             21              0
## 674                  Yes                No              5              0
## 675                   No                No              7              0
## 676                  Yes               Yes              4              5
## 677                  Yes                No             14              3
## 678                   No                No              3              0
## 679                   No                No              9              2
## 680                   No                No             10              0
## 681                   No                No              9              0
## 682                   No                No              1              0
## 683                   No                No              3              0
## 684                  Yes                No              9              3
## 685                  Yes                No             13              0
## 686                   No                No              2              0
## 688                  Yes                No              7              0
## 690                  Yes                No              5              0
## 691                  Yes               Yes              9              3
## 692                  Yes                No              6              0
## 693                   No                No              6              0
## 694                  Yes               Yes             13              7
## 695                   No                No             14              6
## 696                   No                No             17              0
## 697                   No                No              0              7
## 698                   No                No             10              3
## 699                  Yes                No             17              2
## 700                  Yes                No              2              5
## 701                   No                No             13              0
## 702                   No                No              4              0
## 703                  Yes                No             16              0
## 704                   No                No              4              0
## 705                   No                No              2              0
## 706                   No                No             22              0
## 707                  Yes                No              0              7
## 708                   No                No             10              0
## 709                  Yes                No              4              0
## 710                   No                No              8              0
## 711                  Yes                No              1             70
## 712                  Yes               Yes              5              0
## 713                   No                No              2              0
## 714                   No                No              5             10
## 715                   No                No             20              0
## 716                   No                No             11              0
## 717                   No                No              6              6
## 718                   No                No              0              9
## 719                   No                No              5              0
## 720                  Yes                No             24              3
## 721                  Yes               Yes              4              0
## 722                   No                No             14              7
## 723                  Yes               Yes             11              0
## 724                   No                No              4              0
## 725                   No               Yes              0              6
## 726                   No                No             14              9
## 727                   No                No             10              0
## 728                   No                No              3              0
## 729                  Yes                No              5              6
## 731                  Yes                No              4              0
## 732                   No                No              4              0
## 733                   No                No              7             14
## 734                  Yes                No             12              0
## 735                   No                No              9              6
## 737                   No                No              4              0
## 738                  Yes               Yes              6              3
## 739                   No                No              7              0
## 741                   No                No              0              3
## 742                  Yes               Yes             11              4
## 743                   No                No             20              0
## 744                   No                No              1              1
## 745                  Yes               Yes              6              0
## 746                  Yes                No             15              6
## 747                   No                No              1             11
## 748                  Yes                No              0              9
## 749                   No                No             12              2
## 750                   No                No              1              0
## 751                   No                No              8              0
## 752                   No                No              4              0
## 753                   No                No              0              7
## 754                  Yes                No             14              0
## 755                   No                No              3              0
## 756                   No                No              1              0
## 757                   No                No              0              2
## 758                  Yes               Yes             10              0
## 759                   No               Yes              0              5
## 760                   No                No             14              0
## 761                  Yes                No              5              0
## 762                   No                No             13              3
## 763                  Yes                No             10              0
## 764                   No                No              5              5
## 765                   No                No              3              0
## 766                  Yes               Yes              8              0
## 767                  Yes               Yes             13              0
## 768                   No                No              5              5
## 769                  Yes                No              4              0
## 770                   No                No              7              0
## 771                   No                No              2              0
## 772                  Yes                No              5              0
## 773                   No                No             14              0
## 774                   No                No              4              0
## 775                   No                No             27              3
## 776                  Yes               Yes              0              3
## 777                   No                No            248              0
## 778                  Yes                No              6              0
## 779                   No                No              6              0
## 780                  Yes                No              6              0
## 781                   No                No             13              0
## 782                  Yes                No              7              4
## 783                   No               Yes              0              7
## 784                  Yes               Yes             15              0
## 785                  Yes                No              6              0
## 786                  Yes                No              5              0
## 787                  Yes                No              4              2
## 788                  Yes                No              6              6
## 789                   No                No              0              7
## 790                  Yes                No              7              4
## 791                   No                No             12              4
## 792                  Yes                No             13              0
## 793                   No                No             31              3
## 794                  Yes               Yes              7              0
## 795                  Yes                No              4              0
## 797                   No                No             12              2
## 798                   No               Yes              0             14
## 799                   No                No              0              7
## 800                   No                No             25              2
## 801                   No                No              6              0
## 802                   No                No             11              3
## 803                   No                No              0              7
## 804                   No                No             10              0
## 805                   No                No              9              0
## 806                   No                No             15              3
## 807                   No                No             75              0
## 808                  Yes               Yes              7              0
## 809                   No                No              0              7
## 810                   No               Yes              0              3
## 811                   No                No              9              0
## 812                   No                No              2              4
## 814                   No                No              0              5
## 815                   No                No              7              0
## 816                   No                No              3              0
## 817                  Yes               Yes              7              0
## 818                  Yes               Yes             12              0
## 820                  Yes               Yes              5              0
## 821                  Yes               Yes              6              0
## 822                   No                No              0              6
## 823                   No                No              6              6
## 824                   No                No              4              2
## 825                   No               Yes              0              7
## 826                  Yes               Yes              6              0
## 827                   No                No              5              0
## 828                  Yes               Yes             10              0
## 829                   No                No              8             10
## 831                   No                No             30              0
## 832                   No                No             15              4
## 833                   No                No              4              0
## 834                   No                No              5              2
## 835                  Yes                No              5              5
## 836                   No                No             14              0
## 837                  Yes                No              6              5
## 838                   No                No              5              5
## 839                   No                No              5              0
## 841                   No                No             90              0
## 842                   No                No              2              0
## 845                  Yes                No             17              4
## 846                   No                No              6              0
## 847                  Yes               Yes              5              0
## 848                   No                No              3              0
## 849                   No                No              0              2
## 850                   No                No             62              0
## 851                   No                No             10              0
## 852                  Yes                No             10              0
## 853                   No                No             60              2
## 854                   No                No              3              0
## 855                   No                No             19              0
## 856                   No                No             13              0
## 857                   No                No              4              0
## 858                  Yes                No              5              0
## 859                  Yes               Yes             13              0
## 860                   No                No             14              0
## 861                   No                No              8              0
## 862                   No                No             30              0
## 863                  Yes               Yes              6              0
## 864                  Yes                No              7              0
## 865                   No               Yes              0              7
## 866                   No                No              2              0
## 867                   No                No             24              0
## 868                   No               Yes              4              0
## 869                   No                No              2              0
## 870                   No               Yes              5             10
## 871                   No                No              8              3
## 872                  Yes               Yes             11              0
## 873                   No                No              0              4
## 874                   No                No             15              6
## 875                   No                No              6              0
## 876                   No                No              3              0
## 877                   No                No              1              0
## 878                   No                No             25              7
## 879                   No                No              0              7
## 880                  Yes               Yes              7              0
## 881                   No                No              0             25
## 882                   No                No             10              0
## 883                   No                No              2              0
## 885                   No                No              3              0
## 886                   No                No              9              6
## 887                   No                No              5              0
## 889                   No                No             14              0
## 890                  Yes                No             15              0
## 891                  Yes               Yes              6              0
## 892                   No                No              4              0
## 893                   No                No              2              0
## 894                   No                No             13              4
## 895                   No                No              3              0
## 896                  Yes                No              4              0
## 897                   No                No             10              4
## 898                   No                No             12              0
## 899                   No                No             86              0
## 900                   No                No              2              0
## 902                   No                No              3              0
## 903                   No                No              0             14
## 904                   No                No              0              7
## 905                   No                No              4              0
## 906                   No                No              0              8
## 907                  Yes                No             12              0
## 908                   No                No              3              0
## 909                   No                No              0             12
## 910                   No                No              5              0
## 911                   No                No              7              5
## 912                   No                No             36              4
## 913                  Yes               Yes              7              3
## 914                  Yes               Yes              7              3
## 915                   No                No             34              0
## 916                   No                No             35              5
## 917                   No                No              8              0
## 918                   No               Yes              5              0
## 919                   No                No              4              0
## 920                   No                No             42              0
## 921                   No               Yes              0              7
## 922                   No                No              7              0
## 923                  Yes                No              7              0
## 924                   No                No             10              3
## 925                   No                No              0             13
## 926                  Yes                No             20              0
## 927                  Yes                No              6              0
## 928                  Yes                No             10              6
## 929                   No                No             10              7
## 930                   No                No              2              0
## 931                  Yes                No             12              3
## 932                   No                No              5              0
## 933                   No                No              9              0
## 934                  Yes                No             17              0
## 935                   No                No              9              0
## 936                  Yes               Yes              4              0
## 937                   No                No              1              0
## 938                   No                No              1              6
## 939                   No                No              2              0
## 940                   No                No              7              1
## 941                   No               Yes              0              7
## 942                   No                No             30              0
## 943                   No                No              7              8
## 945                   No                No             10              0
## 946                   No                No             22              0
## 947                   No                No              0              3
## 948                  Yes                No             12              0
## 950                  Yes                No              0              7
## 951                  Yes                No              5              0
## 952                   No                No              8              0
## 953                  Yes                No              8              8
## 954                  Yes               Yes              8              5
## 955                   No                No              7              0
## 956                   No                No              2              0
## 957                   No                No             16              1
## 958                   No                No             10              0
## 959                  Yes               Yes             12              0
## 960                  Yes               Yes              2              8
## 961                  Yes                No             14              0
## 962                   No                No             14              0
## 963                   No                No              5              0
## 964                   No                No              7             13
## 965                   No                No              5              5
## 966                   No                No              4             10
## 967                   No                No             18              7
## 968                   No                No              1              0
## 969                   No                No              2              0
## 970                   No                No              0              7
## 971                  Yes                No              6              0
## 972                  Yes               Yes              6              9
## 973                   No                No             90              0
## 974                  Yes                No              3              0
## 975                  Yes                No             11              0
## 976                   No                No             12              0
## 977                   No                No              0              8
## 978                  Yes               Yes              5              0
## 979                   No                No             15              0
## 980                   No                No              0              5
## 981                   No                No              0              7
## 982                   No                No              7              3
## 983                   No                No              0              5
## 985                   No                No              3              0
## 986                   No                No              6             13
## 987                   No                No              1              3
## 989                   No                No              3              5
## 990                   No                No             12             15
## 991                   No                No             11              3
## 992                   No                No              1              0
## 993                   No                No             30              0
## 994                   No                No              5              0
## 995                   No                No              4              0
## 996                   No               Yes              7              7
## 997                   No                No              2              0
## 998                  Yes               Yes             38              2
## 999                   No                No             10              0
## 1000                  No                No              7              0
## 1001                 Yes               Yes             10              3
## 1002                 Yes               Yes              0              7
## 1003                  No                No             40              0
## 1004                  No                No              0             14
## 1005                 Yes               Yes             10              0
## 1006                  No                No             21              0
## 1007                  No                No              7              0
## 1008                  No                No              2              0
## 1009                  No                No              7             10
## 1010                 Yes                No              8              3
## 1011                 Yes                No              0              7
## 1012                  No                No              9              0
## 1013                  No               Yes              9              6
## 1014                 Yes               Yes             12              0
## 1016                  No                No              0              4
## 1017                  No                No              4              0
## 1018                 Yes                No              8              4
## 1019                  No                No             90              0
## 1020                  No                No              1              4
## 1021                  No                No             90              0
## 1022                 Yes               Yes             40              0
## 1023                 Yes                No              4              6
## 1024                 Yes               Yes              7              0
## 1026                  No                No              3              0
## 1027                  No                No              3              0
## 1028                 Yes               Yes              7              0
## 1029                 Yes               Yes              6              0
## 1030                  No                No             15              0
## 1032                  No                No              4              0
## 1033                  No                No              1              0
## 1034                  No                No              8              0
## 1035                  No                No              3              0
## 1036                  No                No              4              0
## 1037                  No               Yes              8             12
## 1038                  No               Yes              0             14
## 1040                  No                No              9              0
## 1041                  No                No              7              4
## 1042                 Yes                No              6              6
## 1043                 Yes                No              8              0
## 1044                  No                No             11              4
## 1045                  No                No             54              0
## 1046                  No                No              2             13
## 1047                 Yes                No             14              0
## 1048                 Yes                No             10              4
## 1049                  No                No              6              0
## 1050                  No                No             29              7
## 1051                 Yes               Yes              5              0
## 1052                  No                No              0              7
## 1054                 Yes               Yes              5              0
## 1055                  No                No              1              2
## 1056                  No                No              5              0
## 1057                  No                No              4              0
## 1058                 Yes                No              9              0
## 1059                  No                No             14              0
## 1060                  No                No             29              0
## 1061                  No                No              6              0
## 1062                  No                No              4              4
## 1063                  No                No              7              3
## 1065                  No                No              7              0
## 1066                  No                No              1              0
## 1067                  No                No             16              0
## 1068                 Yes                No              5              0
## 1069                  No                No              2              0
## 1070                  No                No              5              0
## 1071                  No                No              0              9
## 1072                  No                No              0             10
## 1073                  No                No              3              0
## 1074                 Yes                No             13              0
## 1075                 Yes               Yes              8              7
## 1076                  No                No              6              0
## 1077                 Yes                No              0              7
## 1078                  No                No             25              5
## 1079                 Yes                No             14              0
## 1080                  No                No             21              0
## 1081                 Yes               Yes             12              0
## 1082                 Yes                No              6              0
## 1083                  No               Yes              0              7
## 1084                  No               Yes              0              7
## 1085                  No                No              3              0
## 1087                 Yes               Yes              7              0
## 1088                 Yes                No              6              3
## 1091                  No               Yes              0              3
## 1092                  No                No             25              0
## 1093                  No                No             35              0
## 1094                 Yes                No             10              6
## 1095                 Yes                No             10              5
## 1096                  No                No              5              0
## 1098                  No                No              1              0
## 1099                 Yes               Yes              0              8
## 1100                 Yes                No             14              0
## 1101                 Yes                No             15              0
## 1102                  No                No              0             10
## 1103                  No                No             27              0
## 1104                  No                No              8              0
## 1105                  No                No             45              9
## 1106                 Yes                No              5              0
## 1108                  No                No              9              0
## 1109                  No                No              0              7
## 1110                  No                No              5              0
## 1111                  No                No              1              0
## 1112                 Yes               Yes              9              3
## 1113                 Yes                No             12              0
## 1114                  No                No              3              0
## 1115                  No                No              2              0
## 1116                  No                No             29              0
## 1117                 Yes                No              8              4
## 1118                 Yes                No              7              0
## 1120                  No                No              2              0
## 1121                 Yes                No             17              0
## 1122                  No                No              2              0
## 1123                  No               Yes              0              4
## 1124                  No                No             60              0
## 1125                  No                No              5              0
## 1126                 Yes               Yes             11              0
## 1127                  No                No              6              0
## 1128                  No                No              2              0
## 1129                  No                No              1              0
## 1130                  No                No              0              7
## 1131                  No                No              4              0
## 1132                  No                No             24              4
## 1133                  No                No             15              0
## 1134                  No                No              0              4
## 1135                 Yes                No              8              3
## 1136                  No                No              3              0
## 1137                  No                No              4              0
## 1138                 Yes               Yes              5              0
## 1139                 Yes               Yes              5              4
## 1140                  No                No             10              4
## 1141                 Yes                No             20              0
## 1142                 Yes                No              7              3
## 1143                 Yes                No              7              0
## 1144                 Yes                No             11              0
## 1146                 Yes               Yes             10              0
## 1147                  No                No              2              0
## 1148                 Yes                No              3              0
## 1149                  No                No             13              5
## 1150                  No                No             15              0
## 1151                 Yes               Yes             14              7
## 1152                  No                No             20              0
## 1153                 Yes                No              8              0
## 1154                  No                No              4              2
## 1155                  No                No              9              0
## 1156                 Yes                No             10              5
## 1157                  No                No              7              0
## 1158                 Yes                No              3              0
## 1159                  No                No              5              4
## 1160                  No                No              9              5
## 1161                  No                No              7              0
## 1162                  No                No              3              0
## 1163                  No                No              0              7
## 1164                  No                No             10              6
## 1165                 Yes               Yes             10              3
## 1166                  No                No              2              0
## 1167                  No                No              9              0
## 1168                  No                No             10              0
## 1169                 Yes                No              7              0
## 1170                  No                No             28              0
## 1172                  No                No              5              0
## 1173                  No                No              1              0
## 1175                 Yes                No              6              0
## 1177                  No                No             11              0
## 1178                  No                No              5              7
## 1179                 Yes                No             13              0
## 1180                  No                No              2              4
## 1181                 Yes               Yes             11              5
## 1182                  No                No              6              0
## 1184                  No                No              9              0
## 1185                  No                No              7              0
## 1186                  No                No             15              0
## 1187                  No                No              2              0
## 1189                 Yes               Yes             10              0
## 1190                 Yes               Yes             77              8
## 1191                 Yes               Yes             12              3
## 1192                 Yes                No              5              0
## 1193                  No                No             48              0
## 1194                  No                No             15              4
## 1196                 Yes               Yes              4              0
## 1197                  No                No              1             41
## 1198                  No                No              0              6
## 1199                 Yes               Yes              5              0
## 1200                 Yes                No              3              0
## 1201                  No                No              2              0
## 1202                  No                No              7              0
## 1203                 Yes               Yes              0              7
## 1204                  No                No              2              0
## 1205                  No                No              0             22
## 1206                  No                No              7              0
## 1207                  No                No              3              0
## 1208                  No                No              1             13
## 1209                  No                No              5              2
## 1210                 Yes               Yes             15              0
## 1211                 Yes                No             10              6
## 1212                  No               Yes              9              0
## 1213                  No                No             17              4
## 1214                  No                No             30              0
## 1215                 Yes               Yes             10              0
## 1216                  No                No             30              0
## 1217                  No                No              0              6
## 1218                  No                No              6              0
## 1221                  No                No              1              0
## 1223                 Yes               Yes              9              0
## 1224                  No                No              2              0
## 1225                 Yes               Yes              7              0
## 1227                  No                No              2              0
## 1228                  No                No              2              0
## 1229                 Yes               Yes             12              0
## 1230                 Yes                No             15              6
## 1231                 Yes                No             11              4
## 1232                  No                No              4              0
## 1233                  No                No              0              6
## 1234                  No                No              4              0
## 1235                  No                No              4              0
## 1236                 Yes                No              7              0
## 1237                  No                No             21              0
## 1238                  No                No              7              0
## 1239                 Yes                No              7              0
## 1240                  No                No              4              0
## 1241                 Yes               Yes              9              0
## 1242                  No                No              7              4
## 1243                  No                No             10              0
## 1244                 Yes                No             11              0
## 1246                  No                No              1              0
## 1247                  No                No              0              8
## 1248                  No                No              6              0
## 1249                 Yes                No              3              0
## 1250                  No                No              0             35
## 1251                  No                No              6              3
## 1252                  No                No              0             11
## 1253                  No               Yes              3              0
## 1254                 Yes                No              7              0
## 1255                  No                No              4              0
## 1256                  No                No              1              0
## 1257                 Yes                No              0              7
## 1259                 Yes                No              6              0
## 1260                  No                No              0             10
## 1261                  No                No             30              7
## 1262                 Yes                No              8              5
## 1263                 Yes               Yes              6              5
## 1264                 Yes                No              4              0
## 1265                  No                No             12              0
## 1266                  No                No              2              0
## 1267                  No                No              8              6
## 1268                 Yes               Yes             15              0
## 1269                 Yes               Yes             18              0
## 1270                  No                No              1              0
## 1271                 Yes                No              8              0
## 1272                 Yes                No             10              0
## 1273                 Yes                No             12              0
## 1275                  No                No             14              0
## 1276                 Yes               Yes              7              0
## 1277                  No                No              2              0
## 1278                  No                No             10              8
## 1279                  No                No              0              7
## 1280                  No                No             13              5
## 1281                  No                No             30              0
## 1282                 Yes                No              9              4
## 1283                  No                No              8              0
## 1284                 Yes                No              7              0
## 1285                 Yes                No              3              5
## 1286                  No                No             12              8
## 1287                 Yes                No              5              0
## 1288                  No                No              0              5
## 1289                 Yes                No             10              0
## 1290                 Yes                No              8              0
## 1291                  No                No              6              0
## 1292                 Yes                No              4              0
## 1293                 Yes                No              7              6
## 1294                 Yes                No              7              0
## 1295                 Yes                No              8              3
## 1296                 Yes               Yes             10              0
## 1298                  No                No             10              5
## 1299                  No               Yes              0              7
## 1300                  No                No              1              6
## 1301                  No                No              4              0
## 1302                 Yes                No              7              0
## 1303                  No                No             10              0
## 1304                  No                No              6              0
## 1305                 Yes                No             14              0
## 1306                  No                No              4              0
## 1307                  No                No              0              7
## 1308                 Yes                No             10              0
## 1309                 Yes                No              4              7
## 1310                  No                No             20              0
## 1311                  No                No              0              7
## 1312                  No                No              5              0
## 1313                 Yes               Yes              2              0
## 1314                  No                No              2              0
## 1315                 Yes                No              7              3
## 1316                  No                No             14              0
## 1317                  No                No              0              7
## 1318                  No                No              2              0
## 1319                  No                No             15              0
## 1320                  No                No              0             10
## 1321                  No                No              0              7
## 1322                  No                No              0              7
## 1323                 Yes               Yes              7              6
## 1324                  No                No             10              0
## 1326                 Yes                No              6              0
## 1327                 Yes                No             12              8
## 1328                  No                No              9              0
## 1330                  No                No              2              0
## 1331                 Yes                No              7              0
## 1332                 Yes                No             10              7
## 1333                 Yes                No             12              0
## 1334                  No                No              3              0
## 1335                  No                No              6              0
## 1336                 Yes                No             13              0
## 1337                  No                No             40              0
## 1338                  No                No              2              0
## 1339                  No                No              8              0
## 1340                  No                No              5              6
## 1341                  No                No              0              4
## 1342                  No                No             10              0
## 1343                  No                No              0              6
## 1345                  No                No              4              0
## 1346                 Yes                No             10              0
## 1347                  No                No              3              0
## 1348                  No                No              0              9
## 1349                  No                No              9              3
## 1350                 Yes               Yes              7              3
## 1351                 Yes                No             25              0
## 1352                  No                No              4              0
## 1354                  No                No             31              0
## 1355                 Yes                No             21              0
## 1356                  No                No              1              3
## 1357                  No                No              1              7
## 1358                 Yes                No              4              2
## 1359                 Yes                No             13              7
## 1360                  No                No              3              2
## 1361                  No                No              0              5
## 1362                  No                No              4              0
## 1363                 Yes                No             10              0
## 1364                 Yes                No              8              0
## 1365                  No                No              3              0
## 1366                  No                No              5              0
## 1367                 Yes               Yes             21              0
## 1368                  No                No              7              0
## 1369                 Yes                No              0             15
## 1370                  No               Yes              0              7
## 1371                  No                No              2              0
## 1372                 Yes                No              3              0
## 1373                 Yes               Yes              3              9
## 1374                  No                No              0             14
## 1375                  No                No              4              0
## 1376                 Yes               Yes              4              0
## 1377                  No                No              2              7
## 1379                  No                No              1              0
## 1380                  No                No              3              0
## 1381                 Yes                No              9              0
## 1382                 Yes                No              5              0
## 1383                  No                No             14              0
## 1385                  No                No             27              0
## 1386                  No                No              2              0
## 1387                  No                No              6              0
## 1388                 Yes               Yes             14              0
## 1389                  No                No              1              0
## 1390                  No                No              2              0
## 1391                 Yes                No             12              0
## 1392                 Yes                No              5              0
## 1393                  No                No              4              0
## 1394                  No                No              7              0
## 1395                 Yes                No             15              0
## 1396                  No                No              7              0
## 1397                  No               Yes              0              7
## 1398                 Yes               Yes             12              3
## 1400                 Yes                No              5              0
## 1401                 Yes               Yes             13              0
## 1402                  No                No              7              0
## 1403                 Yes                No              9             10
## 1404                  No                No              4              3
## 1405                  No                No              3              0
## 1406                  No                No             19              2
## 1407                 Yes               Yes              6              5
## 1408                  No                No              1              0
## 1409                  No                No              2              0
## 1410                  No                No              4              0
## 1411                  No                No              5              4
## 1412                  No                No             11              0
## 1413                  No                No              1              0
## 1414                  No                No              7              6
## 1415                  No                No              7              0
## 1416                  No                No              3              0
## 1417                 Yes                No              7              0
## 1418                  No                No              7              4
## 1420                 Yes                No              7              7
## 1421                 Yes                No             14              0
## 1422                  No                No             15              0
## 1423                  No                No              2              0
## 1424                  No                No              0              7
## 1425                  No                No              2              0
## 1426                 Yes                No              7              0
## 1428                  No                No             14              0
## 1429                  No                No              8              0
## 1430                  No                No             40              0
## 1431                  No                No             28              5
## 1432                 Yes               Yes             11              3
## 1433                 Yes               Yes              5              0
## 1434                  No                No             11              0
## 1435                  No                No              5              0
## 1436                  No                No              7              0
## 1437                  No                No             30              0
## 1438                  No                No              4              0
## 1439                  No                No              5              0
## 1441                  No                No             15              0
## 1442                  No                No              0              7
## 1443                  No                No              3              0
## 1444                  No                No              5             15
## 1445                 Yes               Yes              7              6
## 1446                  No                No             42              0
## 1447                 Yes                No              7              0
## 1448                  No                No              8              4
## 1449                 Yes                No              0              5
## 1450                 Yes                No             14              6
## 1451                  No                No              1              0
## 1452                 Yes               Yes              6              0
## 1453                  No                No             14              2
## 1454                  No                No              0             10
## 1455                  No                No              5              0
## 1456                 Yes               Yes              6              0
## 1457                  No                No              0              7
## 1458                  No                No             10             15
## 1459                 Yes                No             12              0
## 1460                  No                No             11              0
## 1461                  No                No             30              0
## 1462                  No                No             12              0
## 1463                  No                No              8              0
## 1464                  No                No              4              0
## 1465                 Yes               Yes              8              0
## 1466                 Yes                No             12              0
## 1467                  No                No              4              0
## 1468                 Yes                No              5              0
## 1469                  No                No              3              0
## 1470                  No                No              7              0
## 1471                  No                No              5              0
## 1472                 Yes                No              0             10
## 1473                 Yes                No              4              0
## 1474                 Yes                No             15              0
## 1475                 Yes                No             16              4
## 1476                  No               Yes              0              7
## 1478                  No                No              2              0
## 1479                  No                No              2              1
## 1480                 Yes                No              4              0
## 1481                  No                No             22              0
## 1482                  No                No              1              0
## 1483                 Yes                No             12              0
## 1484                 Yes                No              7              0
## 1485                  No                No              0             15
## 1486                  No                No             14              0
## 1487                 Yes                No              0              7
## 1488                  No                No              0              2
## 1490                  No                No             49              0
## 1491                  No                No              0             14
## 1492                 Yes               Yes             13              0
## 1493                 Yes                No             15              0
## 1495                  No                No              5              0
## 1496                  No                No            120              0
## 1497                  No                No              5              0
## 1498                  No                No              3              0
## 1499                  No                No              9              9
## 1500                 Yes               Yes              6              4
## 1501                  No                No              0              7
## 1502                 Yes                No              8              0
## 1503                  No                No             15              0
## 1504                  No                No              2              0
## 1505                 Yes               Yes             10              0
## 1506                  No                No              5              0
## 1507                  No               Yes             14              0
## 1508                  No                No              3              5
## 1509                 Yes               Yes              7              7
## 1511                 Yes               Yes             11              0
## 1512                 Yes               Yes              7              2
## 1513                  No                No              8              8
## 1514                  No                No             60              0
## 1515                  No                No              9              3
## 1516                  No                No              4              0
## 1517                  No                No             23              0
## 1518                 Yes               Yes              6              0
## 1519                 Yes                No              0              5
## 1520                  No                No              6              5
## 1521                  No                No              2              0
## 1522                  No                No              0              7
## 1523                 Yes                No              7              0
## 1524                  No                No             10              0
## 1525                 Yes               Yes              7              0
## 1526                  No                No              7              0
## 1527                 Yes                No              6              0
## 1528                  No                No              5              0
## 1529                  No                No              2              0
## 1530                 Yes                No              7              0
## 1531                  No                No             30              8
## 1532                  No                No              2              0
## 1533                  No                No              3              0
## 1534                  No                No              5              0
## 1536                  No                No             30              0
## 1537                  No                No              1              5
## 1538                  No                No              7              0
## 1539                 Yes               Yes             11              0
## 1540                 Yes               Yes              7              7
## 1541                  No                No              0              8
## 1542                 Yes               Yes              5              7
## 1543                 Yes                No              5              0
## 1544                  No                No              2              0
## 1545                  No               Yes             14              0
## 1546                  No                No             22              0
## 1547                  No                No              3              4
## 1548                  No                No             30              0
## 1549                  No                No             10              0
## 1550                 Yes                No              4              0
## 1551                 Yes                No             11              0
## 1552                  No                No              6              0
## 1553                 Yes               Yes              0              7
## 1554                  No                No              7              5
## 1555                  No                No              0              7
## 1556                  No                No             23              0
## 1557                  No                No             12              0
## 1558                 Yes                No              4              4
## 1559                  No                No              6             10
## 1560                 Yes               Yes              5              0
## 1561                 Yes               Yes              6              0
## 1562                 Yes                No              6              0
## 1564                  No                No             20              0
## 1565                  No                No             14              0
## 1566                 Yes                No              5              0
## 1567                  No                No              1              0
## 1568                 Yes                No              5              0
## 1569                  No                No              6              0
## 1570                  No                No              3              0
## 1571                 Yes                No             13              0
## 1574                 Yes                No              6              0
## 1575                 Yes                No              8              3
## 1576                 Yes                No              8              0
## 1578                 Yes                No             10              0
## 1579                 Yes                No             13              0
## 1580                 Yes               Yes              3             11
## 1581                  No                No              0              7
## 1582                  No                No              3              0
## 1584                  No                No              1              0
## 1585                 Yes                No              8              0
## 1586                  No                No              0             14
## 1587                  No                No             10              5
## 1588                  No                No              2              0
## 1589                  No                No              7              7
## 1590                  No                No              7              0
## 1591                  No                No              7              0
## 1592                  No                No             13              2
## 1593                  No                No             23              0
## 1594                  No                No             14              0
## 1595                  No                No              6              0
## 1596                  No                No              0              7
## 1597                  No                No              3              0
## 1598                  No                No              2              0
## 1600                  No               Yes              0             12
## 1601                 Yes                No              4              0
## 1602                 Yes                No             15              0
## 1603                  No                No              6              0
## 1604                  No                No              2              0
## 1605                 Yes               Yes             11              0
## 1606                 Yes                No              8              6
## 1607                 Yes                No              5              0
## 1608                  No                No             28             12
## 1609                  No                No              0              3
## 1610                 Yes               Yes              7              5
## 1611                  No                No              0              6
## 1612                 Yes                No             12             12
## 1613                 Yes                No             12              0
## 1614                  No                No             15              0
## 1615                  No                No              2              0
## 1616                  No                No              5              0
## 1617                  No                No              0              7
## 1618                  No                No              6              0
## 1619                  No                No              2              3
## 1620                  No                No              3              0
## 1621                  No                No              7              4
## 1622                  No                No              1              0
## 1624                  No                No            300              0
## 1625                  No                No              8              0
## 1626                 Yes                No             12              0
## 1627                  No                No              5              0
## 1629                  No                No              4              0
## 1630                  No                No             17              0
## 1631                  No                No             22              0
## 1633                  No                No              2              0
## 1634                  No                No             43              0
## 1635                  No                No              6              4
## 1636                 Yes                No              6              1
## 1637                  No                No             11              0
## 1638                  No                No              0              7
## 1640                 Yes                No             10              0
## 1641                 Yes               Yes              3              0
## 1642                  No                No             10              0
## 1643                 Yes                No              0              7
## 1644                  No                No              2              0
## 1645                  No                No              0              7
## 1646                  No                No              1              0
## 1647                  No                No             39              0
## 1648                 Yes                No             19              0
## 1649                 Yes               Yes              6              0
## 1651                  No                No              4              0
## 1652                 Yes                No              0              3
## 1653                 Yes                No             14              0
## 1654                  No                No              1              0
## 1655                  No                No              7              7
## 1656                 Yes               Yes              7              4
## 1657                  No                No              0             12
## 1658                  No                No              4              3
## 1659                  No                No             18              0
## 1662                  No                No              5              0
## 1663                  No                No              7              4
## 1664                  No                No              3              0
## 1665                 Yes                No              8              3
## 1666                  No                No              8              0
## 1667                 Yes               Yes              9              0
## 1669                  No                No              4              7
## 1670                  No                No             54              6
## 1671                  No                No              2              0
## 1672                  No                No              0             15
## 1673                 Yes                No              8              0
## 1674                 Yes                No             15              0
## 1675                 Yes               Yes             11              7
## 1676                 Yes               Yes              6              3
## 1677                  No                No              2              0
## 1678                  No                No              1              0
## 1679                  No                No              2              0
## 1680                  No               Yes              0              7
## 1681                 Yes               Yes              4              0
## 1682                  No                No              2              0
## 1683                  No                No              2              0
## 1684                 Yes               Yes              6              0
## 1685                  No                No              6              0
## 1687                  No                No              9              4
## 1688                  No                No              3              0
## 1689                  No                No            120              0
## 1690                  No                No             21              0
## 1691                  No                No              4              0
## 1692                 Yes               Yes              0              7
## 1693                  No                No              6              0
## 1694                  No                No              6              0
## 1695                  No                No              4              0
## 1696                  No                No              5              0
## 1697                  No                No              5              0
## 1698                 Yes                No              7              0
## 1699                  No                No              9              0
## 1700                  No                No              0              6
## 1701                  No                No              9              0
## 1702                 Yes                No             14              0
## 1703                 Yes                No             14              7
## 1704                  No                No              4              0
## 1705                 Yes                No             12              2
## 1706                  No               Yes              0              7
## 1707                 Yes                No              3              0
## 1708                  No                No              0              5
## 1709                  No               Yes              0             10
## 1710                  No                No             30             30
## 1711                 Yes                No             10              3
## 1712                  No                No             19              0
## 1713                  No                No              7              0
## 1714                  No                No              4              0
## 1715                  No                No             83              7
## 1716                  No                No              2              0
## 1717                 Yes                No              2              0
## 1718                  No                No              7              0
## 1719                 Yes               Yes              4              2
## 1720                  No                No              3              0
## 1721                  No                No              5              0
## 1723                  No                No              3              0
## 1724                  No                No              5              5
## 1725                  No                No              5              0
## 1726                 Yes                No              5              0
## 1727                  No                No             18              0
## 1728                  No                No              2              6
## 1729                 Yes                No              3              0
## 1730                  No                No              3              0
## 1731                  No                No              6              0
## 1732                  No                No              3              0
## 1733                  No                No              4              0
## 1734                  No                No              6              0
## 1735                 Yes                No              9              0
## 1736                  No               Yes              0              7
## 1737                  No                No              8              0
## 1738                  No                No              8              0
## 1739                  No                No              8              0
## 1740                  No                No              4              0
## 1741                  No                No              6              0
## 1742                  No                No             21              0
## 1743                  No                No             12              3
## 1744                  No                No              2              0
## 1745                  No                No              2              6
## 1746                  No                No             12              0
## 1747                 Yes               Yes              4              0
## 1748                  No                No              5              0
## 1749                 Yes                No              5              0
## 1750                  No                No             12             10
## 1751                  No                No              1              0
## 1752                  No                No              5              0
## 1753                  No               Yes              0              8
## 1754                  No                No             12              0
## 1756                 Yes                No              6              4
## 1757                  No                No              3              0
## 1758                  No                No             15              4
## 1759                  No                No             16              0
## 1760                  No                No             10              0
## 1761                  No                No              2              6
## 1762                 Yes               Yes              7              7
## 1763                  No                No              1              0
## 1764                  No                No              7              0
## 1765                  No                No              8              0
## 1766                  No                No             15              0
## 1768                  No                No              2              0
## 1769                  No               Yes              0              3
## 1770                 Yes                No             13              4
## 1771                  No                No             15              0
## 1772                 Yes                No              6              0
## 1773                 Yes                No              4              0
## 1774                 Yes               Yes              7              4
## 1775                 Yes                No             14              0
## 1776                  No                No             26              7
## 1777                  No                No              2              8
## 1778                  No                No             19              4
## 1779                 Yes                No              5              0
## 1780                 Yes                No              8              0
## 1781                  No                No             30              0
## 1782                 Yes                No              0              9
## 1783                  No                No              3              0
## 1784                 Yes                No              7              0
## 1785                  No                No              1              0
## 1786                  No                No             12              0
## 1787                  No                No              0              7
## 1788                 Yes               Yes              4              0
## 1789                 Yes               Yes              0              7
## 1790                  No                No              2              0
## 1791                  No                No              0             11
## 1792                  No                No              9              0
## 1793                 Yes               Yes              5              5
## 1794                  No                No              2              0
## 1795                  No                No              6             15
## 1796                  No                No             15              0
## 1797                 Yes                No             12              0
## 1798                 Yes                No             11              0
## 1799                 Yes               Yes              5              4
## 1801                  No                No              0              7
## 1802                  No                No              7              0
## 1803                  No                No             14              0
## 1804                 Yes                No              6              0
## 1805                 Yes               Yes              9              4
## 1806                  No                No             21              0
## 1808                 Yes                No             11              5
## 1809                 Yes               Yes             16              0
## 1810                 Yes                No             12              0
## 1811                  No                No              3              4
## 1812                  No                No             20              0
## 1813                 Yes                No              9              0
## 1814                  No                No             10              0
## 1815                  No                No             90              0
## 1816                  No                No             20              6
## 1817                  No                No              4              0
## 1818                  No                No             14              0
## 1819                 Yes                No              6              0
## 1820                 Yes                No             13              0
## 1821                  No                No              3              0
## 1822                  No                No              7              0
## 1823                  No                No              5              0
## 1824                  No                No              2              0
## 1825                  No                No              0              7
## 1826                  No                No              7              0
## 1827                  No                No              5              0
## 1828                  No                No              7              3
## 1830                  No               Yes              0              9
## 1831                 Yes               Yes              6              0
## 1832                  No                No             14              0
## 1833                 Yes               Yes              7              0
## 1834                  No                No              7              0
## 1835                 Yes               Yes              5              0
## 1836                  No                No              7              1
## 1837                 Yes               Yes              0              3
## 1838                 Yes                No             12              5
## 1839                 Yes               Yes              7              0
## 1840                  No                No              1              4
## 1841                 Yes                No             10              0
## 1842                  No               Yes              0             11
## 1843                  No                No              0             30
## 1844                  No                No              1             14
## 1845                  No                No              3              0
## 1846                 Yes                No              0              7
## 1847                  No                No              5              0
## 1848                  No                No              7              0
## 1849                 Yes               Yes              4              4
## 1850                  No                No             42              0
## 1851                 Yes                No              8              0
## 1852                  No                No             21              0
## 1853                  No                No              7              0
## 1854                 Yes                No             13              0
## 1855                  No               Yes              6              0
## 1856                 Yes               Yes             10              0
## 1857                  No                No              0              9
## 1858                  No                No             15              2
## 1859                  No                No              9              0
## 1860                 Yes                No              0              7
## 1861                  No                No              7              0
## 1862                  No                No              9              0
## 1863                  No                No              5              4
## 1864                 Yes                No             12              0
## 1865                  No                No              2              0
## 1866                 Yes               Yes            181              0
## 1867                  No                No             15              5
## 1868                  No                No             21              0
## 1870                  No                No             14              0
## 1871                  No                No             60              0
## 1872                  No                No             30              0
## 1873                 Yes                No              7              1
## 1874                  No                No             15              4
## 1875                  No                No              1              0
## 1876                  No                No              6              0
## 1877                 Yes                No              8              7
## 1878                 Yes               Yes              5              0
## 1879                  No                No              4              0
## 1880                 Yes                No              7              0
## 1881                  No                No              5              0
## 1882                  No                No              3              0
## 1883                 Yes                No              4              0
## 1884                 Yes                No              3              0
## 1885                  No                No              9              0
## 1886                  No                No              3              0
## 1887                  No                No              8              0
## 1888                  No                No              0              7
## 1889                 Yes               Yes             10              0
## 1890                  No                No              2              4
## 1891                  No                No             58              0
## 1892                  No                No              4              0
## 1893                  No                No             19              0
## 1894                  No                No              0              7
## 1895                  No                No             10              4
## 1896                  No                No              1              0
## 1897                  No                No             14              0
## 1898                  No                No              5              0
## 1899                  No                No             11              6
## 1900                  No                No             10              0
## 1901                  No                No              9              3
## 1902                  No               Yes              0              7
## 1903                  No                No              5             11
## 1904                  No                No              0              1
## 1905                  No                No             90              0
## 1906                  No                No              6              0
## 1907                  No                No              7              0
## 1908                  No                No             11              0
## 1909                  No                No             29              0
## 1912                  No                No              4              0
## 1913                  No                No              2              0
## 1914                  No                No              2              0
## 1915                 Yes                No              9              3
## 1916                  No                No             68              0
## 1917                 Yes                No             10              4
## 1918                 Yes                No              7              7
## 1919                 Yes               Yes              8              5
## 1920                 Yes                No              4              0
## 1921                  No                No              7              0
## 1922                 Yes                No              8              0
## 1923                  No                No             60              0
## 1924                  No                No              8              3
## 1925                  No                No              0              7
## 1926                  No                No              1              7
## 1927                 Yes                No              0              9
## 1928                  No                No              0              7
## 1929                  No                No             10              0
## 1931                 Yes               Yes              5              0
## 1932                 Yes               Yes             10              0
## 1933                  No                No              5              0
## 1934                  No               Yes              7              5
## 1935                  No                No              2              0
## 1936                 Yes               Yes              0              7
## 1937                  No                No             12              0
## 1938                  No                No              1              0
## 1939                  No                No              7              0
## 1940                  No                No              1              4
## 1941                 Yes                No              9              5
## 1942                  No                No              4              0
## 1943                 Yes                No              8              0
## 1945                 Yes               Yes              0             12
## 1946                  No               Yes              0              7
## 1947                  No                No              0              7
## 1948                  No               Yes              3              4
## 1949                 Yes               Yes              7              0
## 1950                  No                No              0              3
## 1951                  No                No             15              6
## 1952                 Yes               Yes              6              0
## 1953                  No                No             28              0
## 1954                 Yes                No              7              5
## 1955                  No                No             30              2
## 1956                  No                No             11              5
## 1957                  No                No              2              0
## 1958                  No                No              0              7
## 1959                  No                No              3              0
## 1960                  No                No             14             10
## 1961                  No                No              0              2
## 1962                  No                No             28              3
## 1963                 Yes               Yes              0              7
## 1964                 Yes                No              0              7
## 1965                  No               Yes             10              8
## 1966                 Yes               Yes             10              0
## 1967                  No                No             21              0
## 1968                 Yes                No              7              5
## 1969                  No                No             12              0
## 1970                  No                No              5              0
## 1972                  No                No              0              5
## 1973                  No                No             14              0
## 1974                 Yes                No              4              0
## 1975                  No                No              0              1
## 1976                  No               Yes              0              7
## 1977                  No                No              2              0
## 1978                  No                No              8              0
## 1979                  No                No             20              0
## 1980                  No                No              5              0
## 1981                  No                No             35              5
## 1982                 Yes                No             10              0
## 1983                 Yes                No              3              4
## 1984                  No                No              6              0
## 1985                 Yes               Yes              9              0
## 1986                  No                No              2              0
## 1987                  No                No              3              0
## 1988                  No                No             21              0
## 1990                  No                No              6              0
## 1992                  No                No              6              0
## 1993                  No                No             15              0
## 1994                 Yes               Yes              0              7
## 1995                 Yes               Yes              5              0
## 1996                  No                No              2              0
## 1998                 Yes                No              7              7
## 1999                  No                No              3              0
## 2000                  No                No              7              3
## 2001                 Yes                No             12              0
## 2002                  No                No              7              0
## 2003                  No                No             14              0
## 2004                  No                No             14              0
## 2005                 Yes                No              5              0
## 2006                  No               Yes             10              3
## 2007                  No                No              4              0
## 2008                  No                No              7              0
## 2009                 Yes                No             10              4
## 2010                  No                No             13              0
## 2011                  No                No              6              5
## 2014                 Yes                No              6              3
## 2015                  No                No              0              7
## 2016                 Yes               Yes              0              7
## 2018                  No                No             10              0
## 2019                  No                No              3              6
## 2020                  No                No              3              0
## 2021                 Yes                No              9              0
## 2022                  No                No             10              0
## 2023                  No                No              2              6
## 2024                  No                No              7              0
## 2025                 Yes                No              3              0
## 2026                  No                No              6              0
## 2027                  No                No              3              2
## 2028                  No                No             88              0
## 2029                  No                No             60              0
## 2030                 Yes               Yes              3              0
## 2031                 Yes                No             15              3
## 2032                  No                No             10              6
## 2033                 Yes               Yes              9              7
## 2034                  No                No             23              0
## 2036                  No                No              5              0
## 2037                  No                No             45              0
## 2038                  No                No              6              0
## 2039                  No                No             10              0
## 2040                  No                No              1              4
## 2041                  No                No              0              7
## 2042                  No                No              8              0
## 2043                  No                No              6              0
## 2044                  No                No             15              7
## 2045                  No                No              7              0
## 2046                  No                No              4              3
## 2048                  No                No              8              0
## 2049                  No                No              2              0
## 2050                 Yes                No              6              0
## 2052                  No                No              4              0
## 2053                  No                No             13              0
## 2054                  No                No              0             13
## 2055                  No                No             15              0
## 2057                 Yes               Yes             13              0
## 2058                  No                No              1              0
## 2059                  No                No              1              0
## 2060                  No                No              1              7
## 2061                  No                No             14              0
## 2062                  No                No              0              7
## 2063                  No                No             14              7
## 2064                 Yes               Yes              4              0
## 2065                 Yes                No              9              0
## 2066                  No                No              7              0
## 2067                  No                No             48              0
## 2069                  No                No             10              0
## 2070                  No               Yes              0             14
## 2071                 Yes                No             10              0
## 2072                  No                No              0              5
## 2074                 Yes               Yes             10              0
## 2075                  No                No              4              0
## 2076                  No                No              2              0
## 2077                 Yes                No              5              0
## 2078                  No                No              5              0
## 2079                  No                No              8              0
## 2080                  No                No              7              0
## 2081                  No                No              8              0
## 2082                  No                No              3              0
## 2083                 Yes                No              4              4
## 2084                  No                No             10              0
## 2085                 Yes               Yes              7              0
## 2086                 Yes               Yes              5              0
## 2087                  No                No             12              0
## 2088                  No                No              4              0
## 2089                 Yes                No              6              4
## 2090                  No                No             21              0
## 2091                  No                No              2              0
## 2092                  No                No              6              0
## 2093                  No                No              7             14
## 2094                 Yes                No              3              0
## 2095                  No               Yes              0              5
## 2096                  No                No             13              3
## 2097                  No                No              0              7
## 2098                  No                No              8              0
## 2099                  No                No              2              0
## 2100                  No                No              5              0
## 2101                  No                No             14              0
## 2102                  No                No              9              0
## 2103                 Yes               Yes              5              0
## 2104                  No                No             14              0
## 2105                 Yes               Yes              7              0
## 2107                 Yes                No              6              6
## 2108                  No                No              7              0
## 2110                  No               Yes              0              7
## 2111                 Yes               Yes             10              0
## 2112                  No                No              3              0
## 2113                 Yes               Yes             10              0
## 2114                  No                No              4              0
## 2116                  No                No              3              0
## 2117                  No                No              4              0
## 2118                  No                No              2              4
## 2119                  No                No              9              0
## 2120                 Yes               Yes              0             14
## 2121                  No                No             21              0
## 2122                  No                No             10              5
## 2123                  No                No              2              0
## 2124                  No                No              5              0
## 2125                  No                No             11              4
## 2126                 Yes               Yes              7              0
## 2127                 Yes               Yes              8              4
## 2128                  No                No              7              4
## 2129                  No                No              4             16
## 2130                 Yes               Yes             16              0
## 2131                  No                No             15              0
## 2132                  No                No             17              7
## 2133                  No               Yes              0              7
## 2134                 Yes                No             20              0
## 2135                 Yes                No              5              0
## 2136                  No                No              5              0
## 2137                  No                No              1              6
## 2138                 Yes                No              6              6
## 2139                 Yes               Yes              7              7
## 2140                  No                No              0              7
## 2141                  No                No             30              0
## 2143                 Yes                No              4              0
## 2144                 Yes               Yes              0              7
## 2145                  No                No             23              0
## 2146                  No                No             13              0
## 2147                  No                No              7              0
## 2148                  No                No              0             90
## 2149                  No                No              0              7
## 2150                  No                No              0              4
## 2151                  No                No              4              0
## 2152                  No                No              9              0
## 2153                 Yes               Yes              2              0
## 2154                  No                No              0              7
## 2155                  No                No              3              0
## 2156                  No                No              4              0
## 2157                 Yes                No              5              0
## 2158                  No                No            288              0
## 2159                  No                No             45              0
## 2160                  No                No              7              0
## 2161                  No                No              5              0
## 2162                  No                No              1              0
## 2163                 Yes                No              9              5
## 2164                 Yes                No              9              0
## 2165                  No                No              3              4
## 2166                 Yes                No              4              0
## 2167                 Yes                No              7              5
## 2168                 Yes               Yes             12              0
## 2169                  No                No              7              0
## 2170                  No                No             11              0
## 2171                  No                No              0             14
## 2172                  No                No              3              0
## 2173                 Yes                No              7              3
## 2174                 Yes                No              5              5
## 2175                 Yes               Yes              8              0
## 2176                  No                No             12              0
## 2177                 Yes                No              5              4
## 2178                 Yes                No              4              3
## 2179                  No                No              3              0
## 2180                  No                No             11              0
## 2181                  No                No             16              0
## 2182                  No               Yes             13              0
## 2183                  No                No              6              0
## 2184                  No                No              2              0
## 2185                 Yes                No             11              0
## 2186                  No                No              2              3
## 2187                  No                No              8              0
## 2188                  No                No              2              1
## 2189                 Yes                No             10              0
## 2191                  No                No              4              0
## 2192                 Yes                No             13              3
## 2193                  No                No              4              0
## 2194                  No                No              0              7
## 2195                  No                No              2              0
## 2196                  No                No             21              0
## 2197                  No                No              4              0
## 2198                  No                No             16              0
## 2199                 Yes               Yes             15              5
## 2200                 Yes                No             16              0
## 2201                  No                No              0             22
## 2202                  No                No              4              0
## 2203                  No                No              9              4
## 2204                 Yes                No              6              3
## 2205                 Yes                No              7              0
## 2206                 Yes               Yes              0              5
## 2207                  No                No             15              2
## 2208                 Yes               Yes              3              0
## 2209                  No                No              0             13
## 2210                  No               Yes              0              8
## 2211                  No                No             10              0
## 2212                  No                No              4              0
## 2213                  No                No             25              0
## 2214                  No                No              6              0
## 2215                 Yes               Yes              0              7
## 2216                  No                No              3              0
## 2217                  No                No              5              0
## 2218                 Yes               Yes              4              4
## 2219                  No                No              7              0
## 2220                  No                No             16             10
## 2222                  No                No              2              0
## 2223                  No                No              3              0
## 2224                  No                No              0              4
## 2225                  No                No             10              0
## 2227                 Yes                No              4              0
## 2229                 Yes                No              0             14
## 2230                 Yes               Yes             13              0
## 2231                  No                No             22              0
## 2232                  No                No              2              0
## 2233                 Yes                No              6              4
## 2234                 Yes               Yes             15              0
## 2235                 Yes                No              5              6
## 2236                 Yes                No              6              8
## 2237                  No                No             12              3
## 2238                 Yes               Yes              8              0
## 2239                  No                No             50              0
## 2241                  No                No              7              0
## 2242                  No                No             15              0
## 2243                  No                No              6              0
## 2244                  No                No             28              0
## 2245                 Yes               Yes              0             11
## 2246                  No                No              5              0
## 2247                  No                No             23              0
## 2248                  No                No              1              0
## 2249                  No                No              4              0
## 2250                  No                No              8              3
## 2251                  No                No              4              0
## 2252                  No                No              8              0
## 2254                  No                No              4              3
## 2255                  No                No             11              6
## 2256                  No                No             14              0
## 2257                  No                No             10              0
## 2258                 Yes                No             10              0
## 2260                  No                No              2              0
## 2261                  No                No              7              0
## 2263                  No                No              0             10
## 2264                 Yes                No              7              0
## 2265                 Yes                No              7              2
## 2266                  No                No              5              0
## 2267                  No                No              2              0
## 2268                 Yes               Yes              6              6
## 2269                  No                No             11              0
## 2270                  No                No              6              0
## 2271                  No               Yes              6              0
## 2272                  No                No              6              0
## 2273                 Yes               Yes             12              0
## 2275                  No                No             21              0
## 2276                  No                No             13              2
## 2277                  No                No              0              7
## 2278                 Yes                No             15              0
## 2279                  No                No             18              0
## 2280                  No                No             30              0
## 2281                  No                No              3              0
## 2282                  No                No              2              0
## 2283                  No                No              2              0
## 2284                  No                No              5              0
## 2285                  No                No             12              2
## 2286                  No                No              5              0
## 2287                 Yes               Yes              8              0
## 2288                  No                No             10              0
## 2289                  No                No              7             10
## 2290                 Yes                No             12              0
## 2291                  No                No             10              0
## 2292                  No               Yes              0              7
## 2293                  No                No              1              0
## 2294                  No               Yes              0              7
## 2295                  No                No              3              0
## 2296                  No                No              1              0
## 2297                 Yes                No              5              6
## 2298                  No                No              2              0
## 2299                 Yes               Yes              0              4
## 2300                  No                No              1              2
## 2301                  No                No              6              0
## 2302                  No                No             12              0
## 2303                  No                No              1              0
## 2304                  No                No              5              0
## 2305                  No                No              2              4
## 2306                 Yes                No              7              3
## 2307                 Yes               Yes              9              0
## 2308                  No                No             14              0
## 2309                  No                No             21              0
## 2310                  No                No              1              0
## 2311                  No               Yes              0              7
## 2312                 Yes               Yes              0              4
## 2313                 Yes                No              8              0
## 2315                 Yes                No             10              0
## 2316                 Yes               Yes             21              0
## 2317                  No                No             16              0
## 2318                  No                No              3             10
## 2319                  No                No              5              0
## 2320                  No               Yes              0              7
## 2321                  No                No              4              0
## 2322                 Yes                No              6              5
## 2323                 Yes               Yes              7              3
## 2324                 Yes                No             14              0
## 2325                 Yes                No             13              3
## 2326                  No                No              7             12
## 2327                  No                No              0              4
## 2328                  No                No             21              0
## 2329                 Yes                No              9              0
## 2330                  No                No              0             10
## 2331                 Yes                No              4              0
## 2332                  No                No              4              0
## 2333                  No                No              3              0
## 2334                  No                No             10              0
## 2335                 Yes               Yes              5             10
## 2336                 Yes                No             12              4
## 2337                  No               Yes              0              7
## 2338                  No                No              3              5
## 2339                  No                No              0              4
## 2341                  No                No              2              0
## 2342                 Yes               Yes             12              0
## 2343                 Yes               Yes             10              5
## 2344                 Yes                No              8              0
## 2345                  No                No             10              4
## 2347                  No                No              0              4
## 2348                 Yes               Yes             16              0
## 2349                  No                No              1              0
## 2350                 Yes               Yes             12              0
## 2351                  No                No              0              5
## 2352                  No                No             12              7
## 2353                  No                No              2              0
## 2354                 Yes               Yes              7              7
## 2355                  No                No              2              0
## 2356                  No                No              4              0
## 2357                  No                No              7              0
## 2358                  No                No              3              0
## 2359                  No                No             25              0
## 2360                  No                No             15              2
## 2361                 Yes               Yes              9              3
## 2362                 Yes                No             12              0
## 2363                  No                No              2              0
## 2364                  No                No              8              2
## 2365                  No                No              3              0
## 2366                  No                No             15              0
## 2367                  No                No             25             15
## 2368                  No                No             17              0
## 2369                 Yes                No             13              0
## 2370                  No                No              6              0
## 2371                 Yes                No              6              0
## 2372                  No                No              0              8
## 2373                  No                No             11              8
## 2375                  No                No              2              0
## 2376                 Yes               Yes             13              0
## 2377                  No                No              3              0
## 2378                  No                No              7              0
## 2379                 Yes                No              4              0
## 2380                  No                No              5              0
## 2381                  No                No              5              0
## 2383                  No               Yes             30              0
## 2384                  No                No              3              0
## 2385                  No                No              2              4
## 2386                  No                No              2              0
## 2387                  No                No             10              0
## 2388                 Yes                No              7              6
## 2389                  No                No              7              7
## 2390                  No                No              2              0
## 2391                  No                No              2              0
## 2392                 Yes                No              0              5
## 2394                 Yes                No             10              0
## 2395                  No                No              2              0
## 2396                 Yes                No             18              0
## 2398                 Yes               Yes             10              0
## 2400                  No                No              5              0
## 2401                  No                No             24              0
## 2402                  No                No              3              0
## 2403                 Yes               Yes              5              5
## 2404                  No                No              0              7
## 2405                 Yes                No             10              4
## 2406                 Yes                No              8              0
## 2407                  No                No             16              0
## 2408                  No                No             37              0
## 2409                  No               Yes              5              0
## 2410                 Yes                No              7              0
## 2411                 Yes                No              7              7
## 2412                  No                No              2              0
## 2413                  No                No              8              4
## 2414                  No                No              0             14
## 2415                 Yes                No              4              0
## 2416                 Yes                No              7              6
## 2417                  No                No             23              0
## 2418                 Yes                No              8              0
## 2419                 Yes                No              5              2
## 2420                  No                No              3              0
## 2421                 Yes                No             12              0
## 2422                  No                No              4              0
## 2423                  No                No             12              4
## 2424                  No               Yes              8              6
## 2425                  No                No             10              0
## 2427                  No                No              3              0
## 2428                 Yes               Yes              8              0
## 2429                  No                No              3              9
## 2430                  No                No              4              0
## 2431                  No                No              0              9
## 2432                  No               Yes              0              9
## 2433                 Yes                No              9              0
## 2434                 Yes                No              5              8
## 2435                  No                No              9              0
## 2436                  No                No              0             10
## 2437                 Yes                No              5              5
## 2438                  No                No              7              0
## 2439                  No                No             30              0
## 2440                 Yes                No              4              0
## 2441                  No                No             30              0
## 2442                  No                No              2              0
## 2443                 Yes                No             10              4
## 2444                  No                No             14              0
## 2445                  No                No              1              0
## 2446                 Yes                No              5              3
## 2447                  No                No             16              0
## 2448                  No                No             20              5
## 2449                  No                No              6              0
## 2450                  No                No              7              6
## 2451                  No                No             11              2
## 2453                  No               Yes              0             14
## 2454                  No                No             10              4
## 2455                  No                No             90              5
## 2456                 Yes                No              8              2
## 2457                  No                No              2              0
## 2458                 Yes               Yes             12              0
## 2459                  No                No              3              0
## 2460                  No                No              5              0
## 2461                  No                No              2              0
## 2463                 Yes               Yes              6              0
## 2464                  No                No              0              6
## 2465                 Yes                No              7              7
## 2466                  No                No             13              0
## 2467                 Yes                No              6              0
## 2468                  No                No              0             14
## 2470                 Yes               Yes             16              0
## 2471                  No                No              7              0
## 2473                  No                No             12              0
## 2474                  No                No             10              0
## 2475                 Yes                No             12              0
## 2476                 Yes               Yes             10              0
## 2477                  No                No             30              0
## 2478                  No                No              4              1
## 2479                  No                No              8              8
## 2480                  No                No              0             17
## 2483                  No                No              6              0
## 2484                 Yes                No              9              6
## 2485                  No                No             10              8
## 2486                  No                No              2              0
## 2487                  No                No              4              0
## 2488                 Yes                No              4              0
## 2489                  No                No              5              0
## 2490                  No                No             13              3
## 2491                  No                No             23              0
## 2492                  No                No              0              7
## 2493                 Yes               Yes              6              5
## 2495                  No                No             14              7
## 2496                  No                No              3              0
## 2497                  No               Yes              0              9
## 2498                 Yes                No              7              0
## 2499                 Yes                No             10              3
## 2500                  No                No              1              0
## 2501                  No                No              0              7
## 2502                 Yes                No              7              6
## 2503                  No                No             14              0
## 2504                  No                No              0              3
## 2505                  No                No             10              0
## 2506                  No                No             24              7
## 2507                  No                No              7              0
## 2508                 Yes               Yes              0              4
## 2509                  No                No              5              0
## 2510                  No                No             10              5
## 2511                  No                No              3              0
## 2512                  No                No             30              0
## 2513                 Yes               Yes              4              5
## 2514                  No               Yes              0              7
## 2515                 Yes                No             16              5
## 2518                 Yes                No              8              4
## 2519                 Yes                No              7              3
## 2520                  No                No              8              0
## 2521                 Yes                No              6              0
## 2522                  No                No             15              0
## 2523                  No                No             12              0
## 2524                 Yes               Yes              7              7
## 2525                 Yes                No             16              5
## 2526                  No                No              3              0
## 2527                 Yes               Yes             11              5
## 2528                 Yes                No              9              4
## 2529                 Yes                No             10              4
## 2531                  No                No              4              0
## 2532                  No                No              0              7
## 2534                  No                No              4              0
## 2535                  No                No              3             11
## 2536                 Yes                No              4              0
## 2537                  No                No              6             30
## 2538                  No                No              0              6
## 2539                  No                No             30              2
## 2540                  No                No              1              0
## 2541                 Yes                No              9              0
## 2542                  No                No             10              0
## 2543                  No                No              8              0
## 2544                  No                No              7              0
## 2545                 Yes                No             12              0
## 2546                  No                No              2              0
## 2547                  No                No              0              7
## 2548                 Yes                No             11             10
## 2550                 Yes                No              6              0
## 2551                  No                No             16              0
## 2552                 Yes                No              0              7
## 2553                  No                No              4              0
## 2554                 Yes                No              7              0
## 2555                  No                No              3              0
## 2556                  No                No              0              3
## 2558                  No                No              2              0
## 2559                  No                No              2              0
## 2560                 Yes                No              3              0
## 2561                  No                No              0             23
## 2562                  No                No             14              2
## 2563                 Yes                No              8              0
## 2564                 Yes               Yes              7              4
## 2565                  No                No              0              7
## 2566                  No                No              6              0
## 2567                 Yes                No              6              5
## 2568                 Yes               Yes             14              0
## 2569                  No                No              0              7
## 2570                  No                No              1              0
## 2571                  No                No              0              7
## 2572                  No                No              2              0
## 2573                 Yes                No             17              0
## 2574                 Yes               Yes              0              7
## 2575                 Yes                No              5              0
## 2576                 Yes                No             13              0
## 2577                 Yes                No             60              4
## 2578                  No                No             11              4
## 2579                 Yes               Yes              7              0
## 2580                  No                No             23              0
## 2581                  No                No              0              7
## 2582                  No                No              6              0
## 2583                  No                No              2              0
## 2584                  No                No              4              0
## 2585                 Yes                No              5              0
## 2586                  No                No              2              0
## 2587                 Yes                No              6              6
## 2588                 Yes               Yes              0              7
## 2589                  No                No              8              0
## 2590                 Yes                No              0             20
## 2591                 Yes                No             10              3
## 2592                 Yes                No              6              0
## 2593                  No                No              2              0
## 2594                  No                No             30              5
## 2595                  No                No              4              0
## 2596                 Yes                No              7              7
## 2598                 Yes               Yes              7              6
## 2599                 Yes               Yes              8              4
## 2600                 Yes                No              0              7
## 2601                  No                No             12              0
## 2602                  No                No              0             10
## 2603                  No                No              7              0
## 2604                 Yes                No              6              5
## 2605                  No                No              4              0
## 2606                 Yes                No             12              0
## 2607                  No                No              1              0
## 2608                 Yes                No              6              5
## 2609                  No                No             21              0
## 2610                  No                No              5              0
## 2611                  No                No             14              0
## 2612                  No                No              8              0
## 2613                 Yes                No              4              0
## 2614                  No                No              6              7
## 2615                  No                No             32              0
## 2616                  No                No              0             13
## 2617                  No                No             15              6
## 2618                 Yes               Yes              6              4
## 2619                  No                No              2              0
## 2620                  No                No              7              5
## 2621                  No                No             30              0
## 2622                  No                No              8              0
## 2623                 Yes                No              7              0
## 2624                 Yes                No              3              1
## 2625                 Yes               Yes              6              0
## 2626                  No                No              8              0
## 2627                 Yes                No              6              6
## 2628                  No                No              2              0
## 2629                  No                No              7              0
## 2630                  No                No              2              5
## 2631                 Yes               Yes             14              0
## 2632                  No                No              4              3
## 2633                  No                No             10              0
## 2634                  No                No             11              0
## 2635                  No                No             13             13
## 2636                 Yes                No              8              0
## 2637                 Yes                No             12              7
## 2638                  No                No              6              0
## 2639                  No                No              0             30
## 2640                  No                No              2              0
## 2641                 Yes                No             12              0
## 2642                  No                No              0              4
## 2643                 Yes                No              5              0
## 2644                  No                No              2              0
## 2645                  No                No             45              4
## 2646                  No                No              3              0
## 2648                  No                No             10              6
## 2649                  No                No             35              0
## 2650                  No                No              4              0
## 2651                  No                No              4              0
## 2652                 Yes                No              9              5
## 2653                 Yes               Yes             12              0
## 2654                 Yes                No             10              0
## 2655                  No                No              5              0
## 2656                  No                No              8              0
## 2657                 Yes               Yes             10              4
## 2659                  No                No              7              8
## 2660                  No                No              3              0
## 2661                  No                No              2              0
## 2662                  No                No              7              0
## 2665                 Yes               Yes              4             10
## 2666                  No                No              5              0
## 2667                  No                No              2              0
## 2669                 Yes                No             14              0
## 2670                 Yes                No              5              0
## 2672                  No                No              0             10
## 2673                  No                No              6              0
## 2674                 Yes               Yes             16              0
## 2675                  No                No             45              4
## 2676                  No                No             14              0
## 2677                 Yes               Yes             10              0
## 2678                  No                No              5              9
## 2679                  No                No              5              0
## 2680                 Yes                No             10              0
## 2681                 Yes                No             10              0
## 2682                 Yes                No              8              7
## 2684                 Yes                No              6              0
## 2685                 Yes                No             10              0
## 2686                 Yes                No             11              0
## 2687                 Yes                No             12             14
## 2688                  No                No              2              0
## 2689                  No                No              5              0
## 2690                 Yes                No              4              0
## 2691                  No                No             13              0
## 2693                  No                No              2              0
## 2695                  No                No             11              7
## 2696                 Yes                No              8              0
## 2697                 Yes                No              5              0
## 2698                  No                No              7              4
## 2699                  No                No            118              0
## 2700                 Yes                No              8              6
## 2701                  No                No              8              0
## 2702                  No                No              3              0
## 2703                  No                No              7              0
## 2704                  No                No              0              7
## 2705                  No                No              7             28
## 2706                  No                No              3              0
## 2707                  No                No              5              0
## 2708                  No                No              5              0
## 2709                  No                No              8              7
## 2710                  No                No              0              7
## 2711                 Yes                No              4              0
## 2713                 Yes               Yes              8              0
## 2714                  No                No              0              7
## 2715                  No                No              2              0
## 2716                  No                No              7              0
## 2717                  No                No              3              0
## 2718                 Yes                No             10              7
## 2720                  No                No              6              0
## 2721                 Yes                No             10              0
## 2722                  No                No              5              0
## 2723                  No               Yes              0              7
## 2724                 Yes                No             22              5
## 2725                  No                No              2              0
## 2726                  No                No              6              0
## 2727                  No                No              3              0
## 2728                 Yes                No              5              0
## 2729                 Yes                No              2              0
## 2730                  No                No              0              7
## 2731                  No                No              4              0
## 2732                 Yes               Yes             15              0
## 2733                  No                No              5              5
## 2734                 Yes                No              3              0
## 2735                  No               Yes              3             12
## 2737                  No                No              2              0
## 2738                 Yes               Yes             10              5
## 2739                  No                No              0              7
## 2740                 Yes               Yes              7              0
## 2741                  No                No             14              0
## 2742                  No                No             10              0
## 2743                 Yes               Yes             11              0
## 2744                  No                No              1              1
## 2745                  No                No              5              0
## 2746                  No                No              3              7
## 2747                 Yes                No             10              0
## 2748                  No                No              4              2
## 2749                 Yes                No             11              0
## 2750                  No                No             92              0
## 2751                  No                No              2              6
## 2752                  No                No             13              0
## 2753                  No                No              7              7
## 2755                  No                No              8              6
## 2756                  No                No             14              0
## 2757                  No                No             42              3
## 2760                  No               Yes              0             10
## 2761                  No                No              5              0
## 2762                  No                No             21              0
## 2763                 Yes                No              7              0
## 2764                 Yes                No              3              4
## 2765                  No                No              2              0
## 2766                  No                No              8              0
## 2767                  No                No             13              0
## 2768                 Yes                No              8              0
## 2769                 Yes                No              7              0
## 2770                 Yes               Yes             12              0
## 2771                  No                No              0              4
## 2772                  No                No              7              4
## 2773                 Yes                No              7              0
## 2774                  No                No             20              5
## 2775                  No                No              3              0
## 2776                  No                No             13              0
## 2777                 Yes                No              0             15
## 2778                 Yes               Yes              5              0
## 2779                  No                No              2              0
## 2780                  No                No              2              0
## 2781                 Yes               Yes              8              6
## 2782                  No                No              6              0
## 2783                  No                No              6              0
## 2784                  No                No              2              0
## 2785                  No                No              0              7
## 2786                  No                No              0              7
## 2787                  No                No              4              1
## 2788                 Yes               Yes              8              0
## 2789                 Yes                No             14              0
## 2790                  No                No              7              0
## 2791                 Yes                No              5              0
## 2792                 Yes                No              7              5
## 2793                 Yes                No              5              3
## 2794                  No                No              5              0
## 2795                  No                No              5              0
## 2796                 Yes               Yes              5              0
## 2797                  No                No              3              0
## 2798                  No                No              0              7
## 2799                  No                No              4              0
## 2800                  No                No             11              0
## 2801                  No                No              3              0
## 2802                 Yes               Yes              3              0
## 2803                  No                No             14              0
## 2804                  No                No              0             20
## 2805                  No                No             13             11
## 2806                 Yes                No              4              0
## 2807                  No                No              0             14
## 2808                  No                No              3              0
## 2809                 Yes               Yes              7              0
## 2810                  No                No             14              0
## 2811                 Yes                No              8              0
## 2813                  No                No             10              0
## 2814                  No                No              5              0
## 2815                 Yes                No              7              0
## 2816                 Yes               Yes             12              0
## 2817                  No                No              4              0
## 2818                 Yes                No              7              5
## 2821                  No                No              0              7
## 2822                  No                No              2              5
## 2823                  No                No              5              0
## 2824                 Yes                No              7              0
## 2825                 Yes                No             14              0
## 2826                  No                No             30              0
## 2827                  No                No              0              7
## 2828                 Yes               Yes             10              5
## 2829                  No                No              2              0
## 2831                 Yes                No             14              3
## 2832                  No                No              0              7
## 2833                  No                No             10              3
## 2834                  No                No              7              0
## 2835                  No                No              0             15
## 2836                  No                No             11              0
## 2837                 Yes               Yes              8              6
## 2838                  No                No              6              6
## 2839                  No                No              0             14
## 2840                  No                No              5              0
## 2841                 Yes                No              8              0
## 2842                 Yes               Yes             10              0
## 2843                  No                No              2              0
## 2844                 Yes               Yes             10              0
## 2845                  No                No             12              0
## 2846                  No                No             15              0
## 2850                 Yes               Yes              9              0
## 2851                  No                No              2              0
## 2852                  No                No              2              0
## 2853                  No                No              0              7
## 2854                  No                No              7              6
## 2855                  No                No              0              9
## 2856                  No                No              0              6
## 2857                  No                No              0              6
## 2858                 Yes               Yes              0              6
## 2859                 Yes               Yes              4              0
## 2860                  No                No              7              0
## 2862                  No                No              3              0
## 2863                 Yes               Yes              0             13
## 2864                  No                No              0              7
## 2865                  No                No              4              0
## 2866                 Yes               Yes              6              4
## 2868                  No                No              2              0
## 2869                 Yes               Yes              9              5
## 2870                 Yes               Yes              1              7
## 2871                 Yes                No              6              3
## 2872                  No                No             11              0
## 2874                  No                No              4              0
## 2875                  No                No             18              0
## 2876                  No                No             21              0
## 2877                  No                No             14              6
## 2878                 Yes               Yes             14              0
## 2879                  No               Yes              0              7
## 2880                  No                No              0              6
## 2881                 Yes                No              5              0
## 2882                  No                No             10              0
## 2883                 Yes                No             14              0
## 2885                 Yes               Yes             10              0
## 2886                  No                No              0             14
## 2887                  No                No              0              5
## 2888                 Yes               Yes              7              0
## 2889                 Yes                No              4              4
## 2890                 Yes                No              4              0
## 2891                  No                No              0              7
## 2892                  No               Yes              0              7
## 2893                  No                No             36              6
## 2894                 Yes                No              7              0
## 2895                  No                No              0              7
## 2896                  No                No             12              0
## 2897                 Yes                No             13              0
## 2898                  No                No              3              0
## 2899                 Yes                No              2              0
## 2900                  No                No              4             10
## 2901                  No                No              7              0
## 2902                  No               Yes              0              5
## 2903                  No                No              2              0
## 2904                 Yes               Yes             12              2
## 2905                  No                No              3              0
## 2906                  No                No              6              4
## 2909                  No                No             44              0
## 2910                  No                No              2              0
## 2911                  No                No             14              0
## 2912                 Yes                No              6              3
## 2913                 Yes               Yes             14              0
## 2914                  No                No              0              7
## 2915                  No                No              4              0
## 2916                  No                No              3              0
## 2917                 Yes                No             19              0
## 2918                  No                No             15              0
## 2919                 Yes                No             25              5
## 2921                  No                No              0             12
## 2922                  No                No              4              0
## 2923                  No                No              1              0
## 2924                  No                No              1              0
## 2925                  No                No              0              1
## 2926                  No                No             14              0
## 2927                  No                No              1              0
## 2928                 Yes                No              6              0
## 2929                  No                No              2              6
## 2930                 Yes                No             18              0
## 2931                 Yes               Yes             25              5
## 2932                  No                No              1              0
## 2933                 Yes               Yes             10              0
## 2934                 Yes                No              4              0
## 2935                  No                No             21              0
## 2936                  No                No             16              0
## 2937                 Yes                No              6              0
## 2938                 Yes                No              9              0
## 2939                  No                No              0              7
## 2940                 Yes               Yes              4              4
## 2941                 Yes                No              4              8
## 2942                  No                No              3              0
## 2943                  No                No              6              0
## 2944                  No                No              4              4
## 2946                  No                No              4              0
## 2947                 Yes               Yes              2              0
## 2948                  No                No              5              5
## 2949                 Yes               Yes             12              9
## 2950                  No                No              5              6
## 2951                  No                No             14              5
## 2952                  No                No              3              0
## 2953                  No                No             16              4
## 2954                  No                No             28              0
## 2955                  No                No              0              9
## 2956                  No                No             14              0
## 2957                 Yes                No             12              0
## 2958                 Yes               Yes              3              0
## 2959                 Yes                No             13              0
## 2960                  No                No              5              0
## 2961                  No                No              0              3
## 2962                  No                No             21              0
## 2964                  No                No             33              0
## 2965                 Yes                No              0             12
## 2966                  No               Yes             12              5
## 2967                  No                No              3              0
## 2968                  No                No              9              6
## 2969                  No                No             10              0
## 2970                 Yes                No              5              0
## 2971                 Yes               Yes              7              0
## 2972                 Yes               Yes              5              6
## 2973                 Yes                No             10              0
## 2974                  No                No             21              0
## 2975                  No                No              2              0
## 2976                 Yes                No              6              3
## 2977                 Yes                No             16              0
## 2978                  No                No             10              0
## 2980                  No                No              2              0
## 2982                 Yes               Yes              5              0
## 2983                  No                No             12              0
## 2984                 Yes               Yes              4             10
## 2985                  No                No             15              4
## 2986                 Yes                No             17              0
## 2987                  No                No             12              0
## 2988                  No                No              4              0
## 2989                  No                No             14              0
## 2990                 Yes                No             15              0
## 2991                  No                No              0              4
## 2992                 Yes                No              5              0
## 2993                 Yes               Yes             10              7
## 2994                  No                No              0             14
## 2995                  No                No              0              3
## 2996                 Yes               Yes              0              3
## 2997                  No                No              7              0
## 2998                  No                No              4              4
## 2999                 Yes               Yes              7              3
## 3000                 Yes                No             14              0
## 3002                  No                No              0             14
## 3003                 Yes               Yes              5              3
## 3004                  No                No             16              0
## 3005                 Yes                No              0              7
## 3006                  No                No              4              0
## 3007                  No                No              0              8
## 3008                  No                No              6              6
## 3009                 Yes                No              4              0
## 3010                  No                No              7              6
## 3011                  No                No              0              6
## 3012                 Yes                No             11              0
## 3013                  No               Yes              0              7
## 3015                 Yes               Yes             10              0
## 3016                  No                No             20              0
## 3017                  No               Yes              0              7
## 3018                  No                No              2              0
## 3019                  No                No              5              3
## 3020                 Yes               Yes              6              0
## 3021                 Yes                No              7              3
## 3022                 Yes                No             12              0
## 3023                 Yes                No              4              0
## 3024                 Yes                No              9              0
## 3025                 Yes               Yes              4              0
## 3027                 Yes                No              8              0
## 3028                 Yes                No              3              0
## 3029                  No                No              9              0
## 3030                  No                No              7              6
## 3031                  No                No              9              4
## 3032                 Yes                No              6              0
## 3033                 Yes                No              7              7
## 3034                 Yes                No              7              0
## 3035                 Yes               Yes              4              0
## 3036                 Yes               Yes             12              0
## 3037                 Yes               Yes             14              0
## 3038                  No                No              0             14
## 3039                 Yes                No              7              0
## 3040                 Yes               Yes              7              3
## 3041                  No                No              2              0
## 3042                 Yes               Yes              6              4
## 3044                 Yes                No             10              0
## 3045                  No                No              1              0
## 3046                  No                No             14              7
## 3047                  No                No              3              0
## 3048                 Yes                No             16              5
## 3049                  No                No              4              0
## 3050                  No                No              6             10
## 3051                 Yes                No             14              5
## 3053                  No                No              4              1
## 3054                  No                No              6              0
## 3055                  No                No              0             10
## 3056                  No                No              6              0
## 3057                  No                No              2              0
## 3058                 Yes                No              6              0
## 3060                  No                No              2              3
## 3061                  No                No             50              0
## 3062                  No                No              3             10
## 3063                  No                No              1              0
## 3064                 Yes               Yes             10              0
## 3065                  No                No            279              0
## 3066                 Yes                No             10              4
## 3067                 Yes                No             12              0
## 3068                  No                No              3              0
## 3069                  No               Yes              0             21
## 3070                  No                No              5              0
## 3071                  No                No              5              0
## 3072                  No                No             13              0
## 3073                 Yes                No             11              0
## 3074                  No                No            300              0
## 3075                 Yes                No              0              8
## 3076                 Yes               Yes             14              0
## 3078                  No                No              2              0
## 3079                  No                No             30              0
## 3080                  No                No              3              0
## 3081                  No                No              0              8
## 3082                 Yes                No             13              0
## 3084                 Yes                No              8              0
## 3085                  No                No              3              0
## 3086                 Yes               Yes             11              0
## 3087                  No                No              5              9
## 3088                  No                No              0              7
## 3090                 Yes                No              8              0
## 3091                 Yes                No              9              4
## 3092                  No                No              0              7
## 3093                  No                No              7              0
## 3094                  No                No              6              4
## 3095                  No                No             30              0
## 3096                  No                No             14              0
## 3097                 Yes                No              7              0
## 3098                 Yes                No              9              3
## 3099                 Yes                No             10              0
## 3100                 Yes                No              0             14
## 3101                  No                No              6              0
## 3102                  No                No              0              4
## 3103                  No                No             10              0
## 3104                 Yes               Yes              6              0
## 3105                  No                No             23              0
## 3106                  No                No              0             28
## 3107                 Yes                No              6              0
## 3108                  No                No              0             60
## 3109                  No               Yes              0              7
## 3110                  No                No              4              0
## 3111                  No                No              0              7
## 3112                  No                No              3              0
## 3113                  No                No              7              0
## 3114                 Yes               Yes              7             12
## 3115                  No                No             14             12
## 3116                 Yes               Yes              7              6
## 3117                  No                No              3              2
## 3118                  No                No             90              0
## 3119                 Yes               Yes              7              6
## 3120                  No                No              7              0
## 3121                 Yes               Yes              0              7
## 3122                  No                No              3              0
## 3123                 Yes               Yes              5              0
## 3124                 Yes                No             11              0
## 3126                 Yes                No              9              0
## 3127                  No                No              8              2
## 3128                  No                No              0             14
## 3129                  No                No              2              0
## 3130                  No                No             12              0
## 3131                  No                No              0              7
## 3132                 Yes                No             14              0
## 3133                  No                No              5              0
## 3134                  No                No              4              7
## 3136                  No                No              8             12
## 3137                 Yes                No             11              4
## 3138                 Yes               Yes              9              0
## 3139                  No                No              3              0
## 3140                  No                No             13              0
## 3141                 Yes               Yes              0              7
## 3142                 Yes                No              5              3
## 3143                  No                No             14              0
## 3144                 Yes               Yes              4              0
## 3145                  No                No              7              7
## 3146                  No                No              1              4
## 3147                 Yes               Yes              3              7
## 3148                  No               Yes              0              7
## 3149                  No                No             24              6
## 3150                  No                No              7              0
## 3151                  No                No             30              0
## 3152                  No                No              0              6
## 3153                 Yes               Yes              7              0
## 3154                  No                No              1              0
## 3155                  No                No              1             14
## 3156                  No                No              2              1
## 3157                 Yes                No              8              3
## 3158                  No                No             14              0
## 3159                  No                No             15              0
## 3160                  No                No              5              0
## 3161                  No                No              5              7
## 3162                  No               Yes              0              7
## 3163                  No                No             12              0
## 3164                 Yes                No             14              0
## 3165                 Yes               Yes              9              6
## 3166                  No                No              3              0
## 3167                 Yes                No             12              0
## 3168                 Yes                No              4              7
## 3169                  No                No              2              0
## 3170                 Yes                No             13              0
## 3171                  No                No              5              0
## 3172                  No                No              3              0
## 3173                  No                No             10             15
## 3174                 Yes                No             13              0
## 3175                  No                No             30              0
## 3177                  No                No             22              0
## 3178                  No                No              4              0
## 3179                  No                No              1              0
## 3180                 Yes                No              8              4
## 3181                  No                No             27              0
## 3182                  No                No              5              0
## 3183                  No                No             37              0
## 3184                  No                No             18              1
## 3185                 Yes               Yes              3              0
## 3186                 Yes                No              6              4
## 3187                 Yes                No              4              0
## 3188                 Yes               Yes              7              0
## 3189                  No                No             15              0
## 3190                 Yes                No              5              8
## 3191                  No                No             37              7
## 3192                 Yes                No              4              0
## 3193                 Yes               Yes             15              6
## 3194                 Yes               Yes              6              7
## 3195                  No                No              3              0
## 3196                  No                No              0              6
## 3197                 Yes                No             11              3
## 3198                  No                No              0              7
## 3199                 Yes                No             20              0
## 3200                  No                No              5              0
## 3201                 Yes               Yes              7              0
## 3202                  No                No              0             17
## 3203                  No                No              3              0
## 3204                  No                No              4              8
## 3205                  No                No              5              2
## 3206                 Yes                No              6              4
## 3207                  No                No              0              6
## 3208                  No                No              7              6
## 3210                 Yes                No              7              5
## 3211                  No                No              1              0
## 3213                  No                No              2              3
## 3215                 Yes                No             15              0
## 3216                  No                No              6              0
## 3217                  No                No              7              0
## 3218                 Yes                No             10              0
## 3219                  No                No              2              0
## 3221                  No                No             11              0
## 3222                  No                No             12              0
## 3223                  No                No              1              0
## 3224                  No                No              7              0
## 3225                 Yes               Yes             11              0
## 3226                 Yes               Yes              3              0
## 3227                  No                No             13              2
## 3228                  No                No              7              0
## 3229                 Yes                No              8              0
## 3230                 Yes               Yes              3              0
## 3231                 Yes                No              0              7
## 3232                  No                No              3              0
## 3233                  No                No              5              0
## 3234                 Yes               Yes             12              0
## 3235                  No                No             17              6
## 3236                  No                No              6              0
## 3238                  No                No              6              0
## 3239                 Yes                No             10              3
## 3240                  No                No              0              7
## 3241                 Yes                No              6              0
## 3242                  No                No             60              0
## 3243                  No                No              5              0
## 3244                  No                No             14              6
## 3245                  No                No              0              3
## 3246                 Yes                No             16              5
## 3247                  No               Yes              0             20
## 3248                  No                No              5              0
## 3249                 Yes                No              7              0
## 3250                  No                No              3              0
## 3251                  No                No              4              0
## 3252                  No                No             15              0
## 3253                  No                No              2              0
## 3254                  No                No              1              0
## 3255                  No                No              7              0
## 3256                  No                No              0              7
## 3257                  No                No             22              0
## 3258                  No                No              0             11
## 3259                  No                No              2              0
## 3260                 Yes                No              8              0
## 3261                  No                No             14              0
## 3262                 Yes                No             12              0
## 3263                 Yes               Yes              3              4
## 3264                  No                No             10              0
## 3266                  No                No              5              7
## 3267                  No                No             30              3
## 3268                  No                No              4              5
## 3269                  No               Yes              0             14
## 3270                 Yes                No             12              0
## 3271                  No                No              2              0
## 3272                  No               Yes              0              7
## 3273                  No                No              2              0
## 3274                  No                No              7              4
## 3275                  No                No              8              7
## 3276                  No                No              0              7
## 3277                 Yes               Yes              9              0
## 3278                  No                No             18              0
## 3279                  No                No             13              4
## 3280                  No                No              4             10
## 3282                 Yes                No              5              0
## 3283                 Yes               Yes             16              5
## 3284                  No                No              2              0
## 3285                  No                No              8              3
## 3286                  No               Yes              1             14
## 3287                  No                No              0              4
## 3288                  No                No             70              0
## 3289                 Yes               Yes             11              0
## 3290                  No                No              7              0
## 3291                 Yes               Yes              5              4
## 3292                  No                No              8              7
## 3293                  No                No             13              0
## 3294                 Yes               Yes              3              0
## 3295                  No                No              0              7
## 3296                  No                No              4              0
## 3297                  No                No              0              5
## 3298                 Yes                No             10              0
## 3299                 Yes               Yes              6              6
## 3300                  No               Yes             10              4
## 3301                 Yes                No             14              4
## 3302                  No                No              4              0
## 3303                 Yes               Yes              7              0
## 3305                  No                No              2              0
## 3306                  No                No              5              0
## 3307                  No                No             15              0
## 3308                  No                No              4              3
## 3309                  No                No              4             10
## 3310                 Yes                No             12              0
## 3312                  No                No              3              0
## 3313                  No                No              3              0
## 3314                 Yes                No             17              0
## 3315                  No                No             17              4
## 3316                 Yes                No             17              0
## 3317                  No                No              7              0
## 3318                  No                No              5              0
## 3319                  No                No              1              0
## 3320                  No                No              2              0
## 3321                  No                No              2              0
## 3322                  No                No             11              0
## 3323                 Yes                No              7             10
## 3324                  No                No              9              0
## 3325                 Yes               Yes              7              0
## 3326                  No                No              4              0
## 3327                 Yes               Yes              8              0
## 3328                  No                No             30              0
## 3330                  No                No             12              3
## 3331                  No                No             18              0
## 3332                  No                No             12              3
## 3334                 Yes               Yes              6              0
## 3335                  No                No              0              7
## 3336                 Yes                No              8              2
## 3337                  No                No             23              0
## 3338                 Yes               Yes              0              7
## 3339                  No                No              5              0
## 3340                  No                No             12              0
## 3341                  No                No             10              3
## 3342                  No                No             11              0
## 3343                  No                No             24              0
## 3344                  No                No              5              0
## 3346                  No                No              5              0
## 3347                 Yes                No              3              0
## 3348                 Yes                No              8              0
## 3349                  No                No              4             17
## 3350                  No                No             10              0
## 3351                  No                No              2              0
## 3352                  No               Yes             14              0
## 3353                  No                No              9              3
## 3354                  No               Yes              0              7
## 3355                  No               Yes              0              7
## 3356                 Yes                No             10              0
## 3357                  No                No              0              1
## 3358                  No                No              3              5
## 3359                 Yes                No              6              0
## 3360                 Yes               Yes              5              7
## 3361                  No                No              0             25
## 3362                 Yes               Yes              6              0
## 3363                  No                No              2              0
## 3364                  No                No              2              0
## 3365                 Yes               Yes              5              3
## 3366                  No                No             10              0
## 3367                 Yes                No              5              0
## 3368                  No                No             52              0
## 3369                  No                No              0              5
## 3370                 Yes               Yes              7              7
## 3371                  No                No              5              0
## 3372                 Yes                No              6              0
## 3373                  No                No             10              7
## 3374                 Yes               Yes              0              7
## 3376                  No                No              9              0
## 3377                 Yes                No              2              6
## 3378                  No                No              4              0
## 3379                  No                No              8              0
## 3380                  No                No              0              7
## 3381                  No               Yes              0              7
## 3382                 Yes                No              5              3
## 3383                  No                No              0              4
## 3384                  No                No              0              7
## 3385                 Yes                No             10              0
## 3386                 Yes               Yes              0              7
## 3387                  No                No              7              0
## 3388                  No                No              6             11
## 3389                 Yes               Yes              0              8
## 3391                  No                No             12              0
## 3392                  No                No             14              0
## 3393                 Yes                No              8              0
## 3394                 Yes                No             10              0
## 3395                  No                No              3              0
## 3396                  No                No             14              0
## 3398                  No                No             13              0
## 3399                  No                No              3              0
## 3400                 Yes                No              7              0
## 3401                  No                No              2              0
## 3402                 Yes               Yes              4              0
## 3403                 Yes                No             13              0
## 3404                 Yes                No             11              3
## 3405                  No                No             21              0
## 3406                 Yes                No              0              7
## 3407                  No                No              8              0
## 3408                  No                No              0              7
## 3409                  No                No              4              0
## 3410                 Yes                No              8              6
## 3411                 Yes                No              8              0
## 3413                  No                No              0              6
## 3414                 Yes                No              5              4
## 3415                  No                No              2              0
## 3416                 Yes                No             17              0
## 3417                  No                No              0              4
## 3418                 Yes               Yes             14              0
## 3419                  No                No             28              0
## 3422                  No                No              0              7
## 3423                 Yes               Yes              5              6
## 3424                  No                No              5              0
## 3425                 Yes                No              3              5
## 3426                 Yes               Yes             12              0
## 3428                  No                No              6              3
## 3429                  No                No              3              0
## 3430                 Yes                No              9              2
## 3431                 Yes               Yes              4              3
## 3432                 Yes                No              6              3
## 3433                  No                No             10              0
## 3434                  No                No             85              0
## 3435                  No                No              0              7
## 3436                  No                No              8              0
## 3437                  No                No              0              7
## 3438                  No                No              0              7
## 3439                  No                No             13              0
## 3440                  No                No              7              0
## 3441                  No                No              7              0
## 3442                  No                No              7              0
## 3443                  No                No             10              3
## 3444                 Yes                No             12              0
## 3445                 Yes               Yes              6              6
## 3446                  No                No              3              0
## 3447                 Yes               Yes              7              0
## 3448                 Yes               Yes              9              0
## 3449                 Yes                No              4              0
## 3450                  No                No              0              3
## 3451                  No                No              4              0
## 3452                 Yes                No              5              0
## 3453                 Yes               Yes             11              0
## 3454                  No                No             62              0
## 3455                  No                No              9              0
## 3456                  No                No              0             13
## 3457                  No                No              7              0
## 3458                  No                No             11              3
## 3459                  No                No              3              0
## 3460                 Yes               Yes              2              0
## 3461                  No                No             11              6
## 3462                  No                No              2              1
## 3463                  No                No             14              0
## 3464                  No                No              5              1
## 3465                  No                No              0              4
## 3466                  No               Yes              0              7
## 3467                  No                No             17              3
## 3468                  No                No             37              0
## 3469                  No                No              2             12
## 3470                 Yes               Yes             14              4
## 3471                 Yes               Yes             60              0
## 3472                  No                No              1              5
## 3473                  No                No              6              0
## 3474                  No                No              6              3
## 3476                  No                No              9              0
## 3477                 Yes               Yes              6              6
## 3478                  No                No              9              0
## 3479                  No                No              7              7
## 3480                  No                No              7              0
## 3481                 Yes                No             14              0
## 3483                  No                No              6              0
## 3484                  No                No             45             10
## 3485                  No                No             15              0
## 3486                 Yes                No             11              0
## 3487                  No                No              2              0
## 3489                 Yes                No              5              4
## 3490                 Yes                No             14              0
## 3491                 Yes               Yes              7              0
## 3492                  No                No              4              0
## 3493                 Yes                No              9              0
## 3494                 Yes               Yes             13              0
## 3495                 Yes                No             11              0
## 3496                  No                No              8              2
## 3497                  No                No              5              0
## 3498                 Yes                No             13              5
## 3499                  No                No              4              0
## 3500                  No                No              7              2
## 3501                  No                No              0             10
## 3502                  No                No              6              0
## 3503                  No                No              6              0
## 3504                 Yes               Yes              3              0
## 3505                 Yes                No             10              3
## 3506                 Yes               Yes              4              0
## 3507                  No                No              5              0
## 3508                  No                No             13              0
## 3510                  No                No              7              7
## 3511                  No                No             14              0
## 3512                 Yes                No             12              5
## 3513                  No                No              9              0
## 3514                  No                No              2              0
## 3515                  No                No             10              0
## 3516                  No                No             28              0
## 3517                 Yes                No              6              0
## 3518                  No                No              2              0
## 3519                  No                No              8              5
## 3520                 Yes               Yes              7              7
## 3521                  No                No              2              0
## 3522                  No                No             22              3
## 3523                 Yes                No             18              0
## 3524                  No               Yes              0              7
## 3525                  No                No              0              8
## 3526                  No                No             21             21
## 3527                  No                No             18              3
## 3528                  No                No              3              0
## 3529                 Yes                No             10              0
## 3530                  No                No              3              0
## 3531                  No                No              0              5
## 3532                 Yes                No             12              0
## 3533                  No                No             20              2
## 3534                 Yes                No              4              0
## 3535                  No                No              4              0
## 3536                 Yes                No              0              7
## 3537                  No                No             52              5
## 3538                 Yes                No              0             14
## 3539                  No                No              6              0
## 3540                  No                No              8             10
## 3541                 Yes                No              7              4
## 3542                  No                No             15              0
## 3544                  No               Yes              0              7
## 3545                  No                No             46              0
## 3546                  No                No              8              4
## 3547                 Yes                No              8              0
## 3548                 Yes                No             10              2
## 3549                  No                No              2              0
## 3550                 Yes                No              8              6
## 3551                 Yes                No              3              0
## 3552                  No                No             80              5
## 3553                 Yes                No             10              0
## 3554                  No                No             11              0
## 3555                 Yes                No             13              0
## 3556                  No                No              7              0
## 3557                  No                No              2              0
## 3558                 Yes                No              7              0
## 3559                 Yes                No             10              5
## 3560                  No                No              7              0
## 3561                  No                No              7              0
## 3562                 Yes               Yes              3              0
## 3563                  No                No              3              2
## 3564                 Yes               Yes              7              0
## 3565                 Yes               Yes              4              0
## 3567                  No                No             16              0
## 3568                  No                No              0              4
## 3569                 Yes                No             19              0
## 3570                  No                No             10              0
## 3571                 Yes               Yes              6              2
## 3573                  No                No              2              0
## 3574                  No                No              4              0
## 3575                 Yes                No             11              0
## 3576                  No                No              6              0
## 3577                  No                No             11              4
## 3578                  No                No             20              0
## 3579                  No                No              3              0
## 3580                  No                No              2              0
## 3581                  No                No              9              0
## 3582                  No                No              8              0
## 3583                  No                No              2              0
## 3584                 Yes                No              5              4
## 3585                 Yes               Yes              7              0
## 3586                 Yes                No              7              4
## 3587                  No                No              3              0
## 3588                  No                No              6              0
## 3589                  No                No              2              0
## 3590                  No                No              2              0
## 3591                  No                No              0              8
## 3592                 Yes                No              6              2
## 3593                  No               Yes              9              0
## 3594                  No                No              4              0
## 3595                 Yes               Yes              3              0
## 3596                  No                No              4              0
## 3597                 Yes               Yes              6              0
## 3598                  No                No              0              4
## 3599                  No                No              3              0
## 3600                 Yes                No              5              0
## 3601                  No                No             14              0
## 3602                  No                No              2              0
## 3603                 Yes                No              7              3
## 3604                  No                No             10              4
## 3605                  No                No              5              0
## 3606                  No                No             60             10
## 3607                  No                No              6              0
## 3608                  No                No              0              7
## 3609                  No                No              1              0
## 3610                 Yes                No              6              0
## 3611                  No                No              0              7
## 3612                 Yes                No              1             13
## 3613                 Yes               Yes             12              0
## 3614                  No                No              8              0
## 3615                  No                No             30              0
## 3616                  No                No              7              0
## 3617                  No                No              3              0
## 3618                  No                No              6              6
## 3619                 Yes               Yes              0              7
## 3620                 Yes                No              9              5
## 3621                  No                No              2              0
## 3622                  No                No              3              0
## 3623                 Yes               Yes             14              2
## 3624                  No                No              0              5
## 3625                  No                No              7              0
## 3627                 Yes                No              4              4
## 3628                  No                No              5              0
## 3629                  No                No             35              0
## 3630                  No               Yes              0              7
## 3631                 Yes               Yes              0             16
## 3632                  No                No             44              0
## 3633                 Yes                No              5              0
## 3634                 Yes                No             16              3
## 3635                  No                No              0              7
## 3637                  No                No              0             11
## 3638                  No                No              3              0
## 3639                  No                No              0              7
## 3640                  No                No              3              0
## 3641                 Yes               Yes              6              1
## 3642                 Yes               Yes              8              0
## 3643                  No                No              0             14
## 3644                 Yes                No              6              3
## 3645                 Yes                No              5              8
## 3646                  No                No             13              0
## 3647                 Yes                No              9              0
## 3648                 Yes                No             10              0
## 3649                  No                No             20              0
## 3650                  No                No             14              0
## 3652                  No                No             15              0
## 3653                  No                No              2              0
## 3654                  No                No             15              0
## 3655                  No                No             14              0
## 3656                 Yes               Yes              9              0
## 3657                  No               Yes             10              0
## 3658                  No                No              0              7
## 3659                  No                No             21              0
## 3660                  No                No              6              0
## 3661                  No               Yes              0              7
## 3662                  No                No              2              0
## 3663                 Yes                No             11              5
## 3664                 Yes                No              7              0
## 3665                  No                No              3              0
## 3667                 Yes                No             14              0
## 3668                  No                No              5              0
## 3670                  No                No              2              0
## 3671                  No                No              3              0
## 3672                  No                No              1              0
## 3673                 Yes                No              2              6
## 3674                  No                No              7              0
## 3675                  No                No             21              0
## 3676                  No                No              7             21
## 3677                  No                No              7              7
## 3678                  No                No              7              0
## 3679                  No                No             15              0
## 3680                  No                No              0              7
## 3681                 Yes               Yes             15              0
## 3682                 Yes               Yes              7              5
## 3683                 Yes                No              5              4
## 3684                  No                No              5              2
## 3685                 Yes                No              6              0
## 3686                  No                No              8              0
## 3687                  No                No              2              4
## 3688                  No                No              9              5
## 3689                 Yes               Yes              3              0
## 3690                  No                No              9              9
## 3691                  No                No              6              0
## 3692                 Yes               Yes              8              0
## 3694                  No                No              0              6
## 3695                  No                No              0              7
## 3696                 Yes                No              4              0
## 3697                 Yes               Yes              0              9
## 3698                  No                No              7              6
## 3699                 Yes               Yes              7              5
## 3700                  No                No              8              0
## 3701                  No                No              0              3
## 3702                  No                No             11              0
## 3703                 Yes               Yes             10              0
## 3704                 Yes                No             10              3
## 3706                  No                No              0              7
## 3707                 Yes                No              5              0
## 3708                 Yes               Yes              6              0
## 3709                  No               Yes             12              0
## 3710                 Yes                No             22              4
## 3711                  No                No              1             12
## 3712                 Yes               Yes              4              0
## 3713                 Yes                No             10              0
## 3714                  No                No             14              0
## 3715                 Yes               Yes              7              4
## 3716                  No                No              8              8
## 3717                  No                No              2              0
## 3718                 Yes               Yes              4              6
## 3719                  No                No              2              0
## 3720                  No                No             44              8
## 3721                  No                No              0              9
## 3722                 Yes                No              8              0
## 3723                  No                No              0              7
## 3724                  No                No              6              0
## 3725                  No                No              4              0
## 3726                  No                No              4              0
## 3727                 Yes                No              4              7
## 3728                  No                No              4              0
## 3729                 Yes               Yes             13              0
## 3730                  No                No              5              0
## 3731                  No                No              3              0
## 3732                  No                No             14              9
## 3733                 Yes               Yes              6              0
## 3734                 Yes                No              3             11
## 3736                  No                No              4              0
## 3737                 Yes                No             12              0
## 3738                  No                No              1              0
## 3739                  No                No              4              0
## 3740                  No                No              6              0
## 3741                  No                No              3              0
## 3742                  No                No              3              0
## 3743                 Yes               Yes             10              0
## 3744                 Yes                No             12              0
## 3745                 Yes                No             16              0
## 3746                 Yes               Yes              5              3
## 3747                 Yes                No              5              0
## 3748                  No                No              3              0
## 3749                 Yes                No             11              0
## 3750                  No                No              4              0
## 3751                 Yes               Yes             11              0
## 3752                  No                No             17              0
## 3753                  No                No              2              0
## 3754                 Yes               Yes              4              0
## 3755                 Yes                No              5              5
## 3756                  No                No              5              0
## 3757                 Yes               Yes              9              0
## 3758                  No                No              3              0
## 3759                 Yes                No             14              0
## 3760                 Yes               Yes              7              0
## 3761                  No                No              0              5
## 3762                  No                No             10              0
## 3763                 Yes                No              6              0
## 3764                  No                No             10              0
## 3765                  No                No              0             11
## 3766                 Yes               Yes              0              4
## 3767                  No                No              4              0
## 3768                 Yes                No              6              0
## 3769                  No                No              4              0
## 3770                  No                No              4              0
## 3771                 Yes               Yes              1             13
## 3774                  No                No              6              6
## 3775                  No                No              7              0
## 3776                  No                No              5              3
## 3777                 Yes                No             10              0
## 3778                  No                No              4              2
## 3779                 Yes               Yes             11              0
## 3780                 Yes               Yes              3              0
## 3781                  No                No             13              0
## 3782                  No                No             45              0
## 3783                 Yes                No              4              0
## 3784                  No                No              0              7
## 3785                  No                No             14              0
## 3786                  No                No              0              4
## 3787                  No                No             30              0
## 3788                  No                No             13             10
## 3789                  No                No              6              0
## 3790                 Yes                No              0              8
## 3791                 Yes               Yes             15              0
## 3792                 Yes                No              9              5
## 3793                  No                No              2              0
## 3794                  No                No             30              2
## 3795                  No                No             10              0
## 3796                 Yes                No              8              0
## 3797                 Yes                No             10              0
## 3798                  No                No              8              0
## 3800                  No                No             15              7
## 3801                  No                No             14              0
## 3802                 Yes                No              5              3
## 3803                 Yes                No              8              4
## 3804                 Yes                No             11              0
## 3806                 Yes                No             11              0
## 3807                  No                No              8              7
## 3808                  No                No              7              0
## 3809                  No                No              2              0
## 3810                 Yes               Yes              3              6
## 3811                 Yes                No              8             10
## 3812                  No                No             10              0
## 3813                  No               Yes             11              0
## 3814                  No                No              0              7
## 3815                  No                No             32              0
## 3816                  No                No              0             15
## 3817                  No                No             14              0
## 3818                  No                No              4              0
## 3819                  No                No             14              7
## 3820                  No                No              6              0
## 3821                 Yes                No              4              0
## 3822                  No                No              6              6
## 3823                 Yes                No             15              0
## 3824                  No                No             14              0
## 3825                  No                No              3              0
## 3826                  No                No              5             15
## 3827                 Yes                No             19              0
## 3828                  No                No             14              0
## 3829                  No                No              7              0
## 3830                  No                No              3              3
## 3831                 Yes               Yes             17              0
## 3832                  No                No             14              0
## 3833                  No                No              7              6
## 3834                 Yes               Yes             14              0
## 3835                 Yes               Yes              0              7
## 3836                  No                No              3              0
## 3837                  No                No              2              5
## 3838                 Yes               Yes              6              0
## 3839                  No                No              0              7
## 3840                  No                No              1              0
## 3841                  No                No              7              3
## 3842                 Yes               Yes              9              3
## 3843                  No                No              0             10
## 3844                 Yes                No              0             12
## 3846                  No                No             20              5
## 3847                 Yes                No              8              0
## 3848                  No                No              1              0
## 3849                  No                No             13              0
## 3850                 Yes                No             13              0
## 3851                  No                No              0              7
## 3852                  No                No              0              7
## 3853                  No                No              5              0
## 3854                  No                No              7              0
## 3855                 Yes               Yes              9              0
## 3856                  No                No             10             10
## 3857                 Yes                No              6              0
## 3858                  No                No              9              0
## 3859                 Yes                No             13              3
## 3860                 Yes                No             13              7
## 3861                  No                No             49              0
## 3862                  No                No             39              0
## 3863                 Yes               Yes             12              0
## 3864                  No                No              2              0
## 3865                 Yes               Yes              5              4
## 3866                 Yes               Yes             16              5
## 3867                 Yes                No             12              5
## 3868                  No                No             17              0
## 3869                  No                No              3              0
## 3870                  No                No              9              0
## 3871                  No                No              7              0
## 3872                 Yes                No              4              0
## 3873                 Yes                No             21              0
## 3874                  No                No              7              0
## 3875                  No                No             49              0
## 3876                 Yes                No              4              0
## 3877                 Yes                No              2              0
## 3878                  No                No              6              4
## 3879                 Yes                No             10              3
## 3880                  No                No             28              5
## 3881                 Yes                No             10              0
## 3882                 Yes                No              8              7
## 3883                  No                No              6              0
## 3884                  No                No              3              2
## 3885                  No                No             70              4
## 3886                  No                No             11              0
## 3887                  No                No              0              7
## 3888                  No                No             12              0
## 3889                 Yes                No              7              3
## 3890                  No                No              3              7
## 3891                 Yes                No              5              0
## 3892                  No                No              7              0
## 3893                  No                No              8              0
## 3894                 Yes                No             14              0
## 3895                  No                No              3              0
## 3896                 Yes               Yes              5              0
## 3897                  No                No              2              0
## 3898                  No                No              0              7
## 3899                  No                No              0             13
## 3900                  No                No              7              0
## 3902                  No                No              0              8
## 3903                 Yes               Yes             10              0
## 3904                 Yes               Yes             11              0
## 3905                 Yes                No              7              0
## 3906                  No                No             11              0
## 3907                 Yes               Yes              7              7
## 3908                 Yes                No              7              0
## 3909                  No                No             11              4
## 3910                  No                No              7              0
## 3911                  No                No              0             14
## 3912                 Yes                No              0              6
## 3913                 Yes               Yes              7              4
## 3914                  No                No              2              0
## 3915                 Yes               Yes             12              0
## 3916                  No                No              8              0
## 3917                 Yes                No             12              0
## 3918                  No                No              4              0
## 3919                 Yes                No              0              8
## 3920                  No                No              4              0
## 3921                  No                No              5              0
## 3922                  No                No              5              0
## 3923                 Yes                No             12              0
## 3924                  No                No             12              0
## 3925                  No                No             14              0
## 3926                  No                No              9              0
## 3927                  No                No              6              7
## 3928                  No                No             12              0
## 3929                 Yes               Yes              4              3
## 3930                  No                No              3              0
## 3931                 Yes                No             12              0
## 3932                  No                No             14              0
## 3933                 Yes               Yes              5              0
## 3934                 Yes               Yes             22              0
## 3935                  No                No              4              0
## 3936                  No                No             30              3
## 3937                 Yes                No              5              0
## 3939                  No                No              0             14
## 3940                 Yes                No              6              2
## 3941                  No                No             54              0
## 3943                  No                No              4              0
## 3944                  No                No              2              0
## 3945                  No                No              7              0
## 3946                  No                No             15              6
## 3947                 Yes               Yes              0              7
## 3949                 Yes               Yes              6              5
## 3950                  No                No             18              0
## 3952                  No                No              8             13
## 3953                  No                No              2              0
## 3954                  No               Yes              0             14
## 3955                  No                No              5              0
## 3957                 Yes                No              5              0
## 3958                  No                No              0              3
## 3959                 Yes               Yes              3              0
## 3960                  No                No              2              0
## 3961                  No               Yes              0              7
## 3962                  No                No             14              0
## 3963                 Yes               Yes              6              0
## 3964                  No                No              5              0
## 3965                  No                No              7              0
## 3966                 Yes                No              7              3
## 3967                  No                No              6              0
## 3968                  No                No              5              0
## 3969                  No                No              9              4
## 3970                 Yes                No              7              0
## 3971                 Yes                No             15              5
## 3972                  No                No              0             10
## 3973                 Yes                No              7              0
## 3974                  No                No              1              1
## 3975                 Yes               Yes              0              7
## 3976                  No                No              0              5
## 3978                  No                No             19              2
## 3979                 Yes                No              8              0
## 3980                 Yes                No              7              6
## 3981                  No                No              0              4
## 3982                  No                No              3              0
## 3983                  No               Yes              0              9
## 3984                  No                No              7              0
## 3985                  No                No             12              8
## 3986                 Yes                No              3              9
## 3987                  No                No             16              5
## 3988                  No                No              2              0
## 3989                  No                No             18              0
## 3990                  No                No              2              2
## 3991                 Yes               Yes              0              7
## 3992                 Yes                No             14              4
## 3993                 Yes                No              4              0
## 3994                 Yes                No              0              7
## 3995                  No                No              0              7
## 3996                  No                No              0             12
## 3997                  No                No             10              7
## 3998                  No                No              2              0
## 3999                 Yes               Yes              6              2
## 4000                 Yes               Yes              0              7
## 4001                  No                No             10              0
## 4002                  No                No              2              0
## 4003                 Yes               Yes              8              0
## 4004                  No                No              4              0
## 4005                  No                No              0              7
## 4006                  No                No             16              0
## 4007                  No                No             14              7
## 4008                  No                No             14              0
## 4009                  No                No              3              0
## 4010                  No                No             10              0
## 4011                  No                No              4              0
## 4012                  No                No              2              0
## 4013                 Yes                No              6              0
## 4014                 Yes                No              4              7
## 4015                  No                No              3              0
## 4016                 Yes                No              2              0
## 4017                  No                No              2              0
## 4018                  No                No              9              0
## 4019                 Yes                No              9              0
## 4020                 Yes                No             10              3
## 4021                  No                No              0              8
## 4022                  No                No             10              0
## 4023                 Yes               Yes              6              3
## 4024                  No                No              4              0
## 4025                 Yes               Yes              7              0
## 4026                  No                No              8              3
## 4027                 Yes               Yes             21              0
## 4028                  No                No              3              0
## 4029                  No                No              6              0
## 4030                  No                No              6              0
## 4031                 Yes               Yes              5              0
## 4032                  No               Yes              0              7
## 4033                  No                No              5              0
## 4034                  No                No              4              0
## 4035                  No                No              2              4
## 4036                 Yes                No             10              5
## 4037                  No                No             12             13
## 4038                 Yes                No              9              9
## 4039                  No                No              1             17
## 4040                  No                No              4              0
## 4041                 Yes                No             11              5
## 4042                  No                No             17              0
## 4043                 Yes                No              5              0
## 4044                 Yes               Yes             10              4
## 4046                 Yes                No             10              3
## 4047                 Yes                No              8              0
## 4048                  No                No              5              7
## 4049                 Yes                No              5              0
## 4050                 Yes               Yes             11              0
## 4051                  No                No              0              3
## 4052                  No                No             25              5
## 4053                 Yes                No              6              5
## 4054                  No                No              2              0
## 4055                  No                No              0             14
## 4056                  No                No              6              0
## 4057                  No                No              2              0
## 4058                  No                No              4              0
## 4061                  No                No             20              0
## 4062                  No                No              2              0
## 4063                  No                No              7              0
## 4064                  No                No             10              0
## 4065                  No                No             10              0
## 4067                 Yes               Yes              0              7
## 4068                  No                No             12              0
## 4069                  No                No              3             13
## 4070                  No                No             50              0
## 4071                 Yes                No              7              0
## 4072                  No                No             21              0
## 4073                 Yes                No              5              3
## 4074                 Yes               Yes              4              0
## 4075                  No                No              0              7
## 4076                 Yes                No             11              0
## 4077                 Yes                No              7              6
## 4078                 Yes                No             12              0
## 4079                  No                No             24              0
## 4080                 Yes               Yes             10              0
## 4081                  No                No             14              0
## 4082                 Yes                No             10              0
## 4083                  No                No              3              3
## 4084                 Yes                No              5              0
## 4085                 Yes               Yes             11              0
## 4086                  No                No              0              4
## 4087                  No                No             11              0
## 4088                 Yes               Yes              3              3
## 4089                 Yes               Yes              4              0
## 4090                  No                No             15             10
## 4091                 Yes               Yes             11              0
## 4092                  No               Yes              4              0
## 4094                 Yes                No             12              6
## 4095                 Yes                No             13              0
## 4096                  No                No              0              8
## 4097                  No                No              3              0
## 4098                  No                No              2              0
## 4099                  No                No              3              0
## 4100                  No                No             12              0
## 4101                  No                No             11              0
## 4102                 Yes                No             12              0
## 4103                 Yes                No              9              4
## 4104                  No                No             15              0
## 4105                  No                No             10             20
## 4106                  No                No              7              0
## 4107                  No                No              9              0
## 4108                 Yes                No              0              7
## 4109                  No                No              5              1
## 4111                  No                No              3              7
## 4112                  No                No              6              0
## 4113                  No                No             14              0
## 4114                  No                No              5              0
## 4115                  No                No             15              0
## 4116                  No                No             13              0
## 4117                  No                No              0              7
## 4118                  No                No             15              5
## 4119                  No                No              1              0
## 4121                 Yes               Yes              7              0
## 4122                  No                No              2              0
## 4123                  No                No             15              2
## 4124                  No                No              3              0
## 4126                  No                No             15              0
## 4127                  No                No              8              3
## 4130                  No                No              7              0
## 4131                  No                No             16              0
## 4133                  No                No              0              8
## 4134                 Yes               Yes              6              0
## 4135                  No                No              7              0
## 4136                  No                No              7              0
## 4137                 Yes               Yes              7              0
## 4138                 Yes               Yes              5              0
## 4139                  No                No              2              0
## 4140                  No                No              4             10
## 4141                 Yes               Yes              7              0
## 4142                  No                No             35              0
## 4143                  No                No             10              0
## 4144                  No               Yes              6              4
## 4145                 Yes                No              6              0
## 4146                  No                No              7              0
## 4147                 Yes                No              9              0
## 4148                  No                No              2              0
## 4149                 Yes               Yes             10              5
## 4150                  No                No              6              0
## 4151                  No                No              0              7
## 4152                  No                No             16              4
## 4153                  No                No              3              0
## 4154                  No                No              8              0
## 4155                  No                No              8              0
## 4156                 Yes                No              6              3
## 4157                  No                No              7              0
## 4158                  No                No              0              4
## 4159                 Yes                No              9              0
## 4160                 Yes                No             14              4
## 4161                  No                No              9              0
## 4162                 Yes               Yes              6              0
## 4163                  No                No              2              0
## 4164                  No                No              5              0
## 4165                  No                No             15              0
## 4166                  No                No             28              0
## 4167                  No                No             14              0
## 4168                  No                No             30              0
## 4169                  No                No              3              0
## 4170                  No                No              1              0
## 4171                 Yes                No              7              0
## 4172                  No                No              6              0
## 4173                  No                No              6              0
## 4174                  No                No              0             10
## 4175                  No                No              7              7
## 4176                  No                No              6              0
## 4177                 Yes                No              4              0
## 4178                  No                No             12              2
## 4179                  No                No              2              0
## 4180                 Yes                No             15              0
## 4181                  No                No              5              1
## 4182                  No                No              3              2
## 4183                  No                No              0              4
## 4184                 Yes                No             13              0
## 4185                 Yes                No             12              5
## 4186                  No                No              5              0
## 4187                  No                No             11              0
## 4188                  No                No             13              0
## 4189                  No                No             29              0
## 4190                  No                No              4              0
## 4191                  No                No              6              3
## 4192                  No                No              0             10
## 4193                  No                No              5              1
## 4194                 Yes                No              8              0
## 4195                  No                No              0              7
## 4196                 Yes                No              7              3
## 4197                  No                No              3              0
## 4198                  No                No              4              0
## 4199                 Yes                No              5              0
## 4200                  No                No              2              0
## 4201                  No                No              2              0
## 4202                  No                No              3              0
## 4203                  No                No              9              0
## 4204                 Yes                No              6              0
## 4205                  No                No              2             11
## 4206                  No                No              3              0
## 4207                 Yes                No              5              0
## 4209                  No                No              2              0
## 4211                  No                No              0              6
## 4212                  No                No              6              0
## 4213                  No                No             56              0
## 4214                  No                No              6              0
## 4215                  No                No             15              5
## 4216                  No                No              0              8
## 4217                  No                No             29              1
## 4218                 Yes               Yes             11              0
## 4220                  No                No              0             14
## 4221                 Yes               Yes              4              3
## 4222                  No                No              4              0
## 4223                  No                No              4              0
## 4224                  No                No              5              0
## 4225                  No                No              7              3
## 4226                  No                No             12              0
## 4227                  No                No             14              0
## 4228                  No                No              6              0
## 4229                 Yes                No              6              0
## 4230                  No                No              3              0
## 4232                 Yes                No              8              4
## 4233                  No                No              7              7
## 4234                 Yes                No             10              0
## 4235                 Yes                No              5              4
## 4236                 Yes                No              9              0
## 4237                  No                No             12              5
## 4238                  No                No              0             14
## 4239                  No                No              0             14
## 4240                  No                No             10              5
## 4241                 Yes                No              9              0
## 4242                  No                No              4              0
## 4243                  No                No             12              0
## 4244                  No                No              8              5
## 4245                 Yes                No              9              5
## 4246                 Yes                No              8              7
## 4247                  No               Yes              0              4
## 4248                  No                No              0             10
## 4249                 Yes               Yes             14              0
## 4250                  No                No              4              0
## 4251                  No                No             30              0
## 4252                 Yes               Yes              6              0
## 4253                  No                No              3              0
## 4254                  No                No              5              4
## 4255                  No                No              5              0
## 4257                  No                No              6              2
## 4258                  No                No             19              0
## 4259                  No                No             11              0
## 4260                  No                No              9              0
## 4261                  No               Yes              0              7
## 4262                 Yes                No             10              0
## 4263                 Yes                No              8              2
## 4264                  No                No              0              6
## 4265                 Yes               Yes              4              0
## 4266                  No                No             46             14
## 4267                  No                No              3              0
## 4268                  No                No             11              0
## 4269                 Yes                No             10              0
## 4270                  No               Yes              7              4
## 4271                  No                No              1             21
## 4272                  No                No             20              5
## 4273                 Yes               Yes              7              0
## 4275                  No                No              2              0
## 4276                  No                No             10              4
## 4277                  No                No             11              4
## 4278                 Yes                No             10              4
## 4279                 Yes                No             16              0
## 4280                 Yes                No             12              4
## 4282                  No                No              4              0
## 4283                  No                No             56              7
## 4285                  No                No             10              2
## 4286                  No                No              6              0
## 4287                 Yes                No              8              0
## 4288                 Yes                No             16              4
## 4289                  No                No              0             14
## 4290                  No                No             10              0
## 4291                  No                No              0              5
## 4292                  No                No            122              3
## 4293                  No                No              7              0
## 4294                  No                No              7              0
## 4295                 Yes                No              7              7
## 4296                 Yes                No              5              3
## 4297                  No                No              4              0
## 4298                  No                No              4              3
## 4299                  No                No             15              0
## 4300                 Yes                No             12              0
## 4301                  No                No              2              0
## 4302                 Yes                No              7              4
## 4303                  No                No              3              0
## 4304                 Yes                No              6              0
## 4305                 Yes                No              4              0
## 4306                  No                No              2              0
## 4307                  No                No              8              0
## 4308                  No                No              2              0
## 4309                  No                No              3              0
## 4310                  No                No             14              6
## 4311                  No                No              1              7
## 4312                  No                No             19              3
## 4313                 Yes                No              4              0
## 4314                  No                No              3              0
## 4315                 Yes               Yes              7              6
## 4316                  No                No              7              0
## 4317                  No                No              8              0
## 4318                 Yes                No              3              0
## 4319                 Yes               Yes              6              5
## 4320                 Yes                No              3              0
## 4321                 Yes               Yes              3              0
## 4322                 Yes               Yes              7              0
## 4323                 Yes                No             13              0
## 4324                 Yes                No             17              0
## 4325                 Yes               Yes              7              0
## 4326                  No                No              5              0
## 4327                  No                No             11              0
## 4328                 Yes                No              5              0
## 4329                  No                No              0              7
## 4330                  No                No             60              0
## 4331                 Yes                No              7              3
## 4332                  No                No              6              0
## 4333                  No                No              3              0
## 4334                 Yes                No              3              0
## 4335                  No                No             13              0
## 4336                  No                No             14              0
## 4337                  No                No             15              4
## 4338                  No                No             13              0
## 4339                  No               Yes             34              0
## 4340                  No                No              0              7
## 4341                 Yes               Yes              8              7
## 4342                  No                No             62              0
## 4343                  No                No             11              0
## 4344                  No                No              5              0
## 4345                  No                No             10              2
## 4346                  No                No              3              0
## 4347                  No                No              0             14
## 4348                  No                No              1              0
## 4349                  No                No              5              0
## 4350                  No                No              3              0
## 4351                  No                No              7              0
## 4352                 Yes               Yes              2             10
## 4353                  No                No             36              0
## 4354                  No                No              2              0
## 4355                  No                No              3              0
## 4356                  No                No             60              0
## 4357                  No                No              2              0
## 4358                 Yes                No             10             10
## 4359                  No                No              2              0
## 4360                  No               Yes              0              7
## 4361                  No                No              7              0
## 4362                 Yes                No              9              0
## 4363                 Yes                No              7              2
## 4364                 Yes                No              5              5
## 4365                  No                No              0             10
## 4366                  No                No              0              3
## 4367                  No                No             13              8
## 4368                 Yes                No             10              0
## 4369                  No                No              0              7
## 4370                 Yes                No             13              0
## 4371                  No                No             12              0
## 4372                  No                No             30              5
## 4373                  No                No              4              1
## 4374                  No                No              4              3
## 4375                  No                No              4              0
## 4376                 Yes               Yes             12              0
## 4377                 Yes                No              5              3
## 4378                 Yes               Yes              3              0
## 4379                  No                No              1              0
## 4380                  No                No              9              0
## 4381                  No                No              8              0
## 4383                  No                No              0              6
## 4384                  No                No              6              0
## 4385                 Yes                No              4              3
## 4386                 Yes               Yes              8              0
## 4387                  No                No              6              0
## 4388                 Yes               Yes              9              0
## 4389                  No                No             14              7
## 4390                 Yes               Yes              0             15
## 4391                  No               Yes              0              7
## 4392                  No                No            365              0
## 4393                  No                No             10             10
## 4394                 Yes               Yes              5              4
## 4395                 Yes                No              7              0
## 4396                  No                No             30              5
## 4397                 Yes                No              6              0
## 4398                 Yes               Yes              6              0
## 4400                 Yes               Yes              0              7
## 4401                 Yes               Yes              6              3
## 4402                  No                No              2              6
## 4403                 Yes               Yes              9              5
## 4404                  No                No              2              0
## 4405                  No                No             14              0
## 4406                 Yes                No             12              0
## 4407                 Yes               Yes              7              0
## 4408                  No                No              1              0
## 4409                  No                No             10              5
## 4410                  No                No              6              5
## 4411                 Yes                No              7              7
## 4412                 Yes               Yes              7              8
## 4413                  No                No             55              2
## 4414                  No                No              2              0
## 4415                  No                No              2              0
## 4416                  No                No             23              0
## 4417                  No                No              7              4
## 4419                  No                No              2              0
## 4420                 Yes                No              6              0
## 4421                 Yes                No              3              4
## 4422                  No                No             10              4
## 4423                 Yes                No              0              7
## 4424                  No                No             14              0
## 4425                 Yes               Yes             12              0
## 4426                 Yes               Yes              7              4
## 4427                  No               Yes              0              7
## 4428                  No                No              3              0
## 4429                  No                No              0             15
## 4430                 Yes               Yes              7              0
## 4431                 Yes                No             12              0
## 4432                 Yes                No              9              0
## 4433                 Yes                No              7              0
## 4434                  No                No              8              0
## 4435                  No                No              3              0
## 4436                 Yes                No             14              0
## 4437                 Yes                No              5              0
## 4438                  No                No             10              0
## 4439                  No                No              3              4
## 4440                  No                No             16              0
## 4441                  No                No              8              7
## 4442                  No                No             12              3
## 4443                  No                No              7              0
## 4444                  No                No              0              4
## 4445                  No                No              4              0
## 4446                 Yes                No              7              7
## 4447                  No                No             12              0
## 4448                  No                No              2              0
## 4449                  No                No              1              0
## 4450                  No                No              0             28
## 4451                  No                No              3              0
## 4452                 Yes               Yes              7              0
## 4453                  No                No             11              6
## 4454                  No                No              0              7
## 4455                  No                No              3              0
## 4456                  No                No              4              3
## 4457                  No                No             21              0
## 4458                  No                No              2              0
## 4459                 Yes               Yes             12              2
## 4460                  No                No             14              7
## 4461                  No               Yes              0              7
## 4462                 Yes                No              8              0
## 4463                  No                No              9              0
## 4464                  No                No              0              4
## 4465                 Yes                No             13              0
## 4466                  No                No              8              0
## 4467                 Yes               Yes              6              0
## 4468                  No                No              0             12
## 4469                  No                No              7              4
## 4471                 Yes                No              4              0
## 4472                 Yes               Yes              5              6
## 4473                 Yes                No              7              0
## 4475                  No                No             17              7
## 4476                  No                No             11              0
## 4477                  No                No             13              0
## 4478                  No                No             70              0
## 4479                 Yes                No              3              3
## 4480                  No                No              2              0
## 4481                  No                No              2              0
## 4482                  No                No              3              0
## 4483                  No                No             10              0
## 4485                  No                No              3              0
## 4486                  No                No              4              0
## 4487                  No                No              3              0
## 4488                 Yes               Yes              7              0
## 4489                  No                No              0              7
## 4490                  No                No             87              2
## 4491                 Yes               Yes              5              5
## 4492                 Yes                No              7              3
## 4493                 Yes               Yes             12             12
## 4494                  No                No             14              0
## 4495                  No                No              2              0
## 4496                  No                No              3              0
## 4497                  No                No              6              0
## 4498                  No                No              2              0
## 4499                 Yes               Yes              3              4
## 4500                  No                No              7              0
## 4501                 Yes               Yes              7              0
## 4502                 Yes                No             16              0
## 4504                  No                No              2              2
## 4505                  No                No              1              3
## 4506                  No                No              2              0
## 4507                 Yes               Yes              7              7
## 4508                 Yes               Yes             12              0
## 4509                  No                No             17              4
## 4510                  No                No             16              0
## 4511                  No                No              2              0
## 4512                  No                No              0             18
## 4513                  No                No              0             14
## 4514                 Yes                No              7              5
## 4515                  No               Yes              0              6
## 4516                 Yes                No              0             21
## 4517                  No                No             50              0
## 4518                 Yes                No              6              0
## 4519                  No                No             10              0
## 4520                  No                No              0             20
## 4521                  No                No              0              9
## 4522                  No                No              6              0
## 4523                  No                No              0              7
## 4524                  No                No              7              0
## 4525                  No                No              4              5
## 4526                  No                No             20              0
## 4528                 Yes                No              6              5
## 4529                  No                No              6              0
## 4530                  No                No              5              0
## 4531                  No                No              2              0
## 4532                  No                No             11              3
## 4533                  No                No              2              0
## 4534                 Yes               Yes              7              0
## 4535                 Yes                No              5              0
## 4536                  No                No             15              6
## 4537                 Yes                No              7              0
## 4538                 Yes                No              5              0
## 4539                  No               Yes              0             14
## 4540                  No                No              4              3
## 4541                  No                No              3              0
## 4542                  No                No              7              0
## 4543                 Yes                No              7              3
## 4545                  No                No              2              0
## 4546                 Yes                No             17              0
## 4547                  No                No             10              8
## 4548                  No                No              3              0
## 4549                 Yes               Yes              0              3
## 4550                  No                No             20              7
## 4551                  No                No             10              4
## 4552                  No                No             11              4
## 4553                  No                No             10              0
## 4554                  No                No              6              0
## 4555                  No                No              0              7
## 4556                  No                No              0             14
## 4557                  No                No              0              7
## 4558                 Yes               Yes              7              0
## 4559                  No                No              7              3
## 4560                  No                No              0             10
## 4561                  No                No              7              3
## 4562                  No                No              1              0
## 4563                  No               Yes              0              4
## 4564                 Yes                No             12              0
## 4565                  No                No              0              7
## 4566                 Yes               Yes              7              6
## 4567                  No                No              0              7
## 4568                 Yes                No              5              0
## 4569                  No                No             11              0
## 4570                  No                No              1              0
## 4571                  No                No              5              0
## 4572                  No                No              2              0
## 4573                  No                No             15              0
## 4574                 Yes                No              7              0
## 4575                 Yes                No              2              0
## 4577                  No                No             21              0
## 4578                  No                No              3              0
## 4579                  No                No              1              0
## 4580                  No                No              4              0
## 4581                  No                No              0              3
## 4582                  No                No              3              0
## 4583                 Yes                No             11              0
## 4584                  No                No              7              0
## 4585                  No                No              0              7
## 4586                  No                No              3              0
## 4587                 Yes               Yes              6              4
## 4588                 Yes               Yes             12              0
## 4589                 Yes                No              6              0
## 4590                  No                No              4              0
## 4591                 Yes               Yes              8              9
## 4592                  No                No              1              0
## 4593                 Yes                No              5              0
## 4594                 Yes                No              7              7
## 4595                  No                No             10              0
## 4596                  No                No              7              0
## 4597                  No                No              7             21
## 4598                 Yes                No              6              0
## 4599                  No                No              2              0
## 4600                  No                No             12              3
## 4601                  No                No              4              0
## 4602                  No                No             10             20
## 4603                 Yes                No              9              0
## 4604                 Yes               Yes             10              4
## 4605                  No               Yes              0              7
## 4606                  No                No              5              0
## 4607                  No                No             20              0
## 4608                 Yes                No             16              0
## 4609                  No                No              6              3
## 4610                  No                No             17              3
## 4611                  No                No             14              0
## 4612                  No                No              8              5
## 4615                 Yes                No              4              4
## 4616                 Yes               Yes              7              3
## 4617                  No                No              0             23
## 4618                  No                No              0             13
## 4619                  No                No             10              0
## 4620                 Yes                No              5              0
## 4621                  No                No              4              0
## 4622                  No                No              3              0
## 4623                  No                No              6              0
## 4624                  No                No             13              0
## 4625                  No                No              0             45
## 4626                  No                No              3              0
## 4627                 Yes               Yes              7              0
## 4628                  No                No              2              0
## 4629                  No                No             10              0
## 4630                 Yes                No             10              0
## 4631                  No                No              3              0
## 4633                  No                No              2              0
## 4634                  No                No              4              0
## 4635                  No                No              1              0
## 4636                 Yes               Yes              7              0
## 4637                  No                No              4              0
## 4638                 Yes               Yes              3              0
## 4639                  No                No              4              0
## 4640                 Yes                No             11              0
## 4641                  No                No             14              0
## 4642                 Yes               Yes             12              0
## 4643                  No                No             14              0
## 4644                 Yes               Yes              3              4
## 4645                  No                No             11              5
## 4646                 Yes               Yes              5              0
## 4647                 Yes               Yes              0              7
## 4648                 Yes               Yes              9              0
## 4649                  No                No              3              0
## 4650                  No               Yes            240              0
## 4651                  No                No              3              0
## 4652                 Yes                No              0              5
## 4654                  No                No             60              0
## 4655                  No                No              1              0
## 4657                  No                No             10              0
## 4658                 Yes               Yes              8              0
## 4660                 Yes                No              7              0
## 4661                  No                No              0              8
## 4662                  No                No             35              0
## 4663                 Yes               Yes             12              0
## 4664                  No                No              9              0
## 4665                  No                No             60              0
## 4666                  No                No             21              0
## 4667                 Yes               Yes              7              0
## 4670                  No                No              7             10
## 4671                 Yes               Yes              8              0
## 4672                  No                No              0              7
## 4673                  No                No              1              6
## 4674                 Yes                No              5              0
## 4675                  No                No             19              2
## 4676                 Yes                No             18              0
## 4677                  No                No              4              0
## 4678                  No               Yes              0             11
## 4679                 Yes                No              6              0
## 4680                  No                No              4              0
## 4681                  No                No              9              0
## 4682                  No                No              6              0
## 4683                  No                No              3              0
## 4684                 Yes                No              8              0
## 4685                  No                No              2              0
## 4687                  No                No              0              7
## 4688                 Yes               Yes             12              0
## 4689                  No                No              4              0
## 4690                  No                No             16              4
## 4691                  No                No             11              0
## 4692                 Yes               Yes              6              0
## 4693                  No                No             25              3
## 4694                  No                No              1              1
## 4695                  No                No             13              8
## 4696                  No                No             10              5
## 4697                 Yes                No              7              7
## 4698                  No                No              2              0
## 4699                  No                No              2              0
## 4700                  No                No              2              0
## 4701                 Yes               Yes             10              6
## 4703                  No                No            210              3
## 4704                  No                No              8              5
## 4705                 Yes                No              7              2
## 4706                  No                No              2              0
## 4707                  No                No              0              7
## 4708                  No                No              2              0
## 4709                  No                No              5              0
## 4710                  No                No             39              1
## 4712                  No                No              0             14
## 4713                 Yes                No              8              0
## 4714                  No                No              2              0
## 4715                  No                No              0              8
## 4716                  No                No              1              0
## 4717                  No                No              7              0
## 4718                  No                No              6              0
## 4719                  No                No              2              0
## 4720                  No                No              0              7
## 4721                 Yes                No             12              0
## 4722                 Yes                No             14              4
## 4723                 Yes                No              0              6
## 4724                  No                No              7              0
## 4725                 Yes                No             16              0
## 4727                  No               Yes              0              4
## 4728                  No                No              4              0
## 4729                  No                No              0             14
## 4731                  No                No             30              0
## 4732                  No                No              5              0
## 4733                  No                No             14              0
## 4734                 Yes               Yes              8              0
## 4735                 Yes               Yes              5              0
## 4736                  No                No             21              0
## 4737                  No                No              0              5
## 4738                  No                No              3              0
## 4739                 Yes               Yes              5              2
## 4740                 Yes               Yes              7              0
## 4741                  No                No             26              4
## 4742                  No                No             56              0
## 4743                  No                No             69              7
## 4744                  No                No              1              0
## 4745                 Yes                No              4              0
## 4746                 Yes               Yes              0              7
## 4748                  No                No              9             51
## 4749                  No               Yes              6              3
## 4750                  No                No             24              2
## 4751                  No                No             15              5
## 4752                  No                No             18              0
## 4754                  No                No              4              0
## 4755                 Yes                No              7              4
## 4756                  No                No              9              0
## 4757                 Yes               Yes              0             10
## 4759                  No                No              2              0
## 4760                  No                No             14              0
## 4761                  No                No              2              9
## 4762                 Yes                No              2              0
## 4763                  No                No              4              0
## 4764                  No                No              0              4
## 4765                  No                No              5              0
## 4766                 Yes                No              9              4
## 4767                  No                No             10              6
## 4768                  No                No             10             10
## 4769                  No                No              5              0
## 4770                  No                No             14              0
## 4771                 Yes                No             13              0
## 4773                 Yes               Yes              6              3
## 4774                 Yes               Yes              0              8
## 4775                  No                No              4              0
## 4776                  No                No             12              0
## 4777                  No               Yes              0              7
## 4778                 Yes               Yes              0             12
## 4779                  No                No              5              0
## 4780                  No                No              3              0
## 4781                  No                No              0             14
## 4782                 Yes               Yes              0              7
## 4783                  No                No              9              0
## 4784                 Yes                No              5              5
## 4785                  No                No              0              9
## 4787                  No                No              6              0
## 4788                 Yes               Yes             15              6
## 4789                  No                No              2              0
## 4790                  No                No              0              7
## 4791                  No                No              4              0
## 4792                  No                No              8              2
## 4793                  No                No              7              0
## 4794                  No                No              0             14
## 4795                 Yes               Yes              7              3
## 4796                  No                No              0              7
## 4797                 Yes                No             10              4
## 4798                  No                No             11              0
## 4799                  No                No             14              0
## 4800                  No                No              3              4
## 4801                  No                No            180              0
## 4802                  No                No              9              0
## 4803                 Yes                No             16              0
## 4804                 Yes               Yes              0              6
## 4805                 Yes                No              6              0
## 4806                  No                No              1              0
## 4807                  No                No              2              0
## 4808                  No               Yes             15              0
## 4809                  No                No             22              0
## 4810                  No                No              2              0
## 4811                  No                No             20              0
## 4812                 Yes               Yes              0             15
## 4813                  No                No              0             14
## 4815                  No                No             16             12
## 4817                 Yes                No              5              0
## 4818                 Yes                No             16              2
## 4820                  No                No              4              3
## 4821                 Yes               Yes              7              0
## 4822                 Yes               Yes              0              7
## 4823                  No                No              0              9
## 4824                  No                No              4              0
## 4825                  No                No             17              2
## 4826                 Yes               Yes              7              6
## 4827                  No                No             14              6
## 4828                 Yes                No              6              0
## 4829                  No                No             21              0
## 4830                 Yes                No              8              0
## 4831                  No                No              4              0
## 4832                  No                No             15              0
## 4833                  No                No              7              0
## 4834                  No                No              3              1
## 4835                  No                No              2              0
## 4836                  No                No             16              0
## 4837                  No                No             30             17
## 4838                  No                No              2              0
## 4839                 Yes                No              7              7
## 4840                  No                No              4              0
## 4841                  No                No              2              0
## 4842                 Yes               Yes              7              7
## 4843                 Yes                No              4              3
## 4844                  No                No              6              0
## 4845                  No                No              8              0
## 4846                  No                No              0              7
## 4847                 Yes                No              7              0
## 4848                  No                No              0              7
## 4849                  No                No             20              0
## 4850                  No                No              0              7
## 4851                  No                No              7              0
## 4852                  No                No             14              0
## 4853                 Yes               Yes             30              3
## 4854                  No                No              6              0
## 4855                  No                No             12              0
##      first_trip_tz cost_category total
## 1              Yes     High Cost     2
## 2              Yes     High Cost     2
## 3              Yes   Higher Cost     2
## 4               No    Lower Cost     4
## 5              Yes   Higher Cost     1
## 6              Yes     High Cost     2
## 7              Yes   Normal Cost     2
## 8              Yes      Low Cost     1
## 9              Yes   Normal Cost     1
## 10             Yes   Higher Cost     2
## 11             Yes   Higher Cost     1
## 12              No   Higher Cost     3
## 13              No   Higher Cost     4
## 14             Yes   Higher Cost     2
## 15              No     High Cost     1
## 16              No   Normal Cost     1
## 17              No   Normal Cost     1
## 18             Yes   Normal Cost     2
## 19             Yes   Higher Cost     1
## 20             Yes     High Cost     1
## 21             Yes   Normal Cost     1
## 22             Yes      Low Cost     1
## 23              No      Low Cost     1
## 24             Yes   Normal Cost     1
## 26             Yes     High Cost     2
## 27              No    Lower Cost     1
## 28              No    Lower Cost     1
## 29             Yes      Low Cost     2
## 30              No   Normal Cost     4
## 31             Yes   Higher Cost     2
## 32             Yes     High Cost     3
## 33              No  Highest Cost    12
## 34              No   Normal Cost     1
## 35             Yes     High Cost     2
## 36             Yes   Higher Cost     2
## 37             Yes     High Cost     1
## 38             Yes   Normal Cost     2
## 39              No    Lower Cost     1
## 40              No   Higher Cost     4
## 41              No    Lower Cost     1
## 42             Yes   Higher Cost     2
## 43              No    Lower Cost     1
## 44             Yes   Normal Cost     1
## 45             Yes     High Cost     2
## 46             Yes   Normal Cost     1
## 47              No    Lower Cost     1
## 48              No  Highest Cost     2
## 49             Yes   Normal Cost     1
## 50              No     High Cost     1
## 51             Yes   Normal Cost     2
## 52              No   Normal Cost     2
## 53             Yes   Higher Cost     3
## 54             Yes   Normal Cost     1
## 55              No   Normal Cost     1
## 56             Yes      Low Cost     1
## 57              No   Higher Cost     1
## 58              No   Normal Cost     1
## 59             Yes   Higher Cost     2
## 60              No      Low Cost     1
## 61             Yes    Lower Cost     2
## 62             Yes   Normal Cost     3
## 63             Yes   Normal Cost     2
## 64             Yes   Higher Cost     4
## 65              No   Normal Cost     2
## 66              No   Normal Cost     5
## 67              No    Lower Cost     3
## 68              No    Lower Cost     1
## 69             Yes   Higher Cost     2
## 70             Yes   Normal Cost     2
## 71             Yes   Higher Cost     3
## 72              No     High Cost     3
## 73             Yes   Higher Cost     4
## 74             Yes    Lower Cost     2
## 75              No     High Cost     1
## 76              No   Higher Cost     3
## 77             Yes   Higher Cost     2
## 78             Yes   Higher Cost     2
## 79             Yes   Higher Cost     1
## 80             Yes     High Cost     1
## 81             Yes   Normal Cost     1
## 83             Yes      Low Cost     2
## 84             Yes   Normal Cost     1
## 85             Yes     High Cost     7
## 86             Yes     High Cost     7
## 87             Yes   Higher Cost     4
## 88             Yes   Higher Cost     2
## 89              No      Low Cost     2
## 90              No   Normal Cost     1
## 91              No   Normal Cost     9
## 92             Yes   Higher Cost     2
## 93             Yes     High Cost     1
## 94             Yes     High Cost     1
## 96             Yes    Lower Cost     1
## 97              No    Lower Cost     1
## 98             Yes   Higher Cost     2
## 99             Yes      Low Cost     1
## 100             No    Lower Cost     4
## 101            Yes   Higher Cost    93
## 102            Yes   Normal Cost     2
## 103             No    Lower Cost     1
## 104             No   Normal Cost     1
## 105            Yes     High Cost     2
## 106            Yes     High Cost     4
## 107            Yes     High Cost     1
## 108            Yes     High Cost     2
## 109            Yes   Normal Cost     2
## 110            Yes   Higher Cost     1
## 111            Yes   Higher Cost     5
## 112            Yes      Low Cost     1
## 113            Yes      Low Cost     1
## 114            Yes   Higher Cost     2
## 115            Yes     High Cost     2
## 117            Yes   Normal Cost     2
## 118            Yes   Higher Cost     2
## 119             No     High Cost     1
## 120             No     High Cost     1
## 121            Yes     High Cost     1
## 123             No    Lower Cost     1
## 124             No    Lower Cost     1
## 125            Yes   Normal Cost     1
## 126             No    Lower Cost     3
## 127             No   Normal Cost     1
## 128             No    Lower Cost     1
## 129            Yes   Higher Cost     2
## 130            Yes     High Cost     2
## 131             No    Lower Cost     1
## 132             No   Normal Cost     1
## 133            Yes     High Cost     1
## 134             No     High Cost     3
## 135            Yes   Normal Cost     4
## 136            Yes     High Cost    12
## 138            Yes   Normal Cost     1
## 139             No   Higher Cost     2
## 140             No     High Cost     2
## 141            Yes   Higher Cost     2
## 142            Yes    Lower Cost     1
## 143            Yes     High Cost     2
## 144            Yes   Normal Cost     1
## 145            Yes   Normal Cost     1
## 146             No   Normal Cost     1
## 147            Yes   Normal Cost     2
## 148            Yes   Higher Cost     7
## 149            Yes     High Cost     5
## 150            Yes   Normal Cost     1
## 151             No    Lower Cost     1
## 152            Yes     High Cost     1
## 153            Yes   Higher Cost     2
## 154             No   Normal Cost     1
## 155             No   Normal Cost     1
## 156            Yes     High Cost     2
## 157            Yes   Normal Cost     2
## 158             No   Higher Cost     1
## 159            Yes   Higher Cost     3
## 160            Yes   Normal Cost     1
## 161            Yes     High Cost     1
## 162            Yes     High Cost     1
## 163            Yes   Higher Cost     2
## 164            Yes     High Cost     3
## 165            Yes  Highest Cost     3
## 166            Yes     High Cost     3
## 167            Yes   Higher Cost     3
## 168            Yes   Higher Cost     2
## 169             No   Normal Cost     1
## 170            Yes    Lower Cost     1
## 171             No      Low Cost     1
## 173            Yes   Higher Cost     2
## 174            Yes    Lower Cost     1
## 175             No   Normal Cost     8
## 176            Yes  Highest Cost     2
## 177            Yes    Lower Cost     1
## 178            Yes     High Cost     1
## 179            Yes     High Cost     2
## 180            Yes      Low Cost     1
## 181             No     High Cost     2
## 182            Yes      Low Cost     1
## 183            Yes     High Cost     1
## 184            Yes     High Cost     2
## 185            Yes   Higher Cost     1
## 186             No   Normal Cost     2
## 187            Yes     High Cost     1
## 188            Yes   Normal Cost     1
## 189            Yes   Higher Cost     1
## 190            Yes   Higher Cost     2
## 191             No     High Cost     3
## 192            Yes   Normal Cost     1
## 193            Yes   Normal Cost     1
## 194            Yes     High Cost     2
## 195            Yes   Higher Cost     2
## 196             No   Normal Cost     1
## 197            Yes      Low Cost     2
## 198             No    Lower Cost     2
## 199             No   Higher Cost     2
## 200            Yes     High Cost     2
## 201            Yes    Lower Cost     1
## 202            Yes  Highest Cost     2
## 203            Yes     High Cost     2
## 204            Yes   Normal Cost     1
## 205            Yes   Normal Cost     1
## 206            Yes     High Cost     2
## 207             No     High Cost     4
## 208            Yes     High Cost     1
## 209            Yes   Higher Cost     2
## 210            Yes   Normal Cost     1
## 211             No     High Cost     1
## 212            Yes     High Cost     1
## 213            Yes   Higher Cost     2
## 214             No    Lower Cost     1
## 215             No   Normal Cost     1
## 216            Yes     High Cost     4
## 217            Yes   Higher Cost     2
## 218            Yes   Normal Cost     3
## 219            Yes     High Cost     2
## 220             No     High Cost     2
## 221            Yes   Higher Cost     3
## 222            Yes   Higher Cost     3
## 223            Yes   Normal Cost     2
## 224             No      Low Cost     4
## 225            Yes   Higher Cost     2
## 226             No   Normal Cost     1
## 228             No   Normal Cost     1
## 229             No   Normal Cost     3
## 230            Yes   Normal Cost     1
## 231            Yes   Normal Cost     3
## 232             No    Lower Cost     1
## 233             No   Normal Cost     1
## 234            Yes     High Cost     1
## 235            Yes      Low Cost     1
## 237            Yes  Highest Cost     5
## 238             No   Normal Cost     2
## 239             No    Lower Cost     1
## 241             No   Normal Cost     1
## 242            Yes     High Cost     2
## 243            Yes   Normal Cost     1
## 244            Yes    Lower Cost     1
## 245            Yes   Higher Cost     1
## 246            Yes   Higher Cost     3
## 247            Yes     High Cost     2
## 248             No   Higher Cost     2
## 249            Yes     High Cost     2
## 250            Yes     High Cost     2
## 251            Yes   Normal Cost     1
## 252            Yes     High Cost     2
## 253            Yes   Higher Cost     6
## 254             No   Higher Cost     2
## 255            Yes   Higher Cost     3
## 256             No   Normal Cost     2
## 257            Yes      Low Cost     2
## 258            Yes   Higher Cost     3
## 259            Yes   Higher Cost     1
## 260            Yes     High Cost     1
## 261            Yes   Higher Cost     2
## 262            Yes   Higher Cost     2
## 264            Yes   Normal Cost     4
## 265            Yes   Higher Cost     2
## 266             No   Higher Cost     2
## 267             No   Normal Cost     2
## 268            Yes   Higher Cost     4
## 269            Yes   Higher Cost     5
## 270            Yes    Lower Cost     1
## 271            Yes   Normal Cost     2
## 272            Yes      Low Cost     2
## 273            Yes   Higher Cost     4
## 274            Yes     High Cost     3
## 275             No   Normal Cost     1
## 276            Yes   Higher Cost     1
## 277            Yes    Lower Cost     1
## 278            Yes      Low Cost     1
## 279            Yes      Low Cost     1
## 280             No    Lower Cost     3
## 282            Yes     High Cost     2
## 283             No   Normal Cost     2
## 284            Yes     High Cost     2
## 285             No     High Cost     1
## 286            Yes   Normal Cost     1
## 287            Yes   Higher Cost     2
## 288            Yes   Normal Cost     1
## 289            Yes    Lower Cost     1
## 290            Yes      Low Cost     1
## 291             No     High Cost     1
## 292            Yes     High Cost     1
## 293             No    Lower Cost     1
## 294            Yes      Low Cost     1
## 295            Yes   Higher Cost     4
## 296            Yes     High Cost     2
## 297            Yes      Low Cost     1
## 298            Yes   Normal Cost     1
## 299             No      Low Cost     1
## 300             No    Lower Cost     2
## 302             No    Lower Cost     1
## 303            Yes     High Cost     2
## 305             No   Higher Cost     5
## 306             No    Lower Cost     1
## 307             No    Lower Cost     1
## 308             No   Normal Cost     1
## 309            Yes   Higher Cost     2
## 310            Yes   Higher Cost     1
## 311            Yes   Higher Cost     2
## 312             No   Normal Cost     5
## 313             No   Normal Cost     1
## 314             No   Higher Cost     2
## 315            Yes     High Cost     3
## 316            Yes      Low Cost     1
## 320            Yes    Lower Cost     1
## 321             No   Normal Cost     2
## 322            Yes     High Cost     2
## 323             No   Normal Cost     1
## 324             No   Normal Cost     3
## 325             No   Normal Cost     1
## 326             No    Lower Cost     1
## 327            Yes     High Cost     2
## 328            Yes   Higher Cost     2
## 329            Yes   Normal Cost     1
## 330             No    Lower Cost     1
## 331            Yes   Higher Cost     1
## 332            Yes  Highest Cost    10
## 333            Yes     High Cost     2
## 334            Yes     High Cost     1
## 335             No     High Cost     3
## 336            Yes   Normal Cost     1
## 337            Yes      Low Cost     3
## 338            Yes   Higher Cost     2
## 339             No      Low Cost     1
## 340            Yes     High Cost     1
## 341            Yes     High Cost     2
## 342            Yes   Normal Cost     2
## 343            Yes   Normal Cost     1
## 344             No   Higher Cost     4
## 345             No     High Cost     2
## 346            Yes     High Cost     2
## 347            Yes     High Cost     2
## 348             No    Lower Cost     3
## 349            Yes    Lower Cost     1
## 350            Yes     High Cost     2
## 351            Yes   Higher Cost     2
## 352            Yes   Normal Cost     1
## 354             No    Lower Cost     1
## 355            Yes   Normal Cost     1
## 356            Yes     High Cost     2
## 357            Yes     High Cost     2
## 358            Yes     High Cost     2
## 359            Yes   Higher Cost     2
## 360            Yes    Lower Cost     2
## 361            Yes   Higher Cost     2
## 362            Yes   Higher Cost     3
## 363            Yes     High Cost     2
## 364            Yes   Higher Cost     4
## 365             No    Lower Cost     2
## 366             No    Lower Cost     1
## 367            Yes   Normal Cost     1
## 368            Yes      Low Cost     1
## 369            Yes   Higher Cost     2
## 370            Yes   Higher Cost     5
## 371            Yes     High Cost     2
## 372            Yes      Low Cost     1
## 373            Yes   Higher Cost     2
## 374             No   Normal Cost     1
## 375            Yes     High Cost     3
## 376            Yes   Higher Cost     2
## 377             No    Lower Cost     2
## 378            Yes     High Cost     2
## 379             No   Normal Cost     1
## 380             No   Normal Cost     3
## 381            Yes   Normal Cost     1
## 382             No    Lower Cost     1
## 383            Yes    Lower Cost     1
## 384            Yes    Lower Cost     1
## 385             No      Low Cost     1
## 386             No   Higher Cost     2
## 387            Yes      Low Cost     2
## 388             No   Normal Cost     1
## 389             No      Low Cost     1
## 390            Yes    Lower Cost    12
## 391             No   Normal Cost     1
## 392            Yes   Higher Cost     2
## 393            Yes     High Cost     2
## 394            Yes   Normal Cost     1
## 396            Yes   Higher Cost     1
## 397             No   Normal Cost     1
## 398            Yes   Normal Cost     4
## 399            Yes     High Cost     2
## 400             No   Normal Cost     1
## 401            Yes   Normal Cost     2
## 402             No   Normal Cost     1
## 403            Yes   Higher Cost     2
## 404            Yes      Low Cost     1
## 405            Yes   Normal Cost     1
## 406             No   Normal Cost     2
## 407            Yes     High Cost     1
## 408             No      Low Cost     1
## 409            Yes   Higher Cost     2
## 410            Yes   Normal Cost     1
## 411            Yes  Highest Cost     1
## 412             No   Normal Cost     1
## 413            Yes   Normal Cost     2
## 414             No      Low Cost     1
## 415             No    Lower Cost     2
## 416            Yes     High Cost    11
## 417            Yes   Normal Cost     1
## 418            Yes     High Cost     2
## 419             No   Higher Cost     1
## 420            Yes   Normal Cost     2
## 422            Yes   Higher Cost     2
## 423            Yes    Lower Cost     1
## 424             No   Normal Cost    10
## 426             No      Low Cost     1
## 427            Yes    Lower Cost     2
## 428            Yes  Highest Cost     1
## 429             No   Higher Cost     1
## 430             No   Normal Cost     1
## 431            Yes   Higher Cost     2
## 432             No   Higher Cost     4
## 433             No      Low Cost     1
## 435            Yes     High Cost     2
## 436            Yes   Normal Cost     1
## 437            Yes     High Cost     1
## 439             No      Low Cost     1
## 440            Yes   Normal Cost     2
## 441            Yes   Normal Cost     2
## 442             No   Normal Cost     1
## 443            Yes   Normal Cost     2
## 444            Yes   Normal Cost     2
## 445            Yes     High Cost     2
## 446            Yes   Higher Cost     8
## 447            Yes   Normal Cost     1
## 448            Yes    Lower Cost     2
## 449            Yes   Higher Cost     1
## 450            Yes   Higher Cost     2
## 451            Yes     High Cost     2
## 452             No   Normal Cost     1
## 453             No   Normal Cost     2
## 454            Yes    Lower Cost     1
## 456            Yes    Lower Cost     1
## 457            Yes   Normal Cost     1
## 458            Yes   Higher Cost     2
## 459            Yes   Higher Cost     1
## 460             No    Lower Cost     2
## 461             No    Lower Cost     1
## 462            Yes     High Cost     2
## 463            Yes   Higher Cost     3
## 464            Yes   Normal Cost     2
## 465            Yes   Higher Cost     2
## 466            Yes   Normal Cost     1
## 467            Yes     High Cost     1
## 468            Yes   Higher Cost     3
## 469            Yes   Normal Cost     1
## 470             No   Higher Cost     5
## 471            Yes    Lower Cost     1
## 472            Yes      Low Cost     1
## 473            Yes   Higher Cost     2
## 474             No     High Cost     3
## 475            Yes   Higher Cost     2
## 476            Yes   Higher Cost     2
## 477            Yes     High Cost     2
## 478            Yes   Higher Cost     2
## 479            Yes   Normal Cost     2
## 480             No     High Cost     2
## 481             No   Normal Cost     1
## 482            Yes   Normal Cost     1
## 483             No     High Cost     2
## 484            Yes   Normal Cost     1
## 485             No   Normal Cost     1
## 486            Yes   Normal Cost     2
## 487            Yes     High Cost     3
## 488            Yes   Higher Cost     2
## 489            Yes   Higher Cost     5
## 490             No   Normal Cost     1
## 491            Yes   Normal Cost     1
## 492             No    Lower Cost     2
## 493            Yes   Normal Cost     3
## 494            Yes   Higher Cost     2
## 495             No   Higher Cost     4
## 497            Yes     High Cost     4
## 498             No   Higher Cost     2
## 499            Yes   Higher Cost     2
## 500            Yes    Lower Cost     1
## 501            Yes     High Cost     1
## 502            Yes     High Cost     2
## 503            Yes   Higher Cost     2
## 504            Yes      Low Cost     1
## 505            Yes    Lower Cost     1
## 506            Yes     High Cost     1
## 507             No    Lower Cost     1
## 508            Yes     High Cost     2
## 509            Yes   Higher Cost     7
## 510             No    Lower Cost     1
## 511            Yes     High Cost     2
## 512            Yes   Higher Cost     2
## 513            Yes   Normal Cost     1
## 514            Yes    Lower Cost     1
## 515            Yes   Higher Cost     2
## 516            Yes   Higher Cost     2
## 517            Yes   Normal Cost     2
## 518            Yes     High Cost     2
## 519             No   Normal Cost     1
## 520            Yes   Higher Cost     1
## 521            Yes   Normal Cost     4
## 522            Yes   Higher Cost     2
## 523            Yes    Lower Cost     1
## 524            Yes   Higher Cost     1
## 526            Yes     High Cost     1
## 527            Yes   Normal Cost     1
## 528            Yes     High Cost     1
## 529            Yes     High Cost     2
## 530            Yes   Normal Cost    14
## 531            Yes     High Cost     2
## 532            Yes      Low Cost     1
## 533            Yes   Higher Cost     2
## 534            Yes     High Cost     1
## 535            Yes     High Cost     1
## 536            Yes   Higher Cost     2
## 537            Yes   Higher Cost     2
## 538            Yes   Higher Cost     2
## 539            Yes   Higher Cost     1
## 540            Yes   Higher Cost     5
## 541            Yes     High Cost     1
## 542            Yes    Lower Cost     1
## 543            Yes   Normal Cost     1
## 544             No    Lower Cost     1
## 545            Yes   Normal Cost     2
## 546            Yes   Normal Cost     2
## 547             No      Low Cost     1
## 548            Yes   Normal Cost     1
## 549             No   Normal Cost     2
## 550             No   Normal Cost     1
## 551            Yes   Normal Cost     1
## 552             No     High Cost     2
## 553            Yes   Higher Cost     2
## 554            Yes     High Cost     1
## 555             No   Normal Cost     1
## 556            Yes   Higher Cost     2
## 557             No    Lower Cost     1
## 558             No      Low Cost     1
## 559            Yes   Higher Cost     2
## 560            Yes   Higher Cost     2
## 561            Yes   Higher Cost     5
## 562            Yes   Higher Cost     1
## 563            Yes   Normal Cost     2
## 564            Yes   Normal Cost     2
## 565            Yes   Higher Cost     2
## 566            Yes   Normal Cost     1
## 567            Yes   Higher Cost     2
## 568            Yes     High Cost     1
## 570            Yes   Normal Cost     1
## 571             No   Normal Cost     1
## 572            Yes   Higher Cost     2
## 573            Yes   Higher Cost     2
## 574            Yes   Higher Cost     1
## 575            Yes   Higher Cost     4
## 576            Yes     High Cost     3
## 577             No   Normal Cost     1
## 578            Yes     High Cost     1
## 579            Yes     High Cost     1
## 581             No   Normal Cost     2
## 582             No    Lower Cost     1
## 583            Yes   Higher Cost     1
## 584             No      Low Cost     1
## 585            Yes    Lower Cost     1
## 586            Yes   Higher Cost     2
## 587            Yes   Higher Cost     2
## 588             No      Low Cost     1
## 589             No   Normal Cost     1
## 590             No     High Cost     1
## 591            Yes   Higher Cost     5
## 592            Yes   Higher Cost     2
## 593             No   Normal Cost     2
## 594            Yes     High Cost     3
## 595             No    Lower Cost     1
## 596            Yes     High Cost     1
## 597             No   Normal Cost     1
## 598            Yes     High Cost     2
## 599            Yes     High Cost     1
## 600            Yes   Higher Cost     1
## 601            Yes   Higher Cost     2
## 602            Yes   Normal Cost     2
## 603             No    Lower Cost     4
## 604            Yes   Higher Cost     2
## 605            Yes     High Cost     1
## 606            Yes     High Cost     1
## 607            Yes  Highest Cost    16
## 608            Yes     High Cost     2
## 609             No   Higher Cost     2
## 611            Yes   Normal Cost     4
## 612            Yes    Lower Cost     2
## 613             No      Low Cost     1
## 614            Yes     High Cost     2
## 615            Yes    Lower Cost     1
## 616            Yes   Normal Cost     2
## 617             No      Low Cost     1
## 618            Yes     High Cost     1
## 619             No     High Cost     2
## 620            Yes   Higher Cost     8
## 621            Yes     High Cost     2
## 622             No     High Cost     2
## 624             No     High Cost     5
## 625            Yes    Lower Cost     1
## 626            Yes   Higher Cost     1
## 627            Yes    Lower Cost     1
## 628            Yes   Normal Cost     2
## 629            Yes   Higher Cost     2
## 631             No      Low Cost     1
## 632            Yes     High Cost     1
## 633            Yes      Low Cost     2
## 634            Yes      Low Cost     1
## 635            Yes    Lower Cost     1
## 636            Yes     High Cost     2
## 638            Yes     High Cost     2
## 639            Yes     High Cost     2
## 640            Yes   Normal Cost     1
## 641             No      Low Cost     1
## 642             No     High Cost     5
## 643            Yes   Normal Cost     1
## 644             No     High Cost     5
## 645            Yes   Higher Cost     2
## 646            Yes   Higher Cost     2
## 647            Yes   Higher Cost     2
## 648            Yes   Normal Cost     5
## 649            Yes   Higher Cost     2
## 650            Yes   Normal Cost     1
## 651            Yes    Lower Cost     1
## 652            Yes     High Cost     1
## 653            Yes     High Cost     2
## 654             No     High Cost     1
## 655            Yes     High Cost     2
## 656            Yes   Higher Cost     4
## 657            Yes   Normal Cost     2
## 658            Yes     High Cost     5
## 659            Yes   Normal Cost     2
## 660            Yes     High Cost     1
## 661             No   Normal Cost     2
## 662             No   Normal Cost     2
## 663            Yes   Higher Cost     4
## 664             No      Low Cost     1
## 665             No   Normal Cost     2
## 666            Yes    Lower Cost     1
## 667            Yes   Normal Cost     2
## 669            Yes   Normal Cost     1
## 670            Yes     High Cost     3
## 671            Yes   Normal Cost     1
## 672            Yes   Higher Cost     2
## 673            Yes   Normal Cost     2
## 674            Yes   Higher Cost     2
## 675            Yes      Low Cost     1
## 676            Yes   Higher Cost     4
## 677            Yes   Higher Cost     5
## 678             No    Lower Cost     1
## 679             No     High Cost     2
## 680             No      Low Cost     1
## 681            Yes   Normal Cost     2
## 682            Yes    Lower Cost     1
## 683             No    Lower Cost     1
## 684            Yes   Higher Cost     2
## 685            Yes   Higher Cost     2
## 686             No    Lower Cost     1
## 688            Yes     High Cost    27
## 690            Yes   Higher Cost     1
## 691            Yes   Higher Cost     4
## 692            Yes   Higher Cost     2
## 693             No    Lower Cost     1
## 694            Yes   Higher Cost     2
## 695             No   Higher Cost     2
## 696             No   Normal Cost     2
## 697            Yes     High Cost     2
## 698            Yes   Normal Cost     2
## 699            Yes   Higher Cost     1
## 700            Yes   Higher Cost     2
## 701            Yes      Low Cost     2
## 702            Yes   Normal Cost     2
## 703            Yes   Normal Cost     4
## 704             No   Normal Cost     1
## 705            Yes   Normal Cost     2
## 706             No   Higher Cost     3
## 707            Yes   Higher Cost     3
## 708             No     High Cost     2
## 709            Yes    Lower Cost     2
## 710            Yes     High Cost     1
## 711            Yes   Higher Cost     1
## 712            Yes  Highest Cost     3
## 713             No    Lower Cost     1
## 714            Yes  Highest Cost     8
## 715             No    Lower Cost     1
## 716            Yes   Higher Cost     2
## 717             No   Normal Cost     1
## 718            Yes   Higher Cost     6
## 719             No     High Cost     2
## 720             No   Higher Cost     2
## 721            Yes   Higher Cost     2
## 722            Yes   Higher Cost     2
## 723             No  Highest Cost    12
## 724            Yes    Lower Cost     1
## 725            Yes   Higher Cost     2
## 726            Yes   Normal Cost     2
## 727            Yes      Low Cost     1
## 728             No   Normal Cost     1
## 729            Yes   Higher Cost     2
## 731            Yes     High Cost     1
## 732             No      Low Cost     1
## 733            Yes     High Cost     1
## 734            Yes   Higher Cost     4
## 735            Yes   Higher Cost     6
## 737             No    Lower Cost     1
## 738            Yes   Higher Cost     2
## 739            Yes     High Cost     1
## 741            Yes    Lower Cost     1
## 742            Yes   Higher Cost     1
## 743             No   Normal Cost     1
## 744            Yes      Low Cost     1
## 745            Yes   Higher Cost     2
## 746            Yes   Higher Cost     2
## 747             No   Normal Cost     2
## 748            Yes   Higher Cost     2
## 749             No     High Cost     2
## 750            Yes    Lower Cost     1
## 751            Yes     High Cost     2
## 752            Yes    Lower Cost     1
## 753            Yes   Higher Cost     4
## 754            Yes     High Cost     2
## 755             No   Normal Cost     1
## 756             No    Lower Cost     2
## 757             No     High Cost     6
## 758            Yes     High Cost     1
## 759            Yes     High Cost     2
## 760            Yes   Normal Cost     1
## 761            Yes   Normal Cost     1
## 762            Yes     High Cost     1
## 763            Yes     High Cost     1
## 764             No   Normal Cost     1
## 765            Yes    Lower Cost     2
## 766            Yes   Normal Cost     1
## 767            Yes     High Cost     2
## 768             No   Higher Cost     2
## 769             No   Higher Cost     1
## 770            Yes   Higher Cost     1
## 771             No    Lower Cost     1
## 772            Yes     High Cost     1
## 773             No   Normal Cost     1
## 774            Yes    Lower Cost     1
## 775            Yes   Normal Cost     1
## 776            Yes   Normal Cost     2
## 777            Yes      Low Cost     1
## 778            Yes   Higher Cost     4
## 779             No     High Cost     4
## 780            Yes   Higher Cost     2
## 781            Yes   Normal Cost     2
## 782            Yes     High Cost     1
## 783            Yes     High Cost     2
## 784            Yes  Highest Cost     2
## 785            Yes   Higher Cost     2
## 786            Yes   Higher Cost     2
## 787            Yes   Higher Cost    12
## 788            Yes   Higher Cost     2
## 789            Yes     High Cost     2
## 790            Yes   Higher Cost     2
## 791            Yes     High Cost     1
## 792            Yes   Higher Cost     2
## 793            Yes   Normal Cost     1
## 794             No   Higher Cost     2
## 795            Yes   Higher Cost     1
## 797             No     High Cost     4
## 798            Yes   Higher Cost     2
## 799            Yes   Normal Cost     2
## 800            Yes   Normal Cost     2
## 801             No      Low Cost     1
## 802            Yes      Low Cost     1
## 803             No   Normal Cost    10
## 804            Yes     High Cost     3
## 805            Yes   Normal Cost     1
## 806             No   Normal Cost     6
## 807            Yes     High Cost     1
## 808            Yes   Higher Cost     1
## 809            Yes   Higher Cost     3
## 810            Yes  Highest Cost     2
## 811             No   Normal Cost     1
## 812            Yes   Normal Cost     2
## 814             No    Lower Cost     1
## 815             No   Normal Cost     1
## 816             No   Normal Cost     1
## 817            Yes     High Cost     2
## 818             No   Normal Cost     1
## 820            Yes     High Cost     2
## 821            Yes   Higher Cost     2
## 822            Yes   Normal Cost     1
## 823             No   Higher Cost     2
## 824            Yes   Normal Cost     1
## 825             No  Highest Cost     1
## 826            Yes   Higher Cost     2
## 827            Yes   Normal Cost     1
## 828            Yes   Higher Cost     2
## 829            Yes   Normal Cost     1
## 831             No     High Cost     3
## 832            Yes     High Cost     1
## 833             No    Lower Cost     2
## 834             No   Normal Cost     1
## 835            Yes   Higher Cost     2
## 836             No   Higher Cost     3
## 837            Yes   Higher Cost     1
## 838            Yes   Higher Cost     3
## 839            Yes   Normal Cost     2
## 841            Yes   Normal Cost     2
## 842             No    Lower Cost     1
## 845            Yes     High Cost     2
## 846            Yes     High Cost     1
## 847            Yes   Higher Cost     8
## 848            Yes    Lower Cost     1
## 849            Yes      Low Cost     2
## 850            Yes    Lower Cost     2
## 851             No     High Cost     1
## 852            Yes  Highest Cost     4
## 853             No   Normal Cost     1
## 854             No    Lower Cost     1
## 855            Yes   Higher Cost     2
## 856             No     High Cost     2
## 857             No   Normal Cost     1
## 858             No   Higher Cost     1
## 859            Yes   Normal Cost     2
## 860            Yes   Normal Cost     1
## 861            Yes   Higher Cost     2
## 862             No   Normal Cost     1
## 863            Yes   Higher Cost     2
## 864            Yes   Higher Cost     1
## 865            Yes     High Cost     2
## 866            Yes    Lower Cost     1
## 867             No   Normal Cost     2
## 868            Yes   Higher Cost     2
## 869            Yes   Normal Cost     1
## 870             No   Higher Cost     1
## 871            Yes   Higher Cost     1
## 872            Yes   Normal Cost     3
## 873             No   Higher Cost     2
## 874            Yes   Higher Cost     2
## 875            Yes   Higher Cost     2
## 876             No    Lower Cost     1
## 877             No    Lower Cost     2
## 878             No     High Cost     1
## 879            Yes   Higher Cost     2
## 880            Yes  Highest Cost     2
## 881             No    Lower Cost     1
## 882            Yes   Higher Cost     3
## 883            Yes      Low Cost     1
## 885            Yes   Normal Cost     2
## 886             No     High Cost     2
## 887             No    Lower Cost     3
## 889             No      Low Cost     1
## 890            Yes   Higher Cost     2
## 891            Yes   Normal Cost     2
## 892             No   Normal Cost     2
## 893            Yes    Lower Cost     2
## 894            Yes   Normal Cost     2
## 895             No     High Cost     1
## 896            Yes     High Cost     2
## 897            Yes   Higher Cost     1
## 898             No     High Cost    10
## 899             No     High Cost     1
## 900             No    Lower Cost     1
## 902            Yes   Normal Cost     1
## 903            Yes   Higher Cost     2
## 904            Yes   Higher Cost     2
## 905             No   Higher Cost     1
## 906            Yes     High Cost     2
## 907            Yes   Normal Cost     1
## 908            Yes    Lower Cost     2
## 909            Yes   Higher Cost     5
## 910             No    Lower Cost     1
## 911            Yes   Higher Cost     5
## 912            Yes   Higher Cost     8
## 913            Yes   Normal Cost     2
## 914             No   Higher Cost     2
## 915            Yes   Normal Cost     1
## 916            Yes   Normal Cost     1
## 917            Yes      Low Cost     2
## 918            Yes     High Cost     1
## 919             No   Normal Cost     1
## 920            Yes   Normal Cost     1
## 921             No     High Cost     2
## 922            Yes   Higher Cost     3
## 923            Yes   Higher Cost     1
## 924            Yes   Higher Cost     3
## 925            Yes   Normal Cost     2
## 926             No   Normal Cost     1
## 927            Yes   Higher Cost    24
## 928            Yes   Higher Cost     2
## 929            Yes   Higher Cost     2
## 930            Yes      Low Cost     1
## 931            Yes   Normal Cost     1
## 932            Yes   Normal Cost     1
## 933             No      Low Cost     1
## 934            Yes   Higher Cost     2
## 935             No   Normal Cost     1
## 936            Yes     High Cost     1
## 937            Yes    Lower Cost     1
## 938            Yes   Normal Cost     2
## 939            Yes    Lower Cost     1
## 940            Yes    Lower Cost     2
## 941            Yes   Higher Cost     1
## 942             No   Higher Cost     1
## 943            Yes   Higher Cost     2
## 945            Yes     High Cost     2
## 946             No   Higher Cost     1
## 947            Yes  Highest Cost     2
## 948            Yes   Higher Cost     1
## 950            Yes  Highest Cost     2
## 951            Yes   Higher Cost     2
## 952             No      Low Cost     1
## 953            Yes   Higher Cost     9
## 954            Yes   Higher Cost     2
## 955            Yes    Lower Cost     1
## 956             No   Normal Cost     2
## 957             No      Low Cost     1
## 958            Yes   Normal Cost     1
## 959             No   Higher Cost     2
## 960             No   Higher Cost     2
## 961            Yes   Higher Cost     1
## 962            Yes     High Cost     7
## 963            Yes      Low Cost     1
## 964            Yes   Normal Cost     3
## 965             No     High Cost     1
## 966            Yes   Higher Cost     5
## 967             No     High Cost     2
## 968             No    Lower Cost     1
## 969            Yes    Lower Cost     2
## 970            Yes     High Cost     2
## 971            Yes     High Cost     3
## 972            Yes   Higher Cost     1
## 973            Yes   Normal Cost     1
## 974            Yes   Normal Cost     2
## 975            Yes   Higher Cost     2
## 976             No   Normal Cost     1
## 977            Yes     High Cost     2
## 978            Yes   Higher Cost     2
## 979            Yes   Normal Cost     3
## 980            Yes   Normal Cost     2
## 981            Yes   Normal Cost     1
## 982             No   Normal Cost     1
## 983             No   Higher Cost     7
## 985            Yes    Lower Cost     1
## 986            Yes   Normal Cost     2
## 987            Yes     High Cost     1
## 989            Yes   Normal Cost     2
## 990             No   Normal Cost     7
## 991            Yes   Normal Cost     3
## 992            Yes    Lower Cost     2
## 993             No    Lower Cost     2
## 994            Yes   Normal Cost     2
## 995             No    Lower Cost     1
## 996            Yes   Higher Cost     5
## 997            Yes   Higher Cost     2
## 998            Yes     High Cost     1
## 999             No   Normal Cost     1
## 1000           Yes     High Cost     1
## 1001           Yes     High Cost     4
## 1002           Yes     High Cost     2
## 1003            No   Normal Cost     2
## 1004           Yes     High Cost     2
## 1005           Yes   Higher Cost     1
## 1006            No   Normal Cost     2
## 1007           Yes   Higher Cost     2
## 1008           Yes    Lower Cost     1
## 1009           Yes   Normal Cost     2
## 1010           Yes   Normal Cost     2
## 1011           Yes   Higher Cost     4
## 1012           Yes    Lower Cost     1
## 1013           Yes  Highest Cost     6
## 1014           Yes     High Cost     1
## 1016           Yes   Normal Cost     2
## 1017           Yes    Lower Cost     2
## 1018           Yes   Normal Cost     2
## 1019           Yes   Normal Cost     1
## 1020           Yes   Higher Cost     4
## 1021           Yes      Low Cost     1
## 1022            No   Higher Cost     2
## 1023           Yes  Highest Cost     4
## 1024           Yes   Higher Cost     4
## 1026            No   Normal Cost     1
## 1027            No   Normal Cost     1
## 1028           Yes   Higher Cost     2
## 1029           Yes   Normal Cost     1
## 1030            No     High Cost     1
## 1032           Yes      Low Cost     1
## 1033           Yes    Lower Cost     1
## 1034           Yes   Normal Cost     1
## 1035            No   Normal Cost     1
## 1036            No    Lower Cost     1
## 1037            No   Higher Cost     2
## 1038           Yes   Higher Cost     6
## 1040           Yes    Lower Cost     1
## 1041           Yes   Normal Cost     2
## 1042           Yes   Higher Cost     4
## 1043            No     High Cost     1
## 1044           Yes   Normal Cost     1
## 1045            No      Low Cost     1
## 1046           Yes   Normal Cost     2
## 1047           Yes   Higher Cost     2
## 1048           Yes   Higher Cost     2
## 1049           Yes     High Cost     1
## 1050           Yes   Normal Cost     2
## 1051            No   Higher Cost     2
## 1052           Yes   Higher Cost     4
## 1054           Yes   Higher Cost     2
## 1055           Yes   Normal Cost     1
## 1056            No   Normal Cost     1
## 1057           Yes      Low Cost     1
## 1058            No   Higher Cost     2
## 1059           Yes   Higher Cost     2
## 1060            No      Low Cost     1
## 1061           Yes   Higher Cost     1
## 1062           Yes   Normal Cost     2
## 1063           Yes   Normal Cost     2
## 1065           Yes    Lower Cost     1
## 1066            No   Normal Cost     2
## 1067            No   Normal Cost     1
## 1068           Yes   Higher Cost     2
## 1069           Yes    Lower Cost     1
## 1070           Yes   Higher Cost     2
## 1071           Yes     High Cost     2
## 1072            No   Normal Cost     1
## 1073           Yes    Lower Cost     1
## 1074           Yes   Normal Cost     1
## 1075           Yes   Higher Cost     4
## 1076            No    Lower Cost     1
## 1077           Yes   Higher Cost     4
## 1078           Yes    Lower Cost     1
## 1079           Yes   Higher Cost     4
## 1080           Yes   Normal Cost     1
## 1081           Yes   Higher Cost     1
## 1082           Yes     High Cost     2
## 1083           Yes   Higher Cost     2
## 1084           Yes     High Cost     2
## 1085           Yes    Lower Cost     1
## 1087           Yes    Lower Cost     2
## 1088           Yes     High Cost     2
## 1091           Yes    Lower Cost     2
## 1092            No   Normal Cost     1
## 1093            No   Normal Cost     1
## 1094           Yes     High Cost     1
## 1095           Yes   Normal Cost     1
## 1096           Yes      Low Cost     1
## 1098           Yes    Lower Cost     1
## 1099           Yes     High Cost     2
## 1100           Yes     High Cost     1
## 1101            No   Higher Cost     2
## 1102           Yes   Normal Cost     1
## 1103           Yes   Higher Cost     2
## 1104            No      Low Cost     1
## 1105           Yes   Normal Cost     1
## 1106            No     High Cost     1
## 1108            No   Normal Cost     1
## 1109           Yes   Normal Cost     2
## 1110            No    Lower Cost     2
## 1111            No      Low Cost     1
## 1112           Yes   Higher Cost     2
## 1113           Yes   Higher Cost     2
## 1114           Yes   Normal Cost     3
## 1115            No   Normal Cost     1
## 1116           Yes      Low Cost     1
## 1117           Yes   Higher Cost     2
## 1118           Yes   Higher Cost     2
## 1120           Yes      Low Cost     2
## 1121            No   Normal Cost     4
## 1122            No   Normal Cost     1
## 1123           Yes   Higher Cost     2
## 1124           Yes   Normal Cost     1
## 1125            No   Normal Cost     1
## 1126           Yes   Normal Cost     1
## 1127            No   Normal Cost     1
## 1128            No    Lower Cost     2
## 1129           Yes      Low Cost     2
## 1130           Yes     High Cost     2
## 1131           Yes      Low Cost     2
## 1132           Yes   Normal Cost     2
## 1133            No     High Cost     1
## 1134           Yes   Normal Cost     3
## 1135           Yes     High Cost     1
## 1136           Yes    Lower Cost     1
## 1137            No    Lower Cost     1
## 1138           Yes   Higher Cost     2
## 1139           Yes   Higher Cost     2
## 1140            No   Higher Cost     2
## 1141            No   Higher Cost     1
## 1142           Yes   Higher Cost     2
## 1143           Yes   Higher Cost     2
## 1144           Yes   Higher Cost     4
## 1146           Yes   Higher Cost     4
## 1147           Yes    Lower Cost     2
## 1148           Yes   Normal Cost     1
## 1149            No   Higher Cost     2
## 1150           Yes   Normal Cost     1
## 1151           Yes   Higher Cost     4
## 1152           Yes   Normal Cost     1
## 1153            No   Normal Cost     1
## 1154           Yes   Normal Cost     1
## 1155           Yes   Normal Cost     1
## 1156           Yes  Highest Cost     5
## 1157           Yes   Normal Cost     1
## 1158           Yes     High Cost     1
## 1159           Yes   Higher Cost     2
## 1160           Yes   Normal Cost     2
## 1161           Yes  Highest Cost    12
## 1162            No   Normal Cost     2
## 1163           Yes     High Cost     2
## 1164            No   Higher Cost     2
## 1165            No   Higher Cost     4
## 1166            No    Lower Cost     1
## 1167           Yes  Highest Cost     3
## 1168           Yes     High Cost     1
## 1169           Yes   Higher Cost     1
## 1170            No      Low Cost     1
## 1172           Yes    Lower Cost     1
## 1173           Yes    Lower Cost     1
## 1175           Yes     High Cost     1
## 1177           Yes   Higher Cost     1
## 1178           Yes     High Cost     2
## 1179           Yes   Higher Cost     3
## 1180           Yes    Lower Cost     2
## 1181           Yes   Higher Cost     2
## 1182           Yes      Low Cost     1
## 1184           Yes     High Cost     6
## 1185            No   Normal Cost     1
## 1186           Yes   Normal Cost     2
## 1187            No      Low Cost     1
## 1189           Yes     High Cost     1
## 1190           Yes    Lower Cost     4
## 1191           Yes   Higher Cost     2
## 1192           Yes  Highest Cost     8
## 1193           Yes   Normal Cost     1
## 1194           Yes      Low Cost     4
## 1196           Yes   Higher Cost     2
## 1197           Yes   Higher Cost     1
## 1198           Yes     High Cost     3
## 1199           Yes     High Cost     2
## 1200           Yes   Higher Cost     2
## 1201            No      Low Cost     1
## 1202           Yes   Normal Cost     1
## 1203           Yes   Normal Cost     2
## 1204           Yes    Lower Cost     1
## 1205           Yes   Normal Cost     1
## 1206           Yes   Normal Cost     2
## 1207            No      Low Cost     1
## 1208            No   Higher Cost     4
## 1209            No   Normal Cost     1
## 1210           Yes   Higher Cost     1
## 1211           Yes   Higher Cost     4
## 1212           Yes   Normal Cost     1
## 1213            No   Normal Cost     1
## 1214            No   Normal Cost     1
## 1215           Yes   Higher Cost     2
## 1216            No    Lower Cost     1
## 1217           Yes     High Cost     1
## 1218            No   Normal Cost     1
## 1221            No      Low Cost     1
## 1223            No   Higher Cost     3
## 1224           Yes    Lower Cost     3
## 1225           Yes   Higher Cost     4
## 1227            No     High Cost     1
## 1228           Yes    Lower Cost     1
## 1229           Yes     High Cost     1
## 1230           Yes   Higher Cost     2
## 1231           Yes   Normal Cost     2
## 1232           Yes    Lower Cost     1
## 1233           Yes   Normal Cost     2
## 1234            No   Normal Cost     1
## 1235            No    Lower Cost     2
## 1236            No   Higher Cost     5
## 1237           Yes    Lower Cost     2
## 1238            No   Normal Cost     1
## 1239           Yes   Higher Cost     2
## 1240           Yes    Lower Cost     2
## 1241           Yes   Higher Cost     1
## 1242           Yes   Normal Cost     1
## 1243            No   Normal Cost     1
## 1244           Yes   Higher Cost     3
## 1246            No    Lower Cost     1
## 1247           Yes     High Cost     2
## 1248           Yes   Normal Cost     1
## 1249           Yes   Higher Cost     8
## 1250           Yes     High Cost     2
## 1251           Yes   Normal Cost     1
## 1252           Yes   Higher Cost     2
## 1253            No   Normal Cost     1
## 1254           Yes     High Cost     1
## 1255           Yes    Lower Cost     1
## 1256            No    Lower Cost     1
## 1257           Yes   Normal Cost     2
## 1259            No   Higher Cost     2
## 1260           Yes   Normal Cost     2
## 1261           Yes   Normal Cost     2
## 1262           Yes   Higher Cost     3
## 1263           Yes   Higher Cost     2
## 1264           Yes     High Cost     1
## 1265           Yes    Lower Cost     1
## 1266           Yes     High Cost     1
## 1267           Yes     High Cost     5
## 1268           Yes     High Cost     1
## 1269           Yes   Higher Cost     2
## 1270           Yes      Low Cost     2
## 1271           Yes   Higher Cost     1
## 1272           Yes   Higher Cost     1
## 1273           Yes   Higher Cost     4
## 1275            No     High Cost     2
## 1276           Yes   Higher Cost     1
## 1277           Yes   Normal Cost     4
## 1278           Yes   Higher Cost     4
## 1279           Yes   Higher Cost     4
## 1280           Yes     High Cost     1
## 1281            No     High Cost     2
## 1282           Yes   Higher Cost     2
## 1283           Yes     High Cost     2
## 1284           Yes   Normal Cost     1
## 1285           Yes     High Cost     2
## 1286           Yes   Normal Cost     2
## 1287           Yes   Higher Cost     2
## 1288            No   Normal Cost     2
## 1289           Yes   Normal Cost     2
## 1290           Yes   Higher Cost     5
## 1291            No   Normal Cost     2
## 1292           Yes   Higher Cost     4
## 1293           Yes     High Cost     2
## 1294           Yes   Higher Cost     2
## 1295           Yes   Higher Cost     2
## 1296           Yes     High Cost     2
## 1298            No   Normal Cost     1
## 1299           Yes     High Cost     2
## 1300            No    Lower Cost     2
## 1301           Yes     High Cost     1
## 1302           Yes     High Cost     1
## 1303            No   Normal Cost     1
## 1304           Yes      Low Cost     2
## 1305           Yes   Higher Cost     1
## 1306           Yes   Normal Cost     4
## 1307           Yes   Normal Cost     2
## 1308            No   Higher Cost     1
## 1309           Yes     High Cost     2
## 1310            No   Higher Cost     6
## 1311           Yes     High Cost     1
## 1312           Yes    Lower Cost     1
## 1313           Yes   Higher Cost     2
## 1314            No      Low Cost     1
## 1315           Yes   Higher Cost     4
## 1316            No   Normal Cost     1
## 1317           Yes   Normal Cost     2
## 1318           Yes      Low Cost     1
## 1319           Yes   Higher Cost     2
## 1320           Yes      Low Cost     1
## 1321           Yes     High Cost     2
## 1322           Yes   Higher Cost     3
## 1323           Yes     High Cost     2
## 1324            No    Lower Cost     1
## 1326           Yes  Highest Cost     2
## 1327           Yes     High Cost     1
## 1328            No   Normal Cost     1
## 1330           Yes    Lower Cost     1
## 1331           Yes     High Cost     1
## 1332           Yes   Higher Cost     2
## 1333            No     High Cost     2
## 1334            No   Normal Cost     4
## 1335            No      Low Cost     1
## 1336            No   Higher Cost     2
## 1337            No   Normal Cost     1
## 1338            No      Low Cost     1
## 1339           Yes   Normal Cost     2
## 1340            No   Normal Cost     1
## 1341            No    Lower Cost     1
## 1342            No    Lower Cost     1
## 1343           Yes   Normal Cost     2
## 1345            No      Low Cost     1
## 1346           Yes   Normal Cost     1
## 1347           Yes   Normal Cost     1
## 1348           Yes     High Cost     3
## 1349           Yes   Higher Cost     2
## 1350           Yes   Higher Cost     2
## 1351            No   Normal Cost     1
## 1352           Yes    Lower Cost     4
## 1354           Yes   Normal Cost     1
## 1355           Yes     High Cost     4
## 1356            No      Low Cost     2
## 1357           Yes     High Cost     2
## 1358           Yes     High Cost    27
## 1359           Yes   Higher Cost     1
## 1360            No   Normal Cost     2
## 1361           Yes   Higher Cost     4
## 1362            No      Low Cost     1
## 1363           Yes     High Cost     2
## 1364           Yes   Normal Cost     2
## 1365            No   Normal Cost     1
## 1366            No    Lower Cost     1
## 1367           Yes  Highest Cost     2
## 1368           Yes   Normal Cost     4
## 1369           Yes     High Cost     4
## 1370           Yes     High Cost     2
## 1371            No   Normal Cost     1
## 1372            No     High Cost     1
## 1373           Yes   Higher Cost     2
## 1374           Yes     High Cost     2
## 1375            No   Normal Cost     2
## 1376           Yes   Higher Cost     1
## 1377           Yes      Low Cost     1
## 1379           Yes   Normal Cost     1
## 1380            No   Normal Cost     1
## 1381           Yes     High Cost     2
## 1382           Yes   Higher Cost     2
## 1383            No   Normal Cost     2
## 1385           Yes   Normal Cost     4
## 1386            No    Lower Cost     1
## 1387            No   Normal Cost     1
## 1388           Yes   Higher Cost     2
## 1389            No    Lower Cost     1
## 1390           Yes    Lower Cost     1
## 1391           Yes     High Cost     1
## 1392           Yes   Normal Cost     1
## 1393            No   Normal Cost     1
## 1394            No   Normal Cost     1
## 1395           Yes   Higher Cost     2
## 1396           Yes   Normal Cost     5
## 1397           Yes   Normal Cost     2
## 1398           Yes   Higher Cost     2
## 1400           Yes   Normal Cost     1
## 1401           Yes   Higher Cost     1
## 1402            No   Normal Cost     1
## 1403           Yes   Higher Cost     2
## 1404           Yes      Low Cost     1
## 1405            No    Lower Cost     1
## 1406           Yes   Normal Cost     3
## 1407           Yes   Higher Cost     2
## 1408           Yes    Lower Cost     1
## 1409            No   Normal Cost     1
## 1410            No      Low Cost     1
## 1411           Yes   Higher Cost     4
## 1412            No   Higher Cost     4
## 1413           Yes      Low Cost     4
## 1414            No      Low Cost     1
## 1415           Yes   Higher Cost     3
## 1416           Yes    Lower Cost     1
## 1417           Yes   Higher Cost     4
## 1418           Yes     High Cost     3
## 1420           Yes     High Cost     4
## 1421           Yes  Highest Cost     4
## 1422            No   Normal Cost     2
## 1423           Yes    Lower Cost     2
## 1424           Yes   Higher Cost     3
## 1425            No    Lower Cost     2
## 1426           Yes   Higher Cost     2
## 1428           Yes   Higher Cost     2
## 1429           Yes     High Cost     2
## 1430            No   Normal Cost     1
## 1431           Yes   Normal Cost     1
## 1432           Yes   Higher Cost     2
## 1433           Yes   Higher Cost     2
## 1434           Yes     High Cost     1
## 1435            No   Normal Cost     1
## 1436            No     High Cost     3
## 1437            No   Normal Cost     2
## 1438            No   Normal Cost     1
## 1439            No   Normal Cost     1
## 1441            No    Lower Cost     1
## 1442           Yes     High Cost     2
## 1443            No   Higher Cost     4
## 1444           Yes     High Cost     2
## 1445           Yes  Highest Cost     5
## 1446            No     High Cost     1
## 1447           Yes     High Cost     2
## 1448           Yes   Higher Cost     2
## 1449           Yes     High Cost     1
## 1450           Yes   Higher Cost     2
## 1451            No    Lower Cost     1
## 1452           Yes   Higher Cost     2
## 1453           Yes      Low Cost     1
## 1454           Yes   Normal Cost     2
## 1455            No     High Cost     3
## 1456           Yes     High Cost     1
## 1457           Yes     High Cost     2
## 1458            No     High Cost     2
## 1459           Yes   Higher Cost     2
## 1460           Yes     High Cost     2
## 1461            No      Low Cost     1
## 1462           Yes   Higher Cost     2
## 1463            No     High Cost     2
## 1464           Yes    Lower Cost     1
## 1465            No   Higher Cost     1
## 1466           Yes   Higher Cost     1
## 1467           Yes    Lower Cost     1
## 1468           Yes     High Cost     2
## 1469           Yes    Lower Cost     2
## 1470            No      Low Cost     1
## 1471           Yes   Normal Cost     1
## 1472           Yes    Lower Cost     4
## 1473           Yes   Higher Cost     1
## 1474           Yes   Higher Cost     2
## 1475           Yes   Higher Cost     3
## 1476           Yes   Higher Cost     2
## 1478           Yes      Low Cost     1
## 1479            No   Normal Cost     1
## 1480           Yes   Higher Cost     2
## 1481           Yes      Low Cost     2
## 1482           Yes    Lower Cost     1
## 1483           Yes  Highest Cost    12
## 1484           Yes   Normal Cost     2
## 1485           Yes     High Cost     4
## 1486           Yes   Normal Cost     1
## 1487           Yes     High Cost     1
## 1488           Yes   Normal Cost     3
## 1490           Yes      Low Cost     1
## 1491           Yes   Higher Cost     5
## 1492           Yes     High Cost     1
## 1493           Yes   Higher Cost     1
## 1495           Yes   Normal Cost     1
## 1496            No   Normal Cost     1
## 1497           Yes      Low Cost     1
## 1498            No    Lower Cost     1
## 1499           Yes   Higher Cost     2
## 1500            No   Higher Cost     3
## 1501           Yes     High Cost     2
## 1502           Yes   Higher Cost     2
## 1503           Yes   Normal Cost     1
## 1504            No   Normal Cost     1
## 1505           Yes   Higher Cost     2
## 1506            No   Normal Cost     1
## 1507           Yes   Higher Cost     4
## 1508            No   Higher Cost     2
## 1509           Yes  Highest Cost     2
## 1511           Yes     High Cost     1
## 1512           Yes   Higher Cost     5
## 1513           Yes   Normal Cost     4
## 1514            No   Normal Cost     1
## 1515           Yes   Normal Cost     1
## 1516           Yes      Low Cost     1
## 1517            No   Normal Cost     1
## 1518           Yes   Higher Cost     2
## 1519           Yes   Higher Cost     2
## 1520           Yes   Normal Cost     3
## 1521           Yes      Low Cost     2
## 1522            No     High Cost     2
## 1523            No     High Cost     1
## 1524            No   Normal Cost     1
## 1525            No   Normal Cost     5
## 1526            No      Low Cost     1
## 1527           Yes   Higher Cost     1
## 1528            No    Lower Cost     1
## 1529            No      Low Cost     1
## 1530           Yes   Higher Cost     2
## 1531            No   Normal Cost     1
## 1532            No   Normal Cost     1
## 1533           Yes    Lower Cost     1
## 1534           Yes    Lower Cost     1
## 1536            No   Higher Cost     1
## 1537           Yes   Normal Cost     1
## 1538           Yes    Lower Cost     1
## 1539           Yes     High Cost     1
## 1540           Yes   Higher Cost     2
## 1541            No   Higher Cost     3
## 1542           Yes   Higher Cost     4
## 1543           Yes   Higher Cost     2
## 1544           Yes   Normal Cost     4
## 1545            No     High Cost     1
## 1546           Yes      Low Cost     3
## 1547            No   Normal Cost     2
## 1548           Yes    Lower Cost     1
## 1549           Yes   Higher Cost     4
## 1550           Yes   Normal Cost     1
## 1551           Yes   Higher Cost     2
## 1552           Yes   Normal Cost     1
## 1553           Yes   Higher Cost     3
## 1554            No     High Cost     2
## 1555           Yes     High Cost     2
## 1556           Yes   Normal Cost     7
## 1557           Yes   Normal Cost     1
## 1558           Yes   Normal Cost     2
## 1559           Yes   Higher Cost     3
## 1560           Yes    Lower Cost     1
## 1561           Yes   Higher Cost     4
## 1562           Yes   Higher Cost     2
## 1564            No      Low Cost     2
## 1565           Yes   Normal Cost     1
## 1566           Yes   Higher Cost     2
## 1567            No    Lower Cost     1
## 1568           Yes   Higher Cost     2
## 1569            No   Normal Cost     2
## 1570            No    Lower Cost     1
## 1571           Yes    Lower Cost     1
## 1574           Yes    Lower Cost     2
## 1575           Yes   Normal Cost     1
## 1576            No     High Cost     1
## 1578           Yes     High Cost     2
## 1579           Yes   Higher Cost     2
## 1580           Yes   Higher Cost     2
## 1581           Yes     High Cost     1
## 1582            No   Normal Cost     1
## 1584            No      Low Cost     1
## 1585           Yes   Higher Cost     2
## 1586           Yes     High Cost     2
## 1587           Yes   Normal Cost     2
## 1588            No    Lower Cost     2
## 1589            No     High Cost     2
## 1590           Yes   Higher Cost     2
## 1591           Yes     High Cost     3
## 1592           Yes   Normal Cost     1
## 1593            No     High Cost    14
## 1594           Yes   Higher Cost     2
## 1595           Yes    Lower Cost     1
## 1596            No   Normal Cost     4
## 1597           Yes    Lower Cost     1
## 1598           Yes    Lower Cost     1
## 1600           Yes   Higher Cost     2
## 1601           Yes     High Cost     4
## 1602           Yes   Normal Cost     7
## 1603            No   Normal Cost     1
## 1604            No    Lower Cost     3
## 1605           Yes     High Cost     1
## 1606           Yes     High Cost     2
## 1607           Yes   Normal Cost     1
## 1608           Yes   Normal Cost     2
## 1609           Yes   Normal Cost     1
## 1610           Yes      Low Cost     2
## 1611           Yes     High Cost     2
## 1612            No   Higher Cost     2
## 1613           Yes     High Cost     2
## 1614            No   Normal Cost     1
## 1615            No      Low Cost     4
## 1616            No     High Cost     2
## 1617           Yes     High Cost     2
## 1618           Yes   Normal Cost     1
## 1619           Yes   Normal Cost     2
## 1620           Yes   Normal Cost     2
## 1621           Yes     High Cost     1
## 1622            No   Normal Cost     1
## 1624            No    Lower Cost     1
## 1625            No   Higher Cost     5
## 1626            No   Normal Cost     1
## 1627            No    Lower Cost     1
## 1629            No   Normal Cost     1
## 1630           Yes   Normal Cost     2
## 1631           Yes   Normal Cost     4
## 1633            No      Low Cost     2
## 1634           Yes     High Cost     1
## 1635           Yes   Higher Cost     2
## 1636           Yes   Higher Cost     2
## 1637           Yes   Normal Cost     1
## 1638           Yes   Normal Cost     1
## 1640           Yes   Higher Cost     2
## 1641           Yes   Higher Cost     4
## 1642           Yes   Normal Cost     2
## 1643           Yes     High Cost     2
## 1644            No      Low Cost     1
## 1645            No     High Cost     1
## 1646           Yes    Lower Cost     1
## 1647           Yes    Lower Cost     3
## 1648           Yes   Higher Cost     2
## 1649           Yes   Higher Cost     2
## 1651            No      Low Cost     1
## 1652           Yes     High Cost     3
## 1653           Yes   Higher Cost    10
## 1654            No      Low Cost     1
## 1655           Yes   Higher Cost     2
## 1656           Yes   Higher Cost     2
## 1657           Yes   Normal Cost     1
## 1658            No   Normal Cost     3
## 1659            No   Higher Cost     2
## 1662           Yes    Lower Cost     1
## 1663            No   Higher Cost     3
## 1664           Yes      Low Cost     1
## 1665            No   Higher Cost     2
## 1666           Yes   Normal Cost     2
## 1667           Yes   Higher Cost    28
## 1669           Yes   Normal Cost     1
## 1670            No   Normal Cost     2
## 1671           Yes    Lower Cost     1
## 1672            No      Low Cost     1
## 1673           Yes   Higher Cost     4
## 1674            No     High Cost     2
## 1675           Yes   Normal Cost    12
## 1676           Yes   Normal Cost     4
## 1677           Yes   Normal Cost     1
## 1678           Yes    Lower Cost     1
## 1679            No    Lower Cost     2
## 1680            No   Normal Cost     2
## 1681           Yes     High Cost     2
## 1682            No    Lower Cost     1
## 1683            No    Lower Cost     2
## 1684            No   Higher Cost     5
## 1685            No   Normal Cost     5
## 1687           Yes   Normal Cost     2
## 1688            No      Low Cost     1
## 1689            No   Normal Cost     1
## 1690            No    Lower Cost     1
## 1691            No      Low Cost     1
## 1692           Yes     High Cost     2
## 1693           Yes  Highest Cost     7
## 1694            No   Normal Cost     1
## 1695           Yes      Low Cost     1
## 1696            No   Normal Cost     1
## 1697           Yes   Normal Cost     1
## 1698           Yes   Higher Cost     1
## 1699           Yes   Normal Cost     2
## 1700           Yes      Low Cost     1
## 1701           Yes   Higher Cost     3
## 1702           Yes     High Cost     6
## 1703           Yes   Higher Cost     2
## 1704            No    Lower Cost     1
## 1705           Yes   Higher Cost     3
## 1706           Yes   Higher Cost     6
## 1707           Yes   Higher Cost     2
## 1708            No   Normal Cost     1
## 1709           Yes   Normal Cost     1
## 1710           Yes     High Cost     1
## 1711           Yes   Normal Cost     1
## 1712            No   Normal Cost     1
## 1713           Yes   Normal Cost     1
## 1714            No   Normal Cost     1
## 1715            No   Higher Cost     4
## 1716           Yes    Lower Cost     1
## 1717           Yes     High Cost     1
## 1718           Yes      Low Cost     1
## 1719           Yes   Normal Cost     2
## 1720            No   Normal Cost     1
## 1721           Yes    Lower Cost     1
## 1723            No   Normal Cost     2
## 1724           Yes   Normal Cost     2
## 1725           Yes   Higher Cost     2
## 1726           Yes     High Cost     2
## 1727           Yes   Higher Cost     1
## 1728           Yes      Low Cost     1
## 1729           Yes   Higher Cost     2
## 1730            No   Normal Cost     4
## 1731           Yes      Low Cost     2
## 1732           Yes    Lower Cost     1
## 1733            No   Normal Cost     4
## 1734            No   Normal Cost     1
## 1735           Yes   Higher Cost     1
## 1736           Yes   Higher Cost     4
## 1737            No   Higher Cost     1
## 1738            No    Lower Cost     1
## 1739           Yes     High Cost     2
## 1740            No      Low Cost     1
## 1741            No   Normal Cost     1
## 1742            No     High Cost     1
## 1743           Yes     High Cost     1
## 1744           Yes    Lower Cost     1
## 1745           Yes   Higher Cost     4
## 1746           Yes   Normal Cost     1
## 1747           Yes   Higher Cost     2
## 1748            No      Low Cost     1
## 1749           Yes     High Cost     2
## 1750           Yes     High Cost     2
## 1751            No   Normal Cost     1
## 1752            No   Normal Cost     1
## 1753           Yes     High Cost     2
## 1754           Yes     High Cost     3
## 1756           Yes   Higher Cost     2
## 1757           Yes    Lower Cost     2
## 1758           Yes   Normal Cost     1
## 1759           Yes   Normal Cost     2
## 1760           Yes  Highest Cost     2
## 1761           Yes   Normal Cost     1
## 1762           Yes   Higher Cost     3
## 1763            No    Lower Cost     1
## 1764            No   Normal Cost     1
## 1765            No   Normal Cost     1
## 1766           Yes   Normal Cost     1
## 1768            No    Lower Cost     1
## 1769           Yes  Highest Cost     2
## 1770           Yes   Higher Cost     4
## 1771           Yes     High Cost     5
## 1772           Yes   Higher Cost     1
## 1773           Yes     High Cost     1
## 1774           Yes   Higher Cost     2
## 1775           Yes   Higher Cost     2
## 1776           Yes   Normal Cost     1
## 1777           Yes   Normal Cost     2
## 1778           Yes   Normal Cost     2
## 1779           Yes     High Cost     2
## 1780           Yes   Higher Cost     2
## 1781           Yes   Normal Cost     1
## 1782           Yes     High Cost     2
## 1783            No    Lower Cost     1
## 1784           Yes    Lower Cost     2
## 1785           Yes    Lower Cost     1
## 1786           Yes   Normal Cost     4
## 1787           Yes     High Cost     2
## 1788           Yes   Higher Cost     2
## 1789           Yes     High Cost     2
## 1790           Yes    Lower Cost     1
## 1791            No     High Cost     1
## 1792           Yes   Normal Cost     1
## 1793           Yes   Higher Cost     5
## 1794            No    Lower Cost     1
## 1795           Yes     High Cost     2
## 1796            No   Higher Cost     4
## 1797           Yes     High Cost     1
## 1798           Yes     High Cost     4
## 1799           Yes   Higher Cost     2
## 1801           Yes   Normal Cost     2
## 1802            No   Normal Cost     1
## 1803           Yes   Normal Cost     1
## 1804           Yes   Higher Cost     2
## 1805           Yes   Higher Cost     1
## 1806            No   Normal Cost     2
## 1808           Yes   Higher Cost     2
## 1809           Yes   Higher Cost     2
## 1810           Yes   Higher Cost     2
## 1811           Yes   Normal Cost     2
## 1812           Yes   Higher Cost     2
## 1813           Yes   Higher Cost     3
## 1814            No     High Cost     1
## 1815            No     High Cost     4
## 1816           Yes   Normal Cost     1
## 1817           Yes   Normal Cost     1
## 1818           Yes      Low Cost     1
## 1819           Yes   Higher Cost     1
## 1820           Yes     High Cost     1
## 1821           Yes    Lower Cost     2
## 1822           Yes   Higher Cost     2
## 1823            No    Lower Cost     1
## 1824            No   Normal Cost     1
## 1825           Yes   Higher Cost     3
## 1826           Yes      Low Cost     2
## 1827           Yes   Normal Cost     2
## 1828           Yes   Higher Cost     2
## 1830           Yes   Higher Cost     3
## 1831           Yes   Higher Cost     1
## 1832            No    Lower Cost     1
## 1833           Yes     High Cost     2
## 1834            No     High Cost     3
## 1835           Yes     High Cost     2
## 1836            No   Normal Cost     1
## 1837           Yes     High Cost     3
## 1838           Yes     High Cost    17
## 1839           Yes   Higher Cost     1
## 1840           Yes      Low Cost     2
## 1841           Yes   Normal Cost     1
## 1842           Yes   Higher Cost     2
## 1843           Yes   Normal Cost     1
## 1844           Yes   Normal Cost     1
## 1845           Yes    Lower Cost     1
## 1846           Yes     High Cost     4
## 1847           Yes   Normal Cost     1
## 1848           Yes    Lower Cost     1
## 1849           Yes     High Cost     2
## 1850           Yes     High Cost     1
## 1851           Yes   Normal Cost     1
## 1852            No   Normal Cost     1
## 1853           Yes     High Cost     1
## 1854           Yes     High Cost     1
## 1855           Yes     High Cost     1
## 1856           Yes   Higher Cost     1
## 1857           Yes   Normal Cost     2
## 1858            No   Normal Cost     3
## 1859           Yes   Higher Cost     1
## 1860           Yes   Higher Cost     2
## 1861           Yes   Higher Cost     1
## 1862            No   Normal Cost     2
## 1863           Yes   Normal Cost     3
## 1864            No     High Cost     2
## 1865           Yes   Normal Cost     1
## 1866           Yes   Higher Cost     2
## 1867           Yes   Normal Cost     1
## 1868            No     High Cost     1
## 1870           Yes   Higher Cost     2
## 1871           Yes   Higher Cost     2
## 1872            No    Lower Cost     1
## 1873           Yes   Higher Cost     1
## 1874           Yes   Higher Cost     2
## 1875           Yes    Lower Cost     1
## 1876           Yes   Normal Cost     2
## 1877           Yes   Higher Cost     5
## 1878            No     High Cost     3
## 1879            No      Low Cost     1
## 1880           Yes     High Cost     3
## 1881            No      Low Cost     1
## 1882            No   Normal Cost     1
## 1883           Yes   Higher Cost     2
## 1884            No     High Cost     2
## 1885           Yes   Higher Cost     2
## 1886           Yes      Low Cost     1
## 1887           Yes    Lower Cost     1
## 1888           Yes     High Cost     3
## 1889           Yes   Higher Cost     2
## 1890            No   Higher Cost     2
## 1891            No      Low Cost     1
## 1892            No   Normal Cost     1
## 1893            No     High Cost     1
## 1894           Yes   Normal Cost     3
## 1895           Yes   Normal Cost     1
## 1896           Yes    Lower Cost     1
## 1897            No   Normal Cost     2
## 1898            No      Low Cost     1
## 1899           Yes   Normal Cost     1
## 1900           Yes      Low Cost     1
## 1901           Yes   Normal Cost     3
## 1902           Yes     High Cost     2
## 1903           Yes      Low Cost     2
## 1904            No    Lower Cost     1
## 1905            No   Higher Cost     1
## 1906            No   Normal Cost     1
## 1907           Yes   Normal Cost     1
## 1908           Yes   Higher Cost     2
## 1909           Yes   Normal Cost     1
## 1912            No   Normal Cost     1
## 1913            No   Higher Cost     1
## 1914            No   Normal Cost     1
## 1915           Yes     High Cost     2
## 1916            No   Higher Cost     2
## 1917           Yes   Higher Cost     2
## 1918           Yes   Higher Cost     3
## 1919           Yes   Higher Cost     2
## 1920           Yes     High Cost     2
## 1921            No     High Cost     1
## 1922            No   Normal Cost     2
## 1923           Yes   Higher Cost     1
## 1924           Yes   Higher Cost     1
## 1925           Yes  Highest Cost     2
## 1926           Yes   Normal Cost     1
## 1927           Yes   Higher Cost     2
## 1928           Yes     High Cost     2
## 1929           Yes   Normal Cost     1
## 1931           Yes   Higher Cost     2
## 1932           Yes   Higher Cost     2
## 1933            No   Normal Cost     2
## 1934           Yes   Higher Cost     2
## 1935            No    Lower Cost     1
## 1936           Yes     High Cost     2
## 1937           Yes   Higher Cost     4
## 1938            No    Lower Cost     1
## 1939           Yes   Normal Cost     2
## 1940           Yes   Normal Cost     2
## 1941           Yes     High Cost     2
## 1942            No   Normal Cost     2
## 1943           Yes   Higher Cost     2
## 1945           Yes   Normal Cost     2
## 1946           Yes     High Cost     2
## 1947           Yes     High Cost     2
## 1948           Yes   Higher Cost     2
## 1949            No   Higher Cost     2
## 1950            No     High Cost     4
## 1951           Yes   Normal Cost     1
## 1952           Yes   Normal Cost     1
## 1953            No   Higher Cost     2
## 1954           Yes     High Cost     1
## 1955           Yes   Normal Cost     1
## 1956           Yes   Higher Cost     2
## 1957           Yes    Lower Cost     1
## 1958           Yes     High Cost     2
## 1959            No   Normal Cost     2
## 1960           Yes   Normal Cost     1
## 1961           Yes   Normal Cost     2
## 1962           Yes     High Cost     1
## 1963           Yes     High Cost     2
## 1964           Yes     High Cost     2
## 1965           Yes   Higher Cost     6
## 1966           Yes  Highest Cost     2
## 1967           Yes   Normal Cost     1
## 1968           Yes   Higher Cost     4
## 1969           Yes   Higher Cost    11
## 1970            No    Lower Cost     1
## 1972           Yes      Low Cost     1
## 1973            No    Lower Cost     4
## 1974           Yes     High Cost     1
## 1975           Yes   Normal Cost     2
## 1976           Yes     High Cost     2
## 1977            No      Low Cost     2
## 1978           Yes     High Cost     1
## 1979           Yes      Low Cost     1
## 1980           Yes   Higher Cost     2
## 1981           Yes   Normal Cost     1
## 1982           Yes     High Cost     4
## 1983           Yes   Normal Cost     4
## 1984           Yes   Normal Cost     1
## 1985           Yes   Higher Cost     2
## 1986           Yes   Normal Cost     2
## 1987           Yes    Lower Cost     1
## 1988           Yes     High Cost     1
## 1990            No      Low Cost     1
## 1992            No   Normal Cost     1
## 1993            No    Lower Cost     1
## 1994           Yes   Higher Cost     2
## 1995           Yes   Higher Cost     1
## 1996           Yes    Lower Cost     1
## 1998           Yes   Higher Cost     2
## 1999            No    Lower Cost     1
## 2000           Yes     High Cost     1
## 2001           Yes   Normal Cost     2
## 2002            No   Normal Cost     1
## 2003            No   Normal Cost     1
## 2004           Yes     High Cost     1
## 2005            No   Higher Cost     1
## 2006            No   Higher Cost     2
## 2007            No   Normal Cost     1
## 2008            No   Higher Cost     4
## 2009           Yes   Higher Cost     1
## 2010           Yes   Normal Cost     2
## 2011           Yes   Normal Cost     2
## 2014           Yes    Lower Cost     3
## 2015           Yes     High Cost     2
## 2016           Yes     High Cost     2
## 2018            No   Normal Cost     1
## 2019           Yes   Normal Cost     2
## 2020            No    Lower Cost     2
## 2021           Yes     High Cost     1
## 2022           Yes   Higher Cost     2
## 2023           Yes   Normal Cost     5
## 2024           Yes     High Cost     2
## 2025           Yes     High Cost     2
## 2026            No    Lower Cost     1
## 2027           Yes     High Cost     2
## 2028            No   Normal Cost     1
## 2029            No   Normal Cost     1
## 2030            No    Lower Cost     2
## 2031            No     High Cost     2
## 2032           Yes   Normal Cost     1
## 2033           Yes   Higher Cost     3
## 2034           Yes      Low Cost    13
## 2036           Yes   Normal Cost     1
## 2037            No      Low Cost     3
## 2038           Yes     High Cost     1
## 2039           Yes     High Cost     1
## 2040            No      Low Cost     1
## 2041           Yes   Normal Cost     2
## 2042           Yes      Low Cost     1
## 2043            No   Normal Cost     2
## 2044           Yes   Normal Cost     1
## 2045           Yes   Normal Cost     1
## 2046           Yes   Normal Cost     1
## 2048           Yes     High Cost     1
## 2049           Yes   Normal Cost     1
## 2050           Yes   Higher Cost     2
## 2052           Yes   Normal Cost     1
## 2053           Yes     High Cost     1
## 2054           Yes   Normal Cost     1
## 2055            No     High Cost     1
## 2057           Yes   Higher Cost     2
## 2058            No    Lower Cost     1
## 2059           Yes   Higher Cost     2
## 2060            No     High Cost     1
## 2061            No     High Cost     1
## 2062           Yes   Higher Cost     3
## 2063            No     High Cost     4
## 2064           Yes   Normal Cost     1
## 2065           Yes     High Cost     2
## 2066           Yes   Normal Cost     1
## 2067           Yes   Normal Cost     1
## 2069           Yes   Higher Cost     4
## 2070           Yes   Higher Cost     2
## 2071           Yes   Higher Cost     1
## 2072           Yes     High Cost     3
## 2074           Yes     High Cost     3
## 2075            No    Lower Cost     1
## 2076            No     High Cost     1
## 2077           Yes   Normal Cost     1
## 2078           Yes   Normal Cost     3
## 2079           Yes     High Cost    29
## 2080            No    Lower Cost     1
## 2081           Yes   Higher Cost     7
## 2082            No   Normal Cost     1
## 2083           Yes   Higher Cost     1
## 2084            No   Normal Cost     2
## 2085           Yes   Higher Cost     5
## 2086           Yes   Higher Cost     2
## 2087           Yes   Normal Cost     1
## 2088            No     High Cost     2
## 2089           Yes   Normal Cost     2
## 2090            No   Higher Cost     4
## 2091            No   Normal Cost     3
## 2092            No   Normal Cost     1
## 2093            No   Normal Cost     2
## 2094           Yes   Higher Cost     1
## 2095           Yes   Higher Cost     2
## 2096           Yes   Higher Cost     3
## 2097           Yes     High Cost     2
## 2098            No     High Cost     1
## 2099            No    Lower Cost     1
## 2100            No    Lower Cost     1
## 2101            No   Normal Cost     1
## 2102           Yes   Normal Cost     1
## 2103           Yes     High Cost     7
## 2104           Yes    Lower Cost     1
## 2105           Yes   Higher Cost     2
## 2107           Yes   Higher Cost     4
## 2108            No    Lower Cost     1
## 2110           Yes     High Cost     2
## 2111           Yes      Low Cost     1
## 2112           Yes   Normal Cost     2
## 2113           Yes  Highest Cost     1
## 2114            No    Lower Cost     1
## 2116            No   Normal Cost     1
## 2117           Yes      Low Cost     1
## 2118            No   Normal Cost     1
## 2119           Yes   Normal Cost     1
## 2120           Yes     High Cost     2
## 2121            No     High Cost     3
## 2122           Yes   Higher Cost     2
## 2123           Yes      Low Cost     2
## 2124            No      Low Cost     4
## 2125           Yes   Higher Cost     2
## 2126           Yes   Higher Cost     2
## 2127           Yes   Higher Cost     2
## 2128            No   Normal Cost     1
## 2129           Yes   Normal Cost     1
## 2130           Yes   Higher Cost     2
## 2131           Yes     High Cost     1
## 2132           Yes   Normal Cost     2
## 2133           Yes     High Cost     2
## 2134           Yes   Higher Cost     2
## 2135           Yes   Higher Cost     1
## 2136            No   Normal Cost     1
## 2137           Yes   Normal Cost     2
## 2138           Yes   Higher Cost     4
## 2139           Yes   Higher Cost     2
## 2140           Yes   Higher Cost     3
## 2141            No   Normal Cost     5
## 2143           Yes     High Cost     1
## 2144           Yes     High Cost     2
## 2145            No    Lower Cost     3
## 2146            No     High Cost     4
## 2147           Yes   Normal Cost     1
## 2148            No   Normal Cost     1
## 2149            No     High Cost     2
## 2150            No    Lower Cost     1
## 2151           Yes      Low Cost     1
## 2152           Yes    Lower Cost     1
## 2153           Yes   Higher Cost     2
## 2154           Yes   Higher Cost     3
## 2155            No   Normal Cost     1
## 2156            No      Low Cost     1
## 2157            No   Higher Cost     1
## 2158           Yes   Higher Cost     1
## 2159            No   Normal Cost     3
## 2160            No   Normal Cost     1
## 2161           Yes   Normal Cost     2
## 2162            No    Lower Cost     1
## 2163            No   Higher Cost     2
## 2164           Yes     High Cost     2
## 2165           Yes      Low Cost     1
## 2166           Yes   Higher Cost     2
## 2167           Yes   Higher Cost     4
## 2168           Yes   Higher Cost     2
## 2169            No      Low Cost     3
## 2170           Yes    Lower Cost     1
## 2171           Yes   Higher Cost     2
## 2172            No   Normal Cost     1
## 2173           Yes    Lower Cost     1
## 2174           Yes   Normal Cost     2
## 2175           Yes     High Cost     1
## 2176            No   Normal Cost     1
## 2177           Yes   Higher Cost     2
## 2178           Yes   Normal Cost     1
## 2179            No   Normal Cost     2
## 2180            No   Normal Cost     1
## 2181            No      Low Cost     1
## 2182            No   Higher Cost     2
## 2183            No     High Cost     1
## 2184            No    Lower Cost     1
## 2185           Yes     High Cost     1
## 2186           Yes     High Cost     4
## 2187           Yes    Lower Cost     1
## 2188            No    Lower Cost     2
## 2189           Yes     High Cost     1
## 2191            No    Lower Cost     1
## 2192            No   Higher Cost     2
## 2193           Yes      Low Cost     2
## 2194           Yes     High Cost     2
## 2195            No      Low Cost     1
## 2196            No   Normal Cost     1
## 2197            No      Low Cost     1
## 2198           Yes   Normal Cost     1
## 2199           Yes      Low Cost     2
## 2200           Yes   Higher Cost     2
## 2201            No     High Cost     4
## 2202            No   Normal Cost     1
## 2203            No   Higher Cost     8
## 2204           Yes   Higher Cost     2
## 2205           Yes     High Cost     2
## 2206           Yes   Higher Cost     2
## 2207           Yes   Normal Cost     2
## 2208           Yes   Higher Cost     1
## 2209            No   Higher Cost     2
## 2210           Yes     High Cost     2
## 2211           Yes   Higher Cost     2
## 2212            No    Lower Cost    12
## 2213            No   Normal Cost     1
## 2214            No   Normal Cost     2
## 2215           Yes     High Cost     2
## 2216            No   Normal Cost     1
## 2217            No   Normal Cost     1
## 2218           Yes   Higher Cost     2
## 2219            No    Lower Cost     1
## 2220           Yes     High Cost     4
## 2222            No    Lower Cost     2
## 2223           Yes      Low Cost     2
## 2224           Yes      Low Cost     2
## 2225           Yes   Higher Cost     4
## 2227           Yes     High Cost     2
## 2229           Yes   Higher Cost     2
## 2230           Yes     High Cost     1
## 2231            No   Normal Cost     1
## 2232           Yes    Lower Cost     1
## 2233           Yes   Higher Cost     2
## 2234           Yes     High Cost     1
## 2235           Yes   Higher Cost     6
## 2236           Yes    Lower Cost     2
## 2237            No   Higher Cost     5
## 2238           Yes   Normal Cost     1
## 2239            No      Low Cost     3
## 2241           Yes     High Cost     1
## 2242           Yes   Normal Cost     2
## 2243            No      Low Cost     1
## 2244           Yes   Normal Cost     1
## 2245           Yes   Higher Cost     2
## 2246            No    Lower Cost     4
## 2247           Yes   Normal Cost     1
## 2248           Yes    Lower Cost     1
## 2249           Yes    Lower Cost     1
## 2250           Yes   Normal Cost     4
## 2251            No   Normal Cost     1
## 2252            No   Normal Cost     1
## 2254           Yes      Low Cost     1
## 2255           Yes     High Cost     1
## 2256            No   Normal Cost     2
## 2257            No   Normal Cost     3
## 2258           Yes   Normal Cost     1
## 2260           Yes    Lower Cost     1
## 2261           Yes    Lower Cost     5
## 2263           Yes   Normal Cost     2
## 2264           Yes     High Cost     1
## 2265           Yes   Higher Cost     2
## 2266           Yes   Normal Cost     2
## 2267            No    Lower Cost     1
## 2268           Yes   Higher Cost     2
## 2269           Yes      Low Cost     1
## 2270           Yes    Lower Cost     1
## 2271           Yes     High Cost     1
## 2272           Yes    Lower Cost     1
## 2273           Yes     High Cost     2
## 2275            No      Low Cost     1
## 2276           Yes   Normal Cost     1
## 2277           Yes   Normal Cost     2
## 2278           Yes   Normal Cost     2
## 2279           Yes    Lower Cost     3
## 2280            No    Lower Cost     1
## 2281           Yes      Low Cost     1
## 2282            No    Lower Cost     1
## 2283            No   Normal Cost     1
## 2284            No    Lower Cost     1
## 2285           Yes   Normal Cost     1
## 2286            No      Low Cost     1
## 2287           Yes     High Cost     1
## 2288            No   Higher Cost     2
## 2289           Yes   Higher Cost     2
## 2290           Yes   Higher Cost     1
## 2291            No      Low Cost     1
## 2292           Yes     High Cost     2
## 2293           Yes   Normal Cost     2
## 2294           Yes   Higher Cost     2
## 2295            No    Lower Cost     1
## 2296            No      Low Cost     2
## 2297           Yes   Normal Cost     2
## 2298           Yes   Normal Cost     3
## 2299           Yes     High Cost     2
## 2300           Yes      Low Cost     1
## 2301           Yes   Higher Cost     2
## 2302            No   Normal Cost     1
## 2303            No    Lower Cost     1
## 2304            No      Low Cost     1
## 2305           Yes   Normal Cost     2
## 2306           Yes   Higher Cost     5
## 2307           Yes   Normal Cost     1
## 2308           Yes   Normal Cost     2
## 2309            No   Normal Cost     1
## 2310           Yes      Low Cost     2
## 2311           Yes   Higher Cost     2
## 2312           Yes  Highest Cost     2
## 2313           Yes   Higher Cost     1
## 2315           Yes   Higher Cost     2
## 2316           Yes   Higher Cost     1
## 2317           Yes   Normal Cost     1
## 2318           Yes   Higher Cost     2
## 2319           Yes   Normal Cost     1
## 2320           Yes     High Cost     2
## 2321            No    Lower Cost     1
## 2322           Yes     High Cost     1
## 2323           Yes  Highest Cost     2
## 2324           Yes     High Cost     1
## 2325           Yes   Higher Cost     2
## 2326           Yes     High Cost     2
## 2327            No    Lower Cost     1
## 2328            No   Normal Cost     2
## 2329           Yes     High Cost     1
## 2330           Yes     High Cost     1
## 2331           Yes   Higher Cost     2
## 2332           Yes    Lower Cost     2
## 2333           Yes    Lower Cost     2
## 2334            No    Lower Cost     1
## 2335           Yes   Higher Cost     5
## 2336           Yes  Highest Cost     4
## 2337           Yes   Higher Cost     3
## 2338           Yes   Normal Cost     2
## 2339           Yes   Normal Cost     1
## 2341           Yes    Lower Cost     8
## 2342           Yes   Higher Cost     2
## 2343            No   Higher Cost     4
## 2344           Yes   Higher Cost     3
## 2345            No   Normal Cost     1
## 2347           Yes   Normal Cost     2
## 2348           Yes   Higher Cost     1
## 2349            No      Low Cost     1
## 2350           Yes     High Cost     1
## 2351            No      Low Cost     1
## 2352           Yes     High Cost     3
## 2353           Yes    Lower Cost     1
## 2354           Yes     High Cost     2
## 2355            No    Lower Cost     1
## 2356            No   Normal Cost     1
## 2357           Yes     High Cost     1
## 2358           Yes    Lower Cost     4
## 2359           Yes   Normal Cost     1
## 2360            No   Normal Cost     1
## 2361            No     High Cost     3
## 2362           Yes   Normal Cost     1
## 2363           Yes    Lower Cost     2
## 2364           Yes     High Cost     3
## 2365            No   Normal Cost     1
## 2366            No   Higher Cost     1
## 2367            No      Low Cost     1
## 2368           Yes     High Cost     2
## 2369           Yes     High Cost     2
## 2370           Yes     High Cost     5
## 2371           Yes   Higher Cost     4
## 2372           Yes   Higher Cost     2
## 2373           Yes     High Cost     2
## 2375            No    Lower Cost     2
## 2376           Yes   Higher Cost     2
## 2377           Yes    Lower Cost     2
## 2378           Yes    Lower Cost     5
## 2379           Yes     High Cost     1
## 2380            No      Low Cost     1
## 2381            No    Lower Cost     1
## 2383           Yes   Normal Cost     1
## 2384           Yes      Low Cost     1
## 2385           Yes     High Cost     2
## 2386            No    Lower Cost     1
## 2387            No   Normal Cost     3
## 2388           Yes     High Cost     4
## 2389           Yes   Normal Cost     1
## 2390           Yes      Low Cost     1
## 2391           Yes    Lower Cost     1
## 2392            No     High Cost     2
## 2394           Yes   Higher Cost     2
## 2395            No    Lower Cost     3
## 2396           Yes   Higher Cost     2
## 2398           Yes     High Cost     2
## 2400           Yes    Lower Cost     1
## 2401            No   Normal Cost     2
## 2402           Yes    Lower Cost     1
## 2403           Yes   Higher Cost     4
## 2404            No   Normal Cost     1
## 2405           Yes   Normal Cost     1
## 2406           Yes   Higher Cost     2
## 2407            No   Normal Cost     1
## 2408           Yes    Lower Cost     1
## 2409           Yes     High Cost     2
## 2410           Yes   Higher Cost     2
## 2411           Yes   Higher Cost     3
## 2412           Yes   Normal Cost     2
## 2413           Yes     High Cost     2
## 2414           Yes     High Cost     2
## 2415           Yes   Normal Cost     1
## 2416           Yes     High Cost     3
## 2417           Yes    Lower Cost     1
## 2418           Yes   Normal Cost     1
## 2419           Yes     High Cost     2
## 2420           Yes    Lower Cost     2
## 2421           Yes   Normal Cost     1
## 2422           Yes      Low Cost     1
## 2423           Yes   Higher Cost     2
## 2424           Yes     High Cost     2
## 2425           Yes   Higher Cost     2
## 2427            No     High Cost     4
## 2428           Yes  Highest Cost     4
## 2429           Yes   Normal Cost     1
## 2430            No   Normal Cost     1
## 2431           Yes   Normal Cost     2
## 2432           Yes   Normal Cost     2
## 2433           Yes   Higher Cost     4
## 2434           Yes   Higher Cost     2
## 2435            No      Low Cost     2
## 2436            No   Higher Cost     1
## 2437           Yes   Higher Cost     2
## 2438           Yes     High Cost     2
## 2439           Yes   Normal Cost     1
## 2440           Yes     High Cost     1
## 2441            No   Normal Cost     2
## 2442           Yes      Low Cost     1
## 2443            No   Higher Cost     4
## 2444            No     High Cost     3
## 2445            No      Low Cost     1
## 2446           Yes     High Cost     2
## 2447           Yes     High Cost     1
## 2448           Yes   Normal Cost     1
## 2449           Yes   Normal Cost     1
## 2450           Yes      Low Cost     2
## 2451           Yes     High Cost     2
## 2453            No   Higher Cost     2
## 2454           Yes     High Cost     2
## 2455           Yes   Normal Cost     2
## 2456           Yes   Higher Cost     2
## 2457            No      Low Cost     1
## 2458           Yes     High Cost     4
## 2459           Yes    Lower Cost     2
## 2460            No   Normal Cost     1
## 2461            No      Low Cost     1
## 2463           Yes   Normal Cost     3
## 2464           Yes   Normal Cost     2
## 2465           Yes   Higher Cost     2
## 2466            No   Normal Cost     1
## 2467           Yes   Higher Cost     2
## 2468           Yes     High Cost     3
## 2470           Yes     High Cost     1
## 2471           Yes   Higher Cost     1
## 2473            No   Normal Cost     1
## 2474           Yes   Higher Cost     2
## 2475            No      Low Cost     1
## 2476           Yes   Higher Cost     2
## 2477           Yes   Normal Cost     1
## 2478            No   Normal Cost     1
## 2479           Yes     High Cost    30
## 2480           Yes   Higher Cost     2
## 2483           Yes   Higher Cost     1
## 2484           Yes   Higher Cost     2
## 2485           Yes   Higher Cost     4
## 2486           Yes   Normal Cost     1
## 2487            No   Normal Cost     1
## 2488           Yes   Higher Cost     4
## 2489            No    Lower Cost     2
## 2490           Yes     High Cost     1
## 2491           Yes     High Cost     1
## 2492           Yes     High Cost     2
## 2493           Yes   Higher Cost     3
## 2495           Yes     High Cost     2
## 2496            No    Lower Cost     2
## 2497           Yes     High Cost     2
## 2498           Yes   Higher Cost     2
## 2499           Yes   Higher Cost     2
## 2500            No    Lower Cost     1
## 2501           Yes   Normal Cost     2
## 2502           Yes   Higher Cost     2
## 2503           Yes      Low Cost     2
## 2504           Yes   Normal Cost     2
## 2505            No   Higher Cost     2
## 2506           Yes    Lower Cost     2
## 2507           Yes   Normal Cost     1
## 2508           Yes   Higher Cost     2
## 2509            No   Normal Cost     2
## 2510           Yes   Normal Cost     3
## 2511           Yes   Normal Cost     1
## 2512            No     High Cost     1
## 2513           Yes   Higher Cost     2
## 2514           Yes     High Cost     2
## 2515           Yes   Higher Cost     2
## 2518           Yes  Highest Cost    12
## 2519           Yes     High Cost     2
## 2520           Yes   Higher Cost     2
## 2521           Yes     High Cost     1
## 2522           Yes   Higher Cost     3
## 2523           Yes      Low Cost     1
## 2524           Yes   Higher Cost     4
## 2525           Yes     High Cost     1
## 2526            No   Normal Cost     1
## 2527           Yes   Higher Cost     2
## 2528           Yes   Higher Cost     2
## 2529            No     High Cost     2
## 2531            No      Low Cost     1
## 2532           Yes     High Cost     2
## 2534            No   Normal Cost     2
## 2535           Yes     High Cost     2
## 2536           Yes     High Cost     1
## 2537           Yes   Normal Cost     1
## 2538           Yes   Normal Cost     2
## 2539            No   Normal Cost     1
## 2540            No   Normal Cost     1
## 2541           Yes     High Cost     2
## 2542           Yes   Normal Cost     2
## 2543           Yes   Normal Cost     1
## 2544            No      Low Cost     1
## 2545           Yes   Higher Cost     2
## 2546           Yes      Low Cost     2
## 2547            No  Highest Cost     2
## 2548            No      Low Cost     1
## 2550           Yes   Higher Cost     4
## 2551            No   Normal Cost     3
## 2552            No     High Cost     2
## 2553           Yes    Lower Cost     1
## 2554           Yes     High Cost     3
## 2555           Yes    Lower Cost     1
## 2556           Yes   Normal Cost     2
## 2558            No    Lower Cost     2
## 2559            No    Lower Cost     1
## 2560            No   Higher Cost     2
## 2561           Yes   Higher Cost     3
## 2562           Yes   Normal Cost     1
## 2563            No   Higher Cost     2
## 2564           Yes     High Cost     1
## 2565           Yes     High Cost     2
## 2566            No   Normal Cost     1
## 2567           Yes   Higher Cost     2
## 2568            No   Higher Cost     5
## 2569           Yes   Higher Cost     2
## 2570           Yes    Lower Cost     1
## 2571           Yes     High Cost     2
## 2572           Yes      Low Cost     2
## 2573           Yes   Higher Cost     2
## 2574           Yes   Higher Cost     2
## 2575           Yes     High Cost     1
## 2576           Yes   Higher Cost     2
## 2577           Yes   Higher Cost     2
## 2578           Yes   Normal Cost     1
## 2579           Yes   Higher Cost     5
## 2580           Yes   Normal Cost     1
## 2581           Yes     High Cost     2
## 2582            No   Normal Cost     1
## 2583           Yes   Normal Cost     2
## 2584           Yes   Normal Cost     6
## 2585           Yes   Higher Cost     1
## 2586            No    Lower Cost     1
## 2587           Yes  Highest Cost     1
## 2588           Yes     High Cost     2
## 2589           Yes   Normal Cost     1
## 2590           Yes     High Cost     3
## 2591           Yes   Higher Cost     2
## 2592           Yes   Higher Cost     5
## 2593            No    Lower Cost     1
## 2594           Yes     High Cost     1
## 2595           Yes    Lower Cost     1
## 2596           Yes   Higher Cost     5
## 2598           Yes   Higher Cost     3
## 2599           Yes   Higher Cost     2
## 2600           Yes     High Cost     2
## 2601           Yes   Higher Cost     1
## 2602           Yes     High Cost     4
## 2603           Yes     High Cost     1
## 2604           Yes   Higher Cost     1
## 2605           Yes   Normal Cost     1
## 2606           Yes   Higher Cost     2
## 2607           Yes    Lower Cost     1
## 2608           Yes   Higher Cost     4
## 2609            No      Low Cost     2
## 2610            No   Higher Cost     7
## 2611            No   Normal Cost     1
## 2612           Yes   Normal Cost     3
## 2613           Yes   Normal Cost     1
## 2614           Yes   Higher Cost     2
## 2615            No    Lower Cost     1
## 2616            No     High Cost     2
## 2617           Yes   Higher Cost     2
## 2618           Yes     High Cost     2
## 2619            No      Low Cost     1
## 2620            No     High Cost     1
## 2621            No   Normal Cost     1
## 2622           Yes   Normal Cost     2
## 2623           Yes   Higher Cost     3
## 2624           Yes     High Cost     2
## 2625           Yes    Lower Cost     2
## 2626           Yes   Higher Cost     2
## 2627           Yes  Highest Cost     7
## 2628           Yes      Low Cost     1
## 2629           Yes   Higher Cost     1
## 2630           Yes      Low Cost     1
## 2631           Yes   Higher Cost     4
## 2632           Yes   Higher Cost     4
## 2633            No      Low Cost     1
## 2634            No    Lower Cost     1
## 2635           Yes      Low Cost     1
## 2636            No      Low Cost     3
## 2637           Yes   Higher Cost     2
## 2638            No    Lower Cost     2
## 2639           Yes   Normal Cost     1
## 2640            No      Low Cost     2
## 2641           Yes   Higher Cost     2
## 2642            No     High Cost     2
## 2643           Yes   Normal Cost     2
## 2644            No      Low Cost     1
## 2645           Yes   Normal Cost     1
## 2646           Yes   Normal Cost     1
## 2648           Yes     High Cost     1
## 2649           Yes    Lower Cost     1
## 2650            No   Normal Cost     1
## 2651            No      Low Cost     1
## 2652           Yes   Higher Cost     2
## 2653           Yes   Higher Cost     2
## 2654           Yes   Higher Cost     2
## 2655           Yes     High Cost     1
## 2656           Yes   Higher Cost     1
## 2657           Yes   Higher Cost     2
## 2659           Yes   Higher Cost     2
## 2660           Yes   Normal Cost     1
## 2661           Yes      Low Cost     1
## 2662           Yes   Normal Cost     1
## 2665           Yes   Higher Cost     2
## 2666           Yes   Higher Cost     2
## 2667            No      Low Cost     1
## 2669            No   Normal Cost     1
## 2670           Yes   Higher Cost     2
## 2672            No    Lower Cost     1
## 2673           Yes    Lower Cost     2
## 2674           Yes   Higher Cost     4
## 2675            No     High Cost     2
## 2676           Yes   Normal Cost     1
## 2677           Yes   Higher Cost     1
## 2678           Yes   Normal Cost     1
## 2679           Yes   Higher Cost     2
## 2680           Yes   Higher Cost     3
## 2681           Yes   Higher Cost     1
## 2682           Yes   Higher Cost     2
## 2684           Yes   Higher Cost     4
## 2685           Yes     High Cost     2
## 2686           Yes   Higher Cost     2
## 2687           Yes     High Cost     4
## 2688           Yes    Lower Cost     2
## 2689           Yes   Higher Cost     2
## 2690           Yes   Higher Cost     2
## 2691           Yes   Higher Cost     1
## 2693            No    Lower Cost     1
## 2695           Yes   Higher Cost     3
## 2696           Yes   Normal Cost     4
## 2697           Yes   Higher Cost     2
## 2698           Yes  Highest Cost    11
## 2699            No   Normal Cost     1
## 2700           Yes     High Cost     4
## 2701            No   Normal Cost     1
## 2702           Yes    Lower Cost     1
## 2703           Yes   Normal Cost     1
## 2704           Yes     High Cost     2
## 2705           Yes   Normal Cost     1
## 2706           Yes   Normal Cost     3
## 2707            No      Low Cost     2
## 2708            No   Normal Cost     1
## 2709           Yes   Higher Cost     2
## 2710           Yes   Higher Cost     2
## 2711           Yes  Highest Cost     1
## 2713           Yes   Higher Cost     2
## 2714           Yes      Low Cost     1
## 2715            No    Lower Cost     1
## 2716           Yes      Low Cost     1
## 2717            No      Low Cost     1
## 2718           Yes   Higher Cost     2
## 2720           Yes   Normal Cost     2
## 2721           Yes   Higher Cost     2
## 2722           Yes   Higher Cost     4
## 2723           Yes     High Cost     2
## 2724           Yes   Normal Cost     2
## 2725            No      Low Cost     1
## 2726            No     High Cost     1
## 2727            No   Normal Cost     1
## 2728           Yes   Higher Cost     2
## 2729           Yes   Higher Cost     3
## 2730           Yes   Higher Cost     1
## 2731            No   Normal Cost     2
## 2732           Yes   Higher Cost     2
## 2733           Yes    Lower Cost     1
## 2734            No     High Cost     1
## 2735           Yes   Higher Cost     2
## 2737           Yes   Higher Cost     1
## 2738           Yes  Highest Cost     4
## 2739           Yes   Higher Cost     2
## 2740           Yes   Higher Cost     2
## 2741            No   Normal Cost     2
## 2742           Yes   Normal Cost     1
## 2743           Yes   Higher Cost     1
## 2744           Yes     High Cost     1
## 2745           Yes   Higher Cost     2
## 2746           Yes   Normal Cost     1
## 2747            No   Normal Cost     1
## 2748           Yes     High Cost     2
## 2749           Yes     High Cost     2
## 2750            No      Low Cost     1
## 2751            No     High Cost     3
## 2752           Yes   Normal Cost     1
## 2753           Yes   Normal Cost     1
## 2755           Yes   Normal Cost     1
## 2756            No   Normal Cost     1
## 2757           Yes    Lower Cost     2
## 2760           Yes   Higher Cost     4
## 2761           Yes   Normal Cost     1
## 2762            No   Normal Cost     1
## 2763           Yes     High Cost     2
## 2764           Yes   Higher Cost     4
## 2765            No    Lower Cost     1
## 2766           Yes   Normal Cost    27
## 2767            No    Lower Cost     1
## 2768           Yes     High Cost     2
## 2769           Yes     High Cost     2
## 2770           Yes     High Cost     1
## 2771           Yes     High Cost     2
## 2772           Yes   Normal Cost     2
## 2773           Yes   Normal Cost     2
## 2774            No   Normal Cost     1
## 2775            No    Lower Cost     1
## 2776           Yes     High Cost     1
## 2777           Yes      Low Cost     4
## 2778           Yes     High Cost     1
## 2779           Yes    Lower Cost     1
## 2780            No   Normal Cost     1
## 2781           Yes   Higher Cost     4
## 2782            No   Normal Cost     1
## 2783            No      Low Cost     2
## 2784            No    Lower Cost     1
## 2785           Yes     High Cost     2
## 2786            No   Higher Cost     4
## 2787           Yes      Low Cost     1
## 2788           Yes   Normal Cost     1
## 2789           Yes     High Cost     1
## 2790            No    Lower Cost     1
## 2791           Yes     High Cost     2
## 2792           Yes   Higher Cost     2
## 2793           Yes      Low Cost     1
## 2794            No    Lower Cost     1
## 2795           Yes   Normal Cost     2
## 2796           Yes  Highest Cost     2
## 2797           Yes   Normal Cost     1
## 2798           Yes   Normal Cost     1
## 2799           Yes   Normal Cost     1
## 2800           Yes   Higher Cost     1
## 2801           Yes   Normal Cost     2
## 2802           Yes   Normal Cost     1
## 2803            No     High Cost     1
## 2804           Yes   Higher Cost     3
## 2805           Yes   Higher Cost     3
## 2806           Yes  Highest Cost    10
## 2807           Yes   Higher Cost     2
## 2808            No    Lower Cost     1
## 2809           Yes   Higher Cost     1
## 2810           Yes    Lower Cost     1
## 2811           Yes   Normal Cost     1
## 2813            No   Higher Cost     2
## 2814           Yes   Normal Cost     3
## 2815           Yes   Normal Cost     6
## 2816           Yes   Normal Cost     1
## 2817            No      Low Cost     1
## 2818           Yes   Higher Cost     4
## 2821           Yes   Higher Cost     2
## 2822           Yes   Normal Cost     1
## 2823            No    Lower Cost     1
## 2824           Yes     High Cost     1
## 2825           Yes   Higher Cost     2
## 2826            No   Normal Cost     1
## 2827           Yes     High Cost     2
## 2828           Yes   Higher Cost     6
## 2829            No      Low Cost     1
## 2831           Yes  Highest Cost     2
## 2832           Yes   Normal Cost     2
## 2833            No     High Cost     1
## 2834           Yes   Higher Cost     1
## 2835           Yes   Normal Cost     2
## 2836           Yes   Higher Cost     2
## 2837           Yes   Higher Cost     4
## 2838           Yes      Low Cost     4
## 2839           Yes   Higher Cost     3
## 2840            No    Lower Cost     1
## 2841           Yes   Normal Cost     1
## 2842            No   Higher Cost     1
## 2843            No   Normal Cost     1
## 2844            No   Higher Cost     2
## 2845           Yes   Normal Cost     1
## 2846           Yes     High Cost     2
## 2850           Yes   Higher Cost     2
## 2851           Yes    Lower Cost     2
## 2852           Yes    Lower Cost     2
## 2853           Yes   Higher Cost     4
## 2854           Yes   Normal Cost     1
## 2855            No   Normal Cost     2
## 2856            No   Normal Cost     2
## 2857            No   Normal Cost     1
## 2858            No   Higher Cost     2
## 2859           Yes     High Cost     1
## 2860            No    Lower Cost     1
## 2862           Yes    Lower Cost     1
## 2863           Yes     High Cost     2
## 2864           Yes     High Cost     3
## 2865            No    Lower Cost     1
## 2866           Yes   Higher Cost     3
## 2868           Yes    Lower Cost     1
## 2869           Yes     High Cost     2
## 2870           Yes   Normal Cost     2
## 2871           Yes   Normal Cost     1
## 2872           Yes   Higher Cost     4
## 2874           Yes    Lower Cost     1
## 2875            No      Low Cost     1
## 2876            No   Normal Cost     2
## 2877           Yes     High Cost     1
## 2878           Yes   Higher Cost     2
## 2879           Yes     High Cost     2
## 2880            No     High Cost     2
## 2881           Yes   Normal Cost     1
## 2882            No   Normal Cost     1
## 2883           Yes   Higher Cost     2
## 2885           Yes   Higher Cost     2
## 2886            No     High Cost     2
## 2887           Yes   Higher Cost     7
## 2888           Yes   Higher Cost     2
## 2889           Yes   Higher Cost     4
## 2890           Yes     High Cost     1
## 2891           Yes   Normal Cost     2
## 2892           Yes     High Cost     2
## 2893           Yes   Normal Cost     1
## 2894           Yes     High Cost     2
## 2895           Yes     High Cost     2
## 2896            No    Lower Cost     1
## 2897           Yes   Normal Cost     4
## 2898            No    Lower Cost     1
## 2899           Yes   Higher Cost     1
## 2900            No   Normal Cost     4
## 2901           Yes   Higher Cost     1
## 2902           Yes   Higher Cost     2
## 2903            No      Low Cost     1
## 2904           Yes   Higher Cost     2
## 2905            No   Normal Cost     1
## 2906            No   Normal Cost     2
## 2909            No    Lower Cost     1
## 2910            No    Lower Cost     1
## 2911           Yes      Low Cost     2
## 2912           Yes     High Cost     2
## 2913           Yes   Higher Cost     5
## 2914           Yes   Normal Cost     1
## 2915           Yes   Normal Cost     1
## 2916           Yes   Normal Cost     2
## 2917           Yes   Higher Cost     1
## 2918           Yes   Normal Cost     1
## 2919           Yes   Higher Cost     5
## 2921           Yes     High Cost     2
## 2922            No   Normal Cost     2
## 2923            No    Lower Cost     1
## 2924           Yes    Lower Cost     1
## 2925            No    Lower Cost     2
## 2926           Yes   Normal Cost     1
## 2927            No    Lower Cost     1
## 2928           Yes   Higher Cost     1
## 2929            No     High Cost     3
## 2930           Yes   Higher Cost     2
## 2931           Yes   Higher Cost     2
## 2932           Yes    Lower Cost     1
## 2933           Yes   Higher Cost     2
## 2934           Yes   Normal Cost     2
## 2935            No   Normal Cost     1
## 2936           Yes     High Cost     1
## 2937           Yes   Higher Cost     4
## 2938           Yes   Normal Cost     1
## 2939           Yes   Normal Cost     1
## 2940           Yes   Higher Cost     3
## 2941           Yes   Higher Cost     2
## 2942            No   Normal Cost     1
## 2943           Yes    Lower Cost     1
## 2944            No   Normal Cost     1
## 2946            No   Normal Cost     1
## 2947            No  Highest Cost     2
## 2948           Yes     High Cost     2
## 2949            No    Lower Cost     2
## 2950           Yes     High Cost     2
## 2951           Yes   Normal Cost     1
## 2952           Yes      Low Cost     1
## 2953           Yes   Higher Cost     5
## 2954           Yes      Low Cost     1
## 2955           Yes   Normal Cost     2
## 2956           Yes   Normal Cost     1
## 2957           Yes   Higher Cost     4
## 2958           Yes   Higher Cost     1
## 2959           Yes     High Cost     1
## 2960            No    Lower Cost     1
## 2961           Yes      Low Cost     1
## 2962            No   Normal Cost     1
## 2964           Yes   Normal Cost     2
## 2965            No   Normal Cost     2
## 2966           Yes   Higher Cost     1
## 2967           Yes    Lower Cost     2
## 2968           Yes   Normal Cost     2
## 2969            No    Lower Cost     2
## 2970           Yes   Higher Cost     2
## 2971           Yes   Higher Cost     2
## 2972           Yes   Higher Cost     2
## 2973            No   Normal Cost     1
## 2974            No     High Cost     1
## 2975            No      Low Cost     3
## 2976           Yes   Higher Cost     2
## 2977           Yes   Higher Cost     2
## 2978           Yes   Normal Cost     2
## 2980           Yes      Low Cost     2
## 2982           Yes   Higher Cost     6
## 2983            No   Normal Cost     1
## 2984           Yes    Lower Cost     2
## 2985           Yes     High Cost     1
## 2986           Yes   Higher Cost     1
## 2987           Yes   Higher Cost     2
## 2988           Yes    Lower Cost     1
## 2989           Yes     High Cost     2
## 2990           Yes     High Cost     5
## 2991           Yes   Normal Cost     3
## 2992           Yes   Higher Cost     1
## 2993           Yes     High Cost     2
## 2994           Yes   Normal Cost     1
## 2995           Yes   Normal Cost     5
## 2996           Yes   Higher Cost     3
## 2997           Yes     High Cost     4
## 2998           Yes   Higher Cost     2
## 2999           Yes   Higher Cost     2
## 3000           Yes     High Cost     1
## 3002           Yes   Higher Cost     3
## 3003           Yes   Normal Cost     2
## 3004            No   Normal Cost     1
## 3005           Yes     High Cost     2
## 3006            No    Lower Cost     1
## 3007           Yes   Higher Cost     2
## 3008           Yes   Higher Cost     5
## 3009            No   Normal Cost     1
## 3010           Yes   Higher Cost     2
## 3011           Yes     High Cost     2
## 3012           Yes     High Cost     1
## 3013           Yes     High Cost     2
## 3015           Yes     High Cost     1
## 3016            No      Low Cost     1
## 3017           Yes   Higher Cost     3
## 3018           Yes    Lower Cost     1
## 3019           Yes   Normal Cost     1
## 3020           Yes   Higher Cost     4
## 3021           Yes   Higher Cost     5
## 3022            No   Higher Cost     2
## 3023           Yes      Low Cost     1
## 3024           Yes     High Cost     2
## 3025           Yes   Normal Cost     2
## 3027           Yes   Normal Cost     1
## 3028           Yes   Higher Cost     2
## 3029           Yes   Normal Cost     1
## 3030           Yes   Higher Cost     3
## 3031           Yes   Higher Cost     2
## 3032           Yes   Higher Cost     1
## 3033           Yes   Higher Cost     2
## 3034            No   Higher Cost    12
## 3035           Yes   Higher Cost     2
## 3036           Yes     High Cost     1
## 3037           Yes   Higher Cost     2
## 3038           Yes     High Cost     2
## 3039           Yes   Higher Cost     2
## 3040           Yes   Higher Cost     2
## 3041            No    Lower Cost     3
## 3042           Yes   Higher Cost     2
## 3044           Yes     High Cost     1
## 3045           Yes    Lower Cost     1
## 3046            No   Higher Cost     3
## 3047            No    Lower Cost     1
## 3048           Yes   Higher Cost     5
## 3049           Yes    Lower Cost     2
## 3050           Yes     High Cost     1
## 3051           Yes   Higher Cost     2
## 3053            No   Normal Cost     1
## 3054           Yes      Low Cost     1
## 3055            No   Normal Cost     2
## 3056            No   Normal Cost     1
## 3057            No      Low Cost     1
## 3058           Yes   Normal Cost     1
## 3060           Yes   Normal Cost     2
## 3061            No   Higher Cost     1
## 3062           Yes   Normal Cost     1
## 3063            No    Lower Cost     1
## 3064           Yes    Lower Cost     1
## 3065            No     High Cost     1
## 3066           Yes     High Cost     1
## 3067           Yes   Higher Cost     2
## 3068            No     High Cost     2
## 3069           Yes   Higher Cost     2
## 3070           Yes   Normal Cost     1
## 3071            No    Lower Cost     1
## 3072           Yes     High Cost     1
## 3073           Yes     High Cost     2
## 3074            No   Higher Cost     2
## 3075           Yes   Higher Cost     4
## 3076            No   Higher Cost     3
## 3078            No    Lower Cost     2
## 3079            No     High Cost     1
## 3080            No    Lower Cost     2
## 3081            No   Normal Cost     1
## 3082           Yes   Higher Cost     3
## 3084           Yes   Higher Cost     7
## 3085           Yes      Low Cost     1
## 3086           Yes   Higher Cost     1
## 3087           Yes   Normal Cost     1
## 3088           Yes     High Cost     2
## 3090           Yes    Lower Cost     1
## 3091           Yes   Higher Cost     2
## 3092           Yes   Normal Cost     1
## 3093            No   Normal Cost     1
## 3094            No    Lower Cost     1
## 3095            No    Lower Cost     1
## 3096            No    Lower Cost     1
## 3097           Yes   Normal Cost     2
## 3098           Yes     High Cost     1
## 3099           Yes     High Cost     1
## 3100           Yes   Higher Cost     2
## 3101           Yes     High Cost     2
## 3102           Yes   Normal Cost     4
## 3103            No    Lower Cost     1
## 3104           Yes     High Cost     2
## 3105            No    Lower Cost     1
## 3106           Yes     High Cost     1
## 3107           Yes   Normal Cost     1
## 3108            No     High Cost     1
## 3109           Yes     High Cost     3
## 3110            No   Normal Cost     1
## 3111           Yes  Highest Cost     2
## 3112            No      Low Cost     1
## 3113           Yes     High Cost     1
## 3114           Yes   Higher Cost     2
## 3115           Yes     High Cost     2
## 3116           Yes   Higher Cost     4
## 3117           Yes   Normal Cost     2
## 3118            No   Normal Cost     2
## 3119           Yes   Higher Cost     2
## 3120           Yes     High Cost     1
## 3121           Yes   Higher Cost     3
## 3122            No    Lower Cost     1
## 3123           Yes   Higher Cost     1
## 3124           Yes     High Cost     2
## 3126            No     High Cost     1
## 3127           Yes     High Cost     2
## 3128           Yes     High Cost     2
## 3129           Yes     High Cost     2
## 3130           Yes  Highest Cost     6
## 3131           Yes   Higher Cost     2
## 3132            No   Normal Cost     1
## 3133            No   Normal Cost     1
## 3134           Yes     High Cost     2
## 3136           Yes   Higher Cost     3
## 3137           Yes     High Cost     2
## 3138           Yes   Higher Cost     4
## 3139            No   Normal Cost     1
## 3140           Yes   Normal Cost     1
## 3141           Yes   Higher Cost     3
## 3142           Yes   Higher Cost     2
## 3143            No   Normal Cost     1
## 3144            No     High Cost     1
## 3145           Yes   Normal Cost     1
## 3146           Yes   Normal Cost     2
## 3147           Yes   Higher Cost     2
## 3148           Yes     High Cost     1
## 3149            No   Higher Cost     5
## 3150            No   Normal Cost     1
## 3151            No    Lower Cost     1
## 3152           Yes   Normal Cost     1
## 3153           Yes   Higher Cost     1
## 3154            No    Lower Cost     1
## 3155           Yes     High Cost     2
## 3156           Yes   Normal Cost     4
## 3157           Yes   Higher Cost     2
## 3158           Yes   Higher Cost     1
## 3159           Yes     High Cost     1
## 3160           Yes   Normal Cost     1
## 3161           Yes   Higher Cost     5
## 3162           Yes     High Cost     2
## 3163            No   Normal Cost     2
## 3164           Yes   Higher Cost     1
## 3165           Yes   Higher Cost     4
## 3166            No   Normal Cost     1
## 3167           Yes   Higher Cost     2
## 3168           Yes   Higher Cost     1
## 3169            No    Lower Cost     1
## 3170            No   Normal Cost     2
## 3171           Yes   Normal Cost     1
## 3172           Yes    Lower Cost     5
## 3173           Yes   Higher Cost     2
## 3174           Yes   Higher Cost     2
## 3175           Yes   Normal Cost     2
## 3177            No    Lower Cost     1
## 3178           Yes   Normal Cost     1
## 3179           Yes    Lower Cost     1
## 3180           Yes   Higher Cost     4
## 3181            No     High Cost     2
## 3182            No      Low Cost     1
## 3183            No   Normal Cost     3
## 3184           Yes      Low Cost     1
## 3185           Yes   Higher Cost     2
## 3186           Yes   Higher Cost     2
## 3187           Yes  Highest Cost     3
## 3188           Yes     High Cost     1
## 3189           Yes   Normal Cost     1
## 3190           Yes   Higher Cost     1
## 3191           Yes      Low Cost     2
## 3192           Yes   Higher Cost     3
## 3193           Yes   Higher Cost     2
## 3194           Yes   Higher Cost     4
## 3195            No    Lower Cost     2
## 3196           Yes      Low Cost     1
## 3197           Yes   Higher Cost     2
## 3198            No     High Cost     2
## 3199            No   Normal Cost     4
## 3200           Yes      Low Cost     1
## 3201           Yes   Higher Cost     2
## 3202            No     High Cost     1
## 3203            No      Low Cost     1
## 3204           Yes   Normal Cost     2
## 3205            No   Higher Cost     4
## 3206           Yes   Normal Cost     2
## 3207           Yes     High Cost     2
## 3208           Yes   Higher Cost     2
## 3210           Yes   Higher Cost     3
## 3211            No      Low Cost     1
## 3213           Yes   Normal Cost     1
## 3215           Yes     High Cost    16
## 3216            No   Normal Cost     1
## 3217            No   Normal Cost     1
## 3218           Yes   Normal Cost     1
## 3219            No   Normal Cost     1
## 3221            No   Normal Cost     1
## 3222           Yes   Normal Cost     2
## 3223            No    Lower Cost     1
## 3224            No      Low Cost     1
## 3225           Yes   Higher Cost     1
## 3226           Yes   Higher Cost    17
## 3227            No     High Cost     1
## 3228           Yes   Higher Cost     4
## 3229            No   Normal Cost     7
## 3230           Yes     High Cost     1
## 3231           Yes     High Cost     3
## 3232            No    Lower Cost     1
## 3233           Yes     High Cost     1
## 3234           Yes  Highest Cost     2
## 3235           Yes   Normal Cost     1
## 3236            No   Higher Cost     1
## 3238           Yes   Normal Cost     1
## 3239           Yes   Higher Cost     2
## 3240           Yes     High Cost     2
## 3241           Yes     High Cost     2
## 3242           Yes     High Cost     1
## 3243           Yes      Low Cost     2
## 3244           Yes   Normal Cost     2
## 3245            No    Lower Cost     1
## 3246           Yes   Higher Cost     2
## 3247           Yes   Higher Cost     3
## 3248           Yes   Normal Cost     1
## 3249           Yes   Higher Cost     1
## 3250            No      Low Cost     1
## 3251           Yes    Lower Cost     1
## 3252            No   Normal Cost     4
## 3253            No      Low Cost     1
## 3254            No   Normal Cost     1
## 3255           Yes   Normal Cost     1
## 3256           Yes     High Cost     2
## 3257            No   Normal Cost     1
## 3258           Yes     High Cost     2
## 3259           Yes    Lower Cost     1
## 3260           Yes   Higher Cost     2
## 3261           Yes   Normal Cost     2
## 3262            No   Higher Cost     2
## 3263           Yes   Higher Cost     4
## 3264           Yes   Normal Cost     2
## 3266           Yes    Lower Cost     1
## 3267           Yes   Higher Cost     2
## 3268           Yes     High Cost     1
## 3269           Yes   Higher Cost     2
## 3270           Yes     High Cost     3
## 3271           Yes      Low Cost     1
## 3272           Yes     High Cost     2
## 3273           Yes    Lower Cost     2
## 3274            No     High Cost     1
## 3275           Yes   Normal Cost     1
## 3276           Yes  Highest Cost     2
## 3277           Yes     High Cost     2
## 3278           Yes    Lower Cost     1
## 3279           Yes   Normal Cost     2
## 3280           Yes   Higher Cost     2
## 3282           Yes   Normal Cost     2
## 3283           Yes     High Cost     3
## 3284           Yes   Normal Cost     2
## 3285            No   Normal Cost     4
## 3286           Yes   Higher Cost     2
## 3287           Yes     High Cost     2
## 3288           Yes   Higher Cost     1
## 3289           Yes   Higher Cost     1
## 3290           Yes     High Cost     2
## 3291           Yes   Normal Cost     2
## 3292           Yes   Higher Cost     2
## 3293           Yes   Normal Cost     4
## 3294           Yes   Higher Cost     2
## 3295           Yes     High Cost     2
## 3296            No   Normal Cost     1
## 3297           Yes     High Cost     2
## 3298           Yes   Higher Cost     2
## 3299           Yes   Normal Cost     2
## 3300           Yes   Higher Cost     2
## 3301           Yes  Highest Cost    10
## 3302           Yes   Higher Cost     2
## 3303           Yes     High Cost    13
## 3305           Yes    Lower Cost     1
## 3306           Yes    Lower Cost     1
## 3307           Yes   Higher Cost     4
## 3308           Yes     High Cost     2
## 3309           Yes   Normal Cost     2
## 3310           Yes     High Cost     1
## 3312           Yes      Low Cost     1
## 3313            No   Normal Cost     2
## 3314           Yes   Higher Cost    10
## 3315           Yes   Higher Cost     8
## 3316           Yes  Highest Cost    11
## 3317            No    Lower Cost     2
## 3318            No      Low Cost     1
## 3319            No   Normal Cost     4
## 3320           Yes    Lower Cost     2
## 3321            No    Lower Cost     1
## 3322            No   Normal Cost     2
## 3323           Yes   Higher Cost     2
## 3324            No   Normal Cost     1
## 3325           Yes   Higher Cost     4
## 3326            No    Lower Cost     1
## 3327           Yes   Higher Cost     2
## 3328            No     High Cost     1
## 3330           Yes   Normal Cost     1
## 3331           Yes   Higher Cost     2
## 3332           Yes     High Cost     2
## 3334           Yes   Higher Cost     2
## 3335            No     High Cost     2
## 3336            No     High Cost     3
## 3337            No     High Cost     1
## 3338            No     High Cost     1
## 3339            No    Lower Cost     1
## 3340            No      Low Cost     1
## 3341           Yes   Normal Cost     2
## 3342           Yes   Normal Cost     1
## 3343            No   Normal Cost     2
## 3344            No   Normal Cost     1
## 3346           Yes   Higher Cost     3
## 3347           Yes   Normal Cost     1
## 3348           Yes     High Cost     1
## 3349           Yes   Higher Cost     2
## 3350            No   Higher Cost     2
## 3351            No    Lower Cost     1
## 3352            No   Higher Cost     2
## 3353           Yes   Higher Cost     5
## 3354           Yes     High Cost     2
## 3355           Yes     High Cost     2
## 3356           Yes     High Cost     1
## 3357            No    Lower Cost     2
## 3358           Yes   Higher Cost     4
## 3359           Yes   Normal Cost     1
## 3360           Yes   Normal Cost     2
## 3361           Yes   Normal Cost     6
## 3362           Yes     High Cost     2
## 3363            No      Low Cost     2
## 3364            No      Low Cost     1
## 3365           Yes     High Cost     2
## 3366           Yes      Low Cost     1
## 3367           Yes   Normal Cost     1
## 3368            No  Highest Cost     1
## 3369           Yes   Higher Cost     2
## 3370           Yes   Higher Cost     2
## 3371            No    Lower Cost     1
## 3372           Yes   Higher Cost     3
## 3373           Yes   Higher Cost     4
## 3374           Yes     High Cost     2
## 3376            No   Normal Cost     1
## 3377           Yes   Higher Cost     2
## 3378           Yes   Normal Cost     1
## 3379            No   Normal Cost     1
## 3380           Yes  Highest Cost     2
## 3381            No     High Cost     2
## 3382           Yes   Normal Cost     1
## 3383           Yes     High Cost     1
## 3384           Yes  Highest Cost     1
## 3385           Yes     High Cost     2
## 3386           Yes     High Cost     2
## 3387           Yes   Higher Cost     2
## 3388            No   Normal Cost     3
## 3389            No     High Cost     3
## 3391           Yes     High Cost     3
## 3392            No   Normal Cost     1
## 3393           Yes   Higher Cost     4
## 3394           Yes   Higher Cost     2
## 3395            No      Low Cost     1
## 3396            No    Lower Cost     1
## 3398           Yes   Normal Cost     2
## 3399            No      Low Cost     1
## 3400           Yes   Higher Cost     2
## 3401           Yes      Low Cost     1
## 3402           Yes     High Cost     1
## 3403           Yes     High Cost     2
## 3404            No   Higher Cost     2
## 3405           Yes   Normal Cost     6
## 3406           Yes   Higher Cost     4
## 3407           Yes      Low Cost     1
## 3408           Yes     High Cost     2
## 3409            No    Lower Cost     1
## 3410           Yes     High Cost     2
## 3411           Yes   Higher Cost     2
## 3413            No   Normal Cost    10
## 3414           Yes     High Cost     1
## 3415           Yes    Lower Cost     1
## 3416           Yes   Higher Cost     2
## 3417           Yes      Low Cost     2
## 3418           Yes   Normal Cost     1
## 3419            No   Normal Cost     2
## 3422           Yes     High Cost     2
## 3423           Yes   Higher Cost     2
## 3424           Yes    Lower Cost     1
## 3425           Yes   Normal Cost     4
## 3426           Yes   Higher Cost     2
## 3428           Yes   Higher Cost     2
## 3429           Yes   Normal Cost     2
## 3430           Yes   Normal Cost     4
## 3431           Yes   Higher Cost     2
## 3432           Yes   Higher Cost     2
## 3433            No      Low Cost     1
## 3434            No     High Cost     1
## 3435           Yes   Normal Cost     2
## 3436            No      Low Cost     1
## 3437           Yes   Higher Cost     2
## 3438           Yes     High Cost     2
## 3439           Yes   Normal Cost     3
## 3440            No   Normal Cost     3
## 3441           Yes     High Cost     1
## 3442           Yes   Higher Cost     2
## 3443           Yes   Normal Cost     1
## 3444           Yes     High Cost     5
## 3445           Yes   Higher Cost     5
## 3446            No   Normal Cost     2
## 3447           Yes   Normal Cost     1
## 3448           Yes   Higher Cost     2
## 3449           Yes   Higher Cost     2
## 3450           Yes   Normal Cost     2
## 3451            No     High Cost     2
## 3452           Yes   Higher Cost     2
## 3453           Yes   Higher Cost     2
## 3454           Yes     High Cost     1
## 3455           Yes   Higher Cost     2
## 3456            No   Normal Cost     1
## 3457            No      Low Cost     1
## 3458           Yes   Normal Cost     2
## 3459           Yes    Lower Cost     2
## 3460           Yes   Higher Cost     1
## 3461           Yes   Normal Cost     1
## 3462            No      Low Cost     2
## 3463            No   Normal Cost     2
## 3464           Yes   Normal Cost     1
## 3465            No   Normal Cost     2
## 3466           Yes     High Cost     2
## 3467            No   Normal Cost     2
## 3468           Yes   Normal Cost     1
## 3469           Yes     High Cost     2
## 3470           Yes   Higher Cost     2
## 3471            No     High Cost     2
## 3472            No   Normal Cost     1
## 3473            No   Normal Cost     1
## 3474           Yes   Normal Cost     1
## 3476            No   Normal Cost     1
## 3477           Yes   Higher Cost     2
## 3478           Yes   Normal Cost     1
## 3479           Yes     High Cost     2
## 3480            No      Low Cost     2
## 3481            No   Higher Cost     7
## 3483           Yes   Higher Cost     4
## 3484            No   Higher Cost     1
## 3485           Yes     High Cost     3
## 3486           Yes   Higher Cost     2
## 3487            No    Lower Cost     1
## 3489            No   Normal Cost     1
## 3490           Yes   Higher Cost     3
## 3491           Yes   Higher Cost     2
## 3492            No   Normal Cost     1
## 3493           Yes   Higher Cost     2
## 3494            No     High Cost     3
## 3495           Yes   Higher Cost     1
## 3496           Yes   Normal Cost     2
## 3497            No      Low Cost     1
## 3498           Yes   Normal Cost     1
## 3499           Yes    Lower Cost     2
## 3500           Yes   Higher Cost     1
## 3501            No     High Cost     2
## 3502           Yes   Higher Cost     2
## 3503            No     High Cost     2
## 3504           Yes   Higher Cost     2
## 3505           Yes   Higher Cost     3
## 3506           Yes   Higher Cost     1
## 3507           Yes   Higher Cost     2
## 3508           Yes     High Cost     4
## 3510           Yes      Low Cost     1
## 3511           Yes   Normal Cost     1
## 3512           Yes     High Cost     1
## 3513            No     High Cost     3
## 3514           Yes   Normal Cost     2
## 3515            No   Higher Cost    10
## 3516            No   Higher Cost     1
## 3517           Yes   Higher Cost     2
## 3518            No      Low Cost     1
## 3519           Yes      Low Cost     2
## 3520           Yes   Normal Cost     4
## 3521           Yes   Normal Cost     1
## 3522           Yes   Normal Cost     3
## 3523           Yes   Higher Cost     1
## 3524           Yes   Higher Cost     3
## 3525           Yes   Higher Cost     2
## 3526            No   Normal Cost     2
## 3527            No     High Cost     5
## 3528           Yes   Normal Cost     1
## 3529            No   Normal Cost     2
## 3530            No      Low Cost     2
## 3531           Yes     High Cost     2
## 3532           Yes   Higher Cost     2
## 3533            No   Higher Cost     1
## 3534           Yes     High Cost     2
## 3535            No   Normal Cost     1
## 3536           Yes     High Cost     2
## 3537           Yes   Normal Cost     1
## 3538            No   Higher Cost     3
## 3539           Yes      Low Cost     1
## 3540           Yes   Normal Cost     1
## 3541           Yes   Normal Cost     1
## 3542           Yes     High Cost     2
## 3544           Yes     High Cost     2
## 3545            No    Lower Cost     2
## 3546           Yes   Normal Cost     2
## 3547           Yes   Normal Cost     1
## 3548           Yes   Higher Cost     2
## 3549            No      Low Cost     1
## 3550           Yes     High Cost     2
## 3551           Yes     High Cost     1
## 3552           Yes     High Cost     1
## 3553           Yes   Higher Cost     1
## 3554           Yes   Higher Cost     2
## 3555           Yes     High Cost     1
## 3556            No   Normal Cost     1
## 3557           Yes   Normal Cost     1
## 3558           Yes   Higher Cost     2
## 3559           Yes   Higher Cost     2
## 3560           Yes   Normal Cost     2
## 3561           Yes    Lower Cost     1
## 3562           Yes   Higher Cost     2
## 3563            No   Normal Cost     1
## 3564            No   Normal Cost     1
## 3565           Yes   Higher Cost     2
## 3567           Yes  Highest Cost     7
## 3568           Yes  Highest Cost     4
## 3569           Yes   Higher Cost     2
## 3570           Yes   Normal Cost     1
## 3571           Yes   Higher Cost     2
## 3573            No    Lower Cost     3
## 3574            No    Lower Cost     2
## 3575           Yes   Higher Cost     1
## 3576            No   Normal Cost     1
## 3577           Yes   Normal Cost     2
## 3578            No    Lower Cost     1
## 3579           Yes    Lower Cost     1
## 3580            No   Normal Cost     1
## 3581           Yes   Normal Cost     1
## 3582           Yes   Higher Cost     2
## 3583           Yes   Normal Cost     1
## 3584           Yes   Higher Cost     2
## 3585            No   Higher Cost     2
## 3586           Yes   Higher Cost     2
## 3587            No      Low Cost     1
## 3588            No   Normal Cost     1
## 3589            No      Low Cost     1
## 3590           Yes    Lower Cost     1
## 3591            No     High Cost     2
## 3592           Yes   Normal Cost     3
## 3593           Yes     High Cost     2
## 3594            No      Low Cost     1
## 3595           Yes   Higher Cost     2
## 3596            No    Lower Cost     7
## 3597           Yes   Higher Cost     2
## 3598            No   Normal Cost     2
## 3599            No   Normal Cost     2
## 3600           Yes    Lower Cost     1
## 3601            No      Low Cost     1
## 3602            No   Normal Cost     1
## 3603           Yes   Higher Cost     6
## 3604           Yes   Normal Cost     1
## 3605           Yes   Normal Cost     1
## 3606           Yes   Normal Cost     2
## 3607            No   Normal Cost     1
## 3608           Yes   Higher Cost     2
## 3609            No      Low Cost     1
## 3610           Yes   Higher Cost     2
## 3611           Yes   Higher Cost     4
## 3612           Yes   Normal Cost     6
## 3613           Yes   Higher Cost     2
## 3614            No   Higher Cost     5
## 3615            No   Normal Cost     1
## 3616            No   Normal Cost     1
## 3617            No    Lower Cost     1
## 3618           Yes      Low Cost     2
## 3619           Yes   Higher Cost     3
## 3620           Yes   Higher Cost     4
## 3621            No      Low Cost     1
## 3622           Yes   Normal Cost     1
## 3623           Yes     High Cost     3
## 3624           Yes   Higher Cost     3
## 3625            No    Lower Cost     7
## 3627           Yes   Higher Cost     3
## 3628           Yes   Higher Cost     2
## 3629            No   Normal Cost     2
## 3630           Yes     High Cost     2
## 3631            No      Low Cost     2
## 3632            No   Normal Cost     1
## 3633            No   Higher Cost     3
## 3634           Yes   Higher Cost     4
## 3635           Yes     High Cost     2
## 3637           Yes   Normal Cost     3
## 3638           Yes   Normal Cost     2
## 3639           Yes   Normal Cost     2
## 3640           Yes      Low Cost     2
## 3641           Yes   Higher Cost     2
## 3642           Yes     High Cost     2
## 3643           Yes   Higher Cost     2
## 3644           Yes   Higher Cost     2
## 3645           Yes   Higher Cost     2
## 3646           Yes     High Cost     1
## 3647           Yes    Lower Cost     1
## 3648           Yes   Higher Cost     2
## 3649           Yes   Normal Cost     1
## 3650           Yes   Normal Cost     1
## 3652           Yes     High Cost     1
## 3653           Yes   Normal Cost     2
## 3654            No      Low Cost     1
## 3655            No   Normal Cost     1
## 3656           Yes   Higher Cost     2
## 3657           Yes     High Cost     2
## 3658           Yes   Higher Cost     2
## 3659            No   Normal Cost     1
## 3660           Yes     High Cost     2
## 3661           Yes     High Cost     2
## 3662            No    Lower Cost     1
## 3663           Yes      Low Cost     2
## 3664           Yes     High Cost     2
## 3665            No      Low Cost     1
## 3667           Yes   Higher Cost     2
## 3668           Yes    Lower Cost     1
## 3670            No    Lower Cost     1
## 3671           Yes      Low Cost     1
## 3672            No    Lower Cost     1
## 3673           Yes     High Cost     1
## 3674            No      Low Cost     1
## 3675            No   Normal Cost     1
## 3676           Yes     High Cost     1
## 3677           Yes   Normal Cost     5
## 3678           Yes   Normal Cost     1
## 3679           Yes   Normal Cost     1
## 3680           Yes   Higher Cost     2
## 3681           Yes   Higher Cost     2
## 3682           Yes   Higher Cost     2
## 3683           Yes   Higher Cost     2
## 3684           Yes   Higher Cost     5
## 3685           Yes   Normal Cost     2
## 3686           Yes    Lower Cost     1
## 3687           Yes   Normal Cost     1
## 3688            No   Higher Cost     3
## 3689           Yes   Normal Cost     1
## 3690           Yes   Normal Cost     2
## 3691           Yes      Low Cost     1
## 3692           Yes   Normal Cost     1
## 3694           Yes   Higher Cost     2
## 3695           Yes   Normal Cost     2
## 3696           Yes   Normal Cost     1
## 3697           Yes   Higher Cost     2
## 3698           Yes   Higher Cost     4
## 3699           Yes   Higher Cost     2
## 3700            No    Lower Cost     1
## 3701            No      Low Cost     1
## 3702            No      Low Cost     1
## 3703           Yes   Higher Cost     2
## 3704           Yes   Higher Cost     2
## 3706            No   Normal Cost     2
## 3707           Yes     High Cost     1
## 3708           Yes   Higher Cost     1
## 3709           Yes   Higher Cost     4
## 3710           Yes   Higher Cost     2
## 3711           Yes   Normal Cost     2
## 3712           Yes   Higher Cost     1
## 3713           Yes   Normal Cost     1
## 3714           Yes     High Cost     3
## 3715            No   Higher Cost     3
## 3716           Yes   Higher Cost     2
## 3717           Yes   Higher Cost     5
## 3718           Yes   Higher Cost     1
## 3719            No    Lower Cost     2
## 3720           Yes     High Cost     2
## 3721           Yes   Normal Cost     4
## 3722           Yes     High Cost     1
## 3723            No     High Cost     2
## 3724           Yes   Normal Cost     2
## 3725            No    Lower Cost     1
## 3726            No   Normal Cost     1
## 3727           Yes   Higher Cost     2
## 3728            No   Normal Cost     4
## 3729           Yes   Higher Cost     2
## 3730            No    Lower Cost     2
## 3731           Yes   Normal Cost     2
## 3732           Yes     High Cost     2
## 3733           Yes   Higher Cost     1
## 3734           Yes   Higher Cost     4
## 3736            No   Normal Cost     2
## 3737           Yes   Higher Cost     2
## 3738           Yes   Normal Cost     3
## 3739           Yes   Normal Cost     1
## 3740            No   Normal Cost     1
## 3741           Yes    Lower Cost     2
## 3742            No      Low Cost     1
## 3743            No     High Cost     2
## 3744            No   Higher Cost     1
## 3745           Yes     High Cost     1
## 3746           Yes   Higher Cost     2
## 3747           Yes   Higher Cost     2
## 3748            No    Lower Cost     1
## 3749           Yes   Higher Cost     2
## 3750           Yes      Low Cost     4
## 3751           Yes   Higher Cost     1
## 3752           Yes    Lower Cost     1
## 3753            No    Lower Cost     1
## 3754           Yes   Higher Cost     1
## 3755           Yes   Higher Cost     1
## 3756            No   Normal Cost     1
## 3757           Yes    Lower Cost     2
## 3758            No   Normal Cost     1
## 3759           Yes   Normal Cost     1
## 3760           Yes   Higher Cost     2
## 3761           Yes      Low Cost     2
## 3762            No   Normal Cost     1
## 3763           Yes   Higher Cost     2
## 3764           Yes     High Cost     1
## 3765           Yes   Normal Cost     2
## 3766           Yes     High Cost     2
## 3767            No      Low Cost     1
## 3768           Yes   Higher Cost     1
## 3769           Yes   Normal Cost     1
## 3770            No      Low Cost     1
## 3771            No      Low Cost     2
## 3774            No   Normal Cost     1
## 3775            No    Lower Cost     1
## 3776           Yes     High Cost     1
## 3777           Yes     High Cost     1
## 3778            No    Lower Cost     2
## 3779           Yes  Highest Cost    11
## 3780           Yes   Higher Cost     1
## 3781           Yes   Higher Cost     2
## 3782            No      Low Cost     1
## 3783            No     High Cost     2
## 3784           Yes     High Cost     3
## 3785            No      Low Cost     1
## 3786           Yes   Higher Cost     1
## 3787           Yes   Normal Cost     1
## 3788           Yes   Higher Cost     4
## 3789            No    Lower Cost     1
## 3790            No   Higher Cost     2
## 3791            No     High Cost     1
## 3792           Yes   Higher Cost     1
## 3793           Yes      Low Cost     1
## 3794           Yes   Normal Cost     2
## 3795           Yes   Higher Cost     5
## 3796           Yes   Normal Cost     1
## 3797           Yes     High Cost     1
## 3798           Yes    Lower Cost     1
## 3800           Yes   Higher Cost     2
## 3801           Yes   Normal Cost     2
## 3802            No     High Cost     2
## 3803           Yes  Highest Cost     6
## 3804            No     High Cost     1
## 3806           Yes     High Cost     2
## 3807            No   Normal Cost     3
## 3808           Yes     High Cost     4
## 3809            No    Lower Cost     1
## 3810           Yes  Highest Cost     2
## 3811           Yes   Higher Cost     2
## 3812           Yes     High Cost     1
## 3813           Yes     High Cost     2
## 3814           Yes     High Cost     2
## 3815            No      Low Cost     1
## 3816           Yes   Normal Cost     2
## 3817           Yes    Lower Cost     8
## 3818            No    Lower Cost     1
## 3819           Yes   Higher Cost     2
## 3820            No    Lower Cost     2
## 3821           Yes   Higher Cost     2
## 3822           Yes   Higher Cost     2
## 3823           Yes   Higher Cost     2
## 3824           Yes   Normal Cost     1
## 3825            No      Low Cost     2
## 3826            No   Higher Cost     1
## 3827            No   Higher Cost     2
## 3828            No   Normal Cost     1
## 3829            No   Normal Cost     1
## 3830           Yes   Normal Cost     1
## 3831           Yes   Higher Cost     2
## 3832           Yes    Lower Cost     1
## 3833            No   Higher Cost     4
## 3834           Yes   Higher Cost     1
## 3835           Yes   Higher Cost     2
## 3836           Yes   Normal Cost     2
## 3837           Yes   Higher Cost     1
## 3838           Yes     High Cost     1
## 3839           Yes  Highest Cost     2
## 3840           Yes   Normal Cost     3
## 3841           Yes   Normal Cost     3
## 3842           Yes   Higher Cost     4
## 3843           Yes   Normal Cost     1
## 3844           Yes     High Cost     5
## 3846            No     High Cost     1
## 3847           Yes   Higher Cost     2
## 3848            No      Low Cost     1
## 3849            No      Low Cost     1
## 3850           Yes   Higher Cost     6
## 3851           Yes     High Cost     2
## 3852           Yes     High Cost     2
## 3853            No   Normal Cost     1
## 3854            No   Normal Cost     1
## 3855           Yes   Higher Cost     1
## 3856           Yes   Higher Cost     2
## 3857           Yes   Higher Cost     2
## 3858            No   Normal Cost     1
## 3859           Yes   Higher Cost     2
## 3860           Yes     High Cost     1
## 3861           Yes   Higher Cost    18
## 3862           Yes     High Cost     1
## 3863           Yes   Higher Cost     3
## 3864           Yes    Lower Cost     1
## 3865           Yes   Higher Cost     1
## 3866           Yes   Higher Cost     2
## 3867           Yes  Highest Cost     1
## 3868           Yes   Normal Cost     1
## 3869            No    Lower Cost     1
## 3870           Yes     High Cost     1
## 3871           Yes   Normal Cost     1
## 3872            No   Normal Cost     1
## 3873            No     High Cost     2
## 3874            No   Normal Cost     1
## 3875            No   Normal Cost     1
## 3876           Yes   Higher Cost     2
## 3877           Yes   Normal Cost     2
## 3878           Yes   Normal Cost     2
## 3879           Yes     High Cost     2
## 3880           Yes     High Cost     1
## 3881           Yes   Higher Cost     1
## 3882            No     High Cost     3
## 3883           Yes   Higher Cost     2
## 3884           Yes   Normal Cost     2
## 3885           Yes     High Cost     1
## 3886           Yes   Normal Cost     1
## 3887           Yes     High Cost     2
## 3888           Yes   Higher Cost     2
## 3889           Yes  Highest Cost     1
## 3890           Yes   Higher Cost     2
## 3891            No     High Cost     1
## 3892            No   Normal Cost     3
## 3893           Yes   Higher Cost     2
## 3894           Yes     High Cost     2
## 3895            No    Lower Cost     1
## 3896           Yes   Higher Cost     2
## 3897            No    Lower Cost     1
## 3898           Yes   Normal Cost     1
## 3899           Yes   Normal Cost     2
## 3900            No   Normal Cost     2
## 3902           Yes     High Cost     2
## 3903           Yes   Higher Cost     1
## 3904           Yes     High Cost     2
## 3905           Yes     High Cost     1
## 3906           Yes   Normal Cost     1
## 3907           Yes   Higher Cost     2
## 3908           Yes   Higher Cost     2
## 3909           Yes   Higher Cost     2
## 3910           Yes   Normal Cost     2
## 3911            No   Higher Cost     3
## 3912           Yes   Higher Cost     1
## 3913           Yes   Higher Cost     2
## 3914           Yes      Low Cost     2
## 3915           Yes   Normal Cost     2
## 3916           Yes   Normal Cost     2
## 3917            No   Normal Cost     2
## 3918            No   Normal Cost     1
## 3919            No   Higher Cost     3
## 3920            No   Normal Cost     1
## 3921            No    Lower Cost     1
## 3922           Yes    Lower Cost     1
## 3923           Yes   Higher Cost     2
## 3924            No      Low Cost     1
## 3925           Yes      Low Cost     1
## 3926            No   Normal Cost     1
## 3927           Yes   Higher Cost     5
## 3928           Yes   Normal Cost     2
## 3929           Yes   Higher Cost     4
## 3930            No      Low Cost     2
## 3931            No   Normal Cost     1
## 3932           Yes     High Cost     1
## 3933           Yes   Higher Cost     2
## 3934            No     High Cost     1
## 3935            No      Low Cost     1
## 3936            No     High Cost     1
## 3937           Yes   Higher Cost     2
## 3939           Yes   Higher Cost     2
## 3940           Yes    Lower Cost     2
## 3941            No   Normal Cost     1
## 3943           Yes    Lower Cost     1
## 3944            No      Low Cost     1
## 3945           Yes   Normal Cost     3
## 3946           Yes   Higher Cost     3
## 3947           Yes     High Cost     2
## 3949           Yes     High Cost     1
## 3950           Yes  Highest Cost     2
## 3952            No   Normal Cost     1
## 3953            No      Low Cost     1
## 3954           Yes   Higher Cost     4
## 3955            No   Normal Cost     1
## 3957            No   Higher Cost     1
## 3958           Yes      Low Cost     1
## 3959           Yes   Higher Cost     4
## 3960            No   Normal Cost     1
## 3961           Yes   Normal Cost     2
## 3962           Yes   Normal Cost     1
## 3963           Yes   Higher Cost     2
## 3964           Yes    Lower Cost     1
## 3965           Yes    Lower Cost     1
## 3966           Yes   Higher Cost     2
## 3967           Yes   Higher Cost     1
## 3968            No    Lower Cost     1
## 3969           Yes   Higher Cost     2
## 3970            No   Higher Cost     2
## 3971           Yes   Higher Cost     2
## 3972            No   Normal Cost     1
## 3973            No   Higher Cost     2
## 3974           Yes      Low Cost     2
## 3975           Yes   Higher Cost     2
## 3976            No   Normal Cost     3
## 3978           Yes   Normal Cost     1
## 3979           Yes     High Cost    10
## 3980           Yes   Higher Cost     3
## 3981           Yes      Low Cost     2
## 3982           Yes    Lower Cost     2
## 3983           Yes   Higher Cost     4
## 3984           Yes     High Cost     1
## 3985           Yes   Normal Cost     2
## 3986           Yes   Higher Cost     2
## 3987           Yes   Higher Cost     2
## 3988           Yes    Lower Cost     1
## 3989            No   Normal Cost     1
## 3990           Yes   Normal Cost     2
## 3991           Yes   Normal Cost     4
## 3992           Yes   Higher Cost     2
## 3993           Yes  Highest Cost     2
## 3994           Yes   Normal Cost     2
## 3995           Yes     High Cost     2
## 3996           Yes     High Cost     1
## 3997           Yes   Normal Cost     2
## 3998           Yes    Lower Cost     1
## 3999           Yes   Higher Cost     6
## 4000           Yes     High Cost     2
## 4001            No   Normal Cost     1
## 4002           Yes    Lower Cost     1
## 4003           Yes     High Cost     2
## 4004            No    Lower Cost     1
## 4005           Yes     High Cost     3
## 4006           Yes    Lower Cost     2
## 4007           Yes   Higher Cost     2
## 4008            No   Normal Cost     1
## 4009           Yes      Low Cost     1
## 4010           Yes   Normal Cost     9
## 4011           Yes   Normal Cost     2
## 4012           Yes    Lower Cost     1
## 4013           Yes   Normal Cost     1
## 4014           Yes   Higher Cost     2
## 4015            No    Lower Cost     1
## 4016           Yes   Normal Cost     1
## 4017            No      Low Cost     1
## 4018           Yes     High Cost     2
## 4019           Yes   Higher Cost     2
## 4020            No     High Cost     1
## 4021           Yes   Normal Cost     2
## 4022           Yes   Normal Cost     1
## 4023           Yes   Higher Cost     2
## 4024            No   Normal Cost     1
## 4025           Yes   Higher Cost     2
## 4026            No   Normal Cost     2
## 4027           Yes   Higher Cost     3
## 4028            No   Normal Cost     1
## 4029           Yes    Lower Cost     2
## 4030            No   Normal Cost     1
## 4031           Yes   Normal Cost     2
## 4032            No     High Cost     2
## 4033           Yes   Normal Cost     1
## 4034           Yes    Lower Cost     1
## 4035            No     High Cost     2
## 4036           Yes   Normal Cost     1
## 4037           Yes     High Cost     1
## 4038           Yes    Lower Cost     2
## 4039           Yes   Normal Cost     2
## 4040            No    Lower Cost     2
## 4041           Yes   Higher Cost     2
## 4042           Yes   Normal Cost     2
## 4043           Yes   Higher Cost     2
## 4044           Yes   Higher Cost     2
## 4046           Yes   Higher Cost     2
## 4047           Yes     High Cost     1
## 4048           Yes   Normal Cost     3
## 4049           Yes     High Cost     2
## 4050           Yes   Higher Cost    15
## 4051           Yes   Normal Cost     5
## 4052           Yes      Low Cost     9
## 4053           Yes   Higher Cost     2
## 4054            No    Lower Cost     1
## 4055           Yes     High Cost     2
## 4056            No   Normal Cost     3
## 4057            No    Lower Cost     2
## 4058           Yes   Normal Cost     3
## 4061            No   Normal Cost     3
## 4062            No      Low Cost     1
## 4063            No   Normal Cost     1
## 4064            No      Low Cost    11
## 4065           Yes   Normal Cost     3
## 4067            No     High Cost     3
## 4068            No   Normal Cost     1
## 4069           Yes   Normal Cost     2
## 4070            No   Normal Cost     1
## 4071           Yes   Higher Cost     1
## 4072            No     High Cost     1
## 4073           Yes     High Cost     2
## 4074           Yes   Higher Cost     2
## 4075           Yes     High Cost     2
## 4076           Yes   Higher Cost     1
## 4077           Yes   Normal Cost     1
## 4078           Yes   Normal Cost     1
## 4079            No   Normal Cost     1
## 4080           Yes   Higher Cost     1
## 4081           Yes   Normal Cost     1
## 4082           Yes     High Cost     1
## 4083            No     High Cost     2
## 4084           Yes     High Cost     1
## 4085           Yes   Higher Cost     1
## 4086            No   Normal Cost     1
## 4087            No    Lower Cost     1
## 4088           Yes   Higher Cost     2
## 4089           Yes   Normal Cost     1
## 4090           Yes     High Cost     2
## 4091           Yes   Higher Cost     6
## 4092           Yes    Lower Cost     2
## 4094           Yes   Higher Cost     2
## 4095            No     High Cost     2
## 4096           Yes   Normal Cost     2
## 4097           Yes     High Cost     1
## 4098           Yes    Lower Cost     3
## 4099           Yes    Lower Cost     1
## 4100           Yes   Normal Cost     1
## 4101           Yes  Highest Cost     2
## 4102            No   Higher Cost     2
## 4103           Yes     High Cost     2
## 4104           Yes   Normal Cost     1
## 4105            No   Higher Cost     2
## 4106           Yes   Normal Cost     2
## 4107            No   Normal Cost     2
## 4108           Yes    Lower Cost     2
## 4109           Yes   Normal Cost     2
## 4111            No      Low Cost     1
## 4112            No      Low Cost     1
## 4113           Yes   Normal Cost     1
## 4114           Yes    Lower Cost     1
## 4115            No    Lower Cost     1
## 4116           Yes     High Cost     2
## 4117           Yes     High Cost     2
## 4118            No   Normal Cost     1
## 4119           Yes      Low Cost     1
## 4121           Yes   Higher Cost     2
## 4122           Yes    Lower Cost     1
## 4123           Yes    Lower Cost     1
## 4124            No    Lower Cost     1
## 4126           Yes   Normal Cost     1
## 4127           Yes     High Cost     1
## 4130            No   Normal Cost     2
## 4131            No   Normal Cost     4
## 4133           Yes   Normal Cost     2
## 4134           Yes     High Cost     1
## 4135            No   Normal Cost     2
## 4136            No   Normal Cost     3
## 4137           Yes   Higher Cost     1
## 4138           Yes   Higher Cost     2
## 4139            No    Lower Cost     1
## 4140           Yes     High Cost     2
## 4141           Yes   Higher Cost     2
## 4142           Yes    Lower Cost     1
## 4143           Yes    Lower Cost     1
## 4144           Yes   Higher Cost     9
## 4145           Yes   Higher Cost     2
## 4146           Yes    Lower Cost     2
## 4147           Yes     High Cost     2
## 4148           Yes      Low Cost     1
## 4149           Yes   Higher Cost     2
## 4150           Yes      Low Cost     1
## 4151           Yes     High Cost     2
## 4152           Yes     High Cost     2
## 4153            No   Normal Cost     2
## 4154           Yes      Low Cost     7
## 4155            No   Normal Cost     2
## 4156           Yes   Higher Cost     2
## 4157           Yes    Lower Cost     1
## 4158           Yes      Low Cost     2
## 4159           Yes   Higher Cost     2
## 4160           Yes   Normal Cost     1
## 4161            No     High Cost     1
## 4162           Yes     High Cost     2
## 4163            No    Lower Cost     1
## 4164            No   Normal Cost     1
## 4165            No   Normal Cost     1
## 4166            No   Normal Cost     1
## 4167           Yes  Highest Cost     4
## 4168            No     High Cost     1
## 4169            No      Low Cost     1
## 4170           Yes    Lower Cost     1
## 4171           Yes   Higher Cost     1
## 4172            No     High Cost     2
## 4173            No   Normal Cost     2
## 4174           Yes     High Cost     2
## 4175           Yes     High Cost     4
## 4176           Yes   Higher Cost     4
## 4177           Yes   Higher Cost     2
## 4178           Yes    Lower Cost     1
## 4179           Yes   Normal Cost     3
## 4180           Yes   Higher Cost     1
## 4181           Yes   Normal Cost     2
## 4182            No     High Cost     1
## 4183           Yes   Normal Cost     1
## 4184           Yes   Normal Cost     1
## 4185           Yes     High Cost     1
## 4186           Yes   Normal Cost     2
## 4187            No   Normal Cost     1
## 4188           Yes   Normal Cost     2
## 4189            No   Normal Cost     1
## 4190           Yes      Low Cost     2
## 4191           Yes   Higher Cost     5
## 4192           Yes     High Cost     2
## 4193           Yes    Lower Cost     6
## 4194           Yes   Normal Cost     1
## 4195           Yes     High Cost     4
## 4196            No  Highest Cost     3
## 4197           Yes      Low Cost     1
## 4198           Yes    Lower Cost     1
## 4199           Yes     High Cost     1
## 4200            No    Lower Cost     1
## 4201           Yes    Lower Cost     2
## 4202           Yes    Lower Cost     1
## 4203           Yes      Low Cost     2
## 4204           Yes   Normal Cost     1
## 4205           Yes   Higher Cost     5
## 4206            No      Low Cost     1
## 4207           Yes   Normal Cost     1
## 4209            No     High Cost     1
## 4211           Yes      Low Cost     2
## 4212            No     High Cost     1
## 4213            No   Normal Cost     1
## 4214            No   Normal Cost     1
## 4215           Yes      Low Cost     4
## 4216           Yes     High Cost     1
## 4217           Yes   Normal Cost     1
## 4218           Yes   Higher Cost     2
## 4220            No     High Cost     2
## 4221           Yes   Higher Cost     8
## 4222            No      Low Cost     1
## 4223           Yes   Normal Cost     1
## 4224           Yes    Lower Cost     1
## 4225           Yes   Higher Cost     8
## 4226            No    Lower Cost     1
## 4227           Yes     High Cost     2
## 4228            No      Low Cost     1
## 4229           Yes  Highest Cost     2
## 4230           Yes   Normal Cost     2
## 4232           Yes     High Cost     1
## 4233            No   Normal Cost     1
## 4234           Yes     High Cost     1
## 4235           Yes   Higher Cost     2
## 4236           Yes   Higher Cost     3
## 4237           Yes     High Cost     3
## 4238           Yes     High Cost     2
## 4239            No   Normal Cost     1
## 4240           Yes   Normal Cost     1
## 4241           Yes   Higher Cost     3
## 4242            No    Lower Cost     1
## 4243           Yes   Normal Cost     2
## 4244           Yes     High Cost     2
## 4245           Yes   Higher Cost     2
## 4246            No   Higher Cost     5
## 4247            No   Higher Cost     2
## 4248            No   Higher Cost     2
## 4249           Yes   Higher Cost     2
## 4250            No    Lower Cost     1
## 4251           Yes   Normal Cost     7
## 4252           Yes     High Cost     4
## 4253            No    Lower Cost     1
## 4254            No     High Cost     5
## 4255           Yes      Low Cost     1
## 4257           Yes    Lower Cost     2
## 4258           Yes     High Cost     2
## 4259            No     High Cost     1
## 4260            No     High Cost     1
## 4261           Yes     High Cost     2
## 4262            No   Higher Cost     2
## 4263           Yes   Normal Cost     1
## 4264           Yes   Normal Cost     2
## 4265           Yes   Higher Cost     1
## 4266           Yes   Normal Cost     1
## 4267           Yes      Low Cost     1
## 4268           Yes   Normal Cost     2
## 4269           Yes   Normal Cost     1
## 4270           Yes   Higher Cost     2
## 4271            No   Normal Cost     6
## 4272           Yes     High Cost     3
## 4273           Yes   Higher Cost     2
## 4275            No   Normal Cost     1
## 4276           Yes   Higher Cost     2
## 4277           Yes   Normal Cost     2
## 4278           Yes   Higher Cost     2
## 4279           Yes   Higher Cost     1
## 4280           Yes      Low Cost     1
## 4282           Yes   Normal Cost     1
## 4283           Yes   Normal Cost     2
## 4285           Yes   Higher Cost     3
## 4286            No      Low Cost     1
## 4287            No     High Cost     1
## 4288           Yes   Higher Cost     2
## 4289           Yes   Normal Cost     2
## 4290           Yes     High Cost     6
## 4291           Yes   Higher Cost     3
## 4292           Yes     High Cost     1
## 4293            No    Lower Cost     1
## 4294           Yes    Lower Cost     1
## 4295           Yes   Higher Cost     2
## 4296           Yes     High Cost     2
## 4297           Yes      Low Cost     1
## 4298           Yes     High Cost     2
## 4299            No   Normal Cost     1
## 4300           Yes     High Cost     1
## 4301            No      Low Cost     2
## 4302           Yes   Higher Cost     2
## 4303            No    Lower Cost     1
## 4304            No   Higher Cost     4
## 4305           Yes   Higher Cost     2
## 4306           Yes    Lower Cost     1
## 4307           Yes     High Cost     1
## 4308            No    Lower Cost     1
## 4309           Yes      Low Cost     1
## 4310           Yes   Normal Cost     3
## 4311           Yes   Higher Cost     2
## 4312            No   Higher Cost     1
## 4313           Yes   Normal Cost     2
## 4314            No      Low Cost     2
## 4315           Yes     High Cost     2
## 4316           Yes   Normal Cost     1
## 4317            No    Lower Cost     1
## 4318           Yes   Higher Cost     2
## 4319           Yes   Higher Cost     2
## 4320           Yes     High Cost     4
## 4321           Yes     High Cost     2
## 4322           Yes   Higher Cost     2
## 4323           Yes     High Cost     1
## 4324           Yes   Higher Cost     2
## 4325           Yes     High Cost     1
## 4326           Yes   Normal Cost     2
## 4327            No    Lower Cost     1
## 4328           Yes   Higher Cost     1
## 4329           Yes    Lower Cost     2
## 4330            No   Normal Cost     2
## 4331           Yes     High Cost     1
## 4332            No      Low Cost     1
## 4333           Yes      Low Cost     1
## 4334           Yes     High Cost     2
## 4335            No   Normal Cost     2
## 4336           Yes   Normal Cost     1
## 4337           Yes      Low Cost     1
## 4338            No   Normal Cost     2
## 4339           Yes    Lower Cost     4
## 4340           Yes  Highest Cost     2
## 4341           Yes   Higher Cost     4
## 4342            No   Normal Cost     1
## 4343            No   Higher Cost     2
## 4344            No   Normal Cost     1
## 4345           Yes   Normal Cost     2
## 4346            No    Lower Cost     1
## 4347           Yes   Normal Cost     6
## 4348            No    Lower Cost     1
## 4349            No   Normal Cost     1
## 4350            No    Lower Cost     1
## 4351           Yes    Lower Cost     2
## 4352            No   Higher Cost     3
## 4353            No   Higher Cost     1
## 4354           Yes   Normal Cost     1
## 4355            No      Low Cost     1
## 4356           Yes   Higher Cost     1
## 4357            No    Lower Cost     1
## 4358           Yes     High Cost     1
## 4359           Yes   Normal Cost     2
## 4360           Yes   Higher Cost     7
## 4361           Yes     High Cost     1
## 4362           Yes   Normal Cost     2
## 4363           Yes     High Cost     1
## 4364           Yes   Higher Cost     2
## 4365            No    Lower Cost     1
## 4366            No      Low Cost     1
## 4367           Yes   Normal Cost     2
## 4368           Yes   Higher Cost     2
## 4369           Yes     High Cost     2
## 4370           Yes      Low Cost     3
## 4371            No   Normal Cost     1
## 4372           Yes     High Cost     4
## 4373            No      Low Cost     1
## 4374           Yes   Normal Cost     2
## 4375           Yes    Lower Cost     1
## 4376            No     High Cost    13
## 4377            No   Higher Cost     2
## 4378            No   Normal Cost    22
## 4379            No    Lower Cost     1
## 4380           Yes    Lower Cost     1
## 4381           Yes      Low Cost     1
## 4383            No   Higher Cost     2
## 4384           Yes   Higher Cost     3
## 4385           Yes   Higher Cost     4
## 4386           Yes   Higher Cost     1
## 4387           Yes   Normal Cost     3
## 4388           Yes   Higher Cost     4
## 4389           Yes   Normal Cost     2
## 4390           Yes   Higher Cost     4
## 4391           Yes     High Cost     2
## 4392            No   Higher Cost     1
## 4393           Yes     High Cost     3
## 4394           Yes   Normal Cost     1
## 4395           Yes     High Cost     1
## 4396           Yes   Normal Cost     4
## 4397           Yes   Higher Cost     2
## 4398           Yes   Higher Cost     2
## 4400           Yes   Higher Cost     7
## 4401           Yes   Higher Cost     2
## 4402           Yes     High Cost     4
## 4403           Yes   Higher Cost     3
## 4404           Yes      Low Cost     1
## 4405           Yes     High Cost     1
## 4406            No     High Cost     3
## 4407            No   Normal Cost     4
## 4408            No    Lower Cost     1
## 4409            No      Low Cost     1
## 4410           Yes   Higher Cost     1
## 4411           Yes   Higher Cost     2
## 4412           Yes   Higher Cost     2
## 4413           Yes   Higher Cost     1
## 4414           Yes      Low Cost     1
## 4415            No    Lower Cost     1
## 4416            No   Normal Cost     1
## 4417           Yes   Normal Cost     1
## 4419            No   Normal Cost     2
## 4420           Yes   Higher Cost     1
## 4421           Yes   Normal Cost     2
## 4422           Yes   Higher Cost     2
## 4423            No   Higher Cost     2
## 4424           Yes     High Cost     2
## 4425           Yes   Higher Cost     2
## 4426           Yes     High Cost     2
## 4427           Yes     High Cost     1
## 4428            No   Normal Cost     1
## 4429           Yes     High Cost     2
## 4430           Yes     High Cost     2
## 4431            No   Normal Cost     2
## 4432           Yes     High Cost     1
## 4433           Yes   Normal Cost     1
## 4434           Yes   Normal Cost     1
## 4435            No    Lower Cost     1
## 4436           Yes   Higher Cost     1
## 4437           Yes   Normal Cost     1
## 4438            No   Normal Cost     1
## 4439           Yes   Higher Cost     3
## 4440           Yes   Normal Cost     2
## 4441           Yes     High Cost     2
## 4442           Yes   Higher Cost     2
## 4443            No    Lower Cost     1
## 4444           Yes   Normal Cost     2
## 4445            No    Lower Cost     1
## 4446           Yes   Higher Cost     3
## 4447           Yes   Normal Cost     1
## 4448            No    Lower Cost     1
## 4449           Yes   Normal Cost     1
## 4450            No    Lower Cost     1
## 4451            No    Lower Cost     1
## 4452           Yes   Higher Cost     2
## 4453           Yes   Normal Cost     2
## 4454           Yes   Higher Cost     2
## 4455           Yes   Normal Cost     1
## 4456            No   Normal Cost     1
## 4457            No     High Cost     3
## 4458            No    Lower Cost     1
## 4459           Yes   Higher Cost     2
## 4460           Yes     High Cost     2
## 4461           Yes     High Cost     2
## 4462            No   Normal Cost     2
## 4463           Yes    Lower Cost     3
## 4464           Yes      Low Cost     4
## 4465            No   Higher Cost     2
## 4466            No   Normal Cost     1
## 4467           Yes     High Cost     1
## 4468           Yes     High Cost     4
## 4469           Yes   Higher Cost     4
## 4471            No    Lower Cost     2
## 4472           Yes   Higher Cost     2
## 4473           Yes   Normal Cost     2
## 4475            No     High Cost     1
## 4476           Yes    Lower Cost     1
## 4477            No    Lower Cost     1
## 4478            No    Lower Cost     1
## 4479           Yes   Higher Cost     2
## 4480            No    Lower Cost     1
## 4481           Yes    Lower Cost     1
## 4482           Yes   Normal Cost     1
## 4483           Yes   Normal Cost     2
## 4485           Yes    Lower Cost     1
## 4486            No      Low Cost     1
## 4487            No      Low Cost     1
## 4488           Yes   Higher Cost     2
## 4489           Yes   Normal Cost     2
## 4490           Yes   Normal Cost     1
## 4491           Yes   Higher Cost    10
## 4492           Yes     High Cost     2
## 4493           Yes   Higher Cost     2
## 4494            No   Normal Cost     1
## 4495           Yes      Low Cost     1
## 4496            No      Low Cost     1
## 4497            No   Normal Cost     1
## 4498           Yes      Low Cost     1
## 4499           Yes   Normal Cost     1
## 4500           Yes   Higher Cost     1
## 4501           Yes   Higher Cost     4
## 4502           Yes     High Cost     1
## 4504            No   Normal Cost     1
## 4505           Yes     High Cost     8
## 4506           Yes    Lower Cost     1
## 4507           Yes   Higher Cost     2
## 4508           Yes   Higher Cost     2
## 4509           Yes   Higher Cost     3
## 4510           Yes  Highest Cost     4
## 4511            No    Lower Cost     1
## 4512           Yes   Higher Cost     2
## 4513           Yes     High Cost     1
## 4514           Yes   Higher Cost     4
## 4515            No    Lower Cost     1
## 4516           Yes   Higher Cost     2
## 4517            No   Normal Cost     3
## 4518           Yes   Normal Cost     1
## 4519           Yes   Normal Cost     2
## 4520            No   Normal Cost     2
## 4521           Yes   Normal Cost     2
## 4522           Yes   Higher Cost     1
## 4523           Yes     High Cost     2
## 4524           Yes    Lower Cost     1
## 4525           Yes   Higher Cost     3
## 4526            No   Normal Cost     1
## 4528           Yes   Normal Cost     2
## 4529            No    Lower Cost     3
## 4530            No    Lower Cost     1
## 4531            No    Lower Cost     1
## 4532           Yes      Low Cost     1
## 4533            No      Low Cost     1
## 4534           Yes   Higher Cost     2
## 4535           Yes   Normal Cost     1
## 4536           Yes   Normal Cost     7
## 4537           Yes  Highest Cost     4
## 4538           Yes   Higher Cost     1
## 4539           Yes   Higher Cost     3
## 4540           Yes   Normal Cost     1
## 4541            No    Lower Cost     1
## 4542           Yes    Lower Cost     1
## 4543           Yes   Normal Cost     1
## 4545            No      Low Cost     1
## 4546           Yes   Higher Cost    11
## 4547           Yes   Normal Cost     2
## 4548           Yes    Lower Cost     1
## 4549           Yes  Highest Cost     3
## 4550           Yes   Normal Cost     1
## 4551            No    Lower Cost     4
## 4552           Yes     High Cost     2
## 4553            No   Normal Cost     2
## 4554           Yes    Lower Cost     1
## 4555           Yes     High Cost     2
## 4556           Yes   Higher Cost     3
## 4557           Yes     High Cost     2
## 4558           Yes   Higher Cost     2
## 4559            No   Higher Cost     2
## 4560           Yes   Higher Cost     2
## 4561            No   Normal Cost     1
## 4562            No    Lower Cost     2
## 4563           Yes   Higher Cost     2
## 4564            No   Higher Cost     1
## 4565           Yes     High Cost     2
## 4566            No   Higher Cost     2
## 4567           Yes     High Cost     2
## 4568           Yes   Higher Cost     2
## 4569           Yes    Lower Cost     1
## 4570            No    Lower Cost     1
## 4571           Yes    Lower Cost     1
## 4572            No    Lower Cost     1
## 4573            No   Higher Cost     2
## 4574            No   Higher Cost     2
## 4575           Yes   Higher Cost     4
## 4577            No   Normal Cost     1
## 4578            No      Low Cost     1
## 4579           Yes    Lower Cost     2
## 4580            No      Low Cost     1
## 4581           Yes      Low Cost     1
## 4582            No      Low Cost     2
## 4583           Yes     High Cost     2
## 4584            No   Normal Cost     1
## 4585           Yes   Normal Cost     2
## 4586            No   Normal Cost     1
## 4587           Yes   Higher Cost     2
## 4588           Yes     High Cost     1
## 4589           Yes   Higher Cost     1
## 4590            No    Lower Cost     1
## 4591            No     High Cost     3
## 4592            No    Lower Cost     1
## 4593           Yes   Higher Cost     1
## 4594           Yes     High Cost     3
## 4595           Yes   Normal Cost     3
## 4596            No    Lower Cost     1
## 4597            No   Normal Cost     4
## 4598           Yes     High Cost     1
## 4599            No    Lower Cost     1
## 4600           Yes   Normal Cost     1
## 4601            No   Normal Cost     1
## 4602            No     High Cost     1
## 4603            No   Higher Cost     3
## 4604           Yes   Higher Cost     2
## 4605           Yes     High Cost     2
## 4606            No   Normal Cost     2
## 4607            No      Low Cost     2
## 4608           Yes   Higher Cost     2
## 4609           Yes   Normal Cost     2
## 4610           Yes     High Cost     2
## 4611           Yes   Normal Cost     1
## 4612           Yes   Higher Cost     3
## 4615           Yes   Higher Cost     2
## 4616           Yes      Low Cost    12
## 4617            No      Low Cost     1
## 4618           Yes     High Cost     2
## 4619           Yes   Higher Cost     6
## 4620           Yes   Normal Cost     1
## 4621            No   Normal Cost     2
## 4622            No    Lower Cost     1
## 4623            No   Normal Cost     4
## 4624           Yes   Normal Cost     2
## 4625            No   Normal Cost     1
## 4626            No    Lower Cost     1
## 4627           Yes     High Cost     1
## 4628           Yes      Low Cost     1
## 4629            No      Low Cost     1
## 4630           Yes   Higher Cost     2
## 4631           Yes   Normal Cost     1
## 4633           Yes      Low Cost     1
## 4634            No   Normal Cost     2
## 4635            No    Lower Cost     1
## 4636           Yes   Normal Cost     2
## 4637            No    Lower Cost     1
## 4638           Yes   Higher Cost     3
## 4639            No   Normal Cost     2
## 4640            No   Normal Cost     1
## 4641            No   Normal Cost     1
## 4642           Yes     High Cost     2
## 4643           Yes   Higher Cost     4
## 4644           Yes   Normal Cost     2
## 4645           Yes   Normal Cost     6
## 4646           Yes     High Cost     2
## 4647           Yes     High Cost     2
## 4648           Yes   Higher Cost     2
## 4649            No   Normal Cost     1
## 4650            No   Higher Cost     1
## 4651            No    Lower Cost     1
## 4652            No     High Cost     2
## 4654           Yes     High Cost     1
## 4655            No    Lower Cost     1
## 4657            No   Normal Cost     1
## 4658           Yes   Higher Cost     2
## 4660           Yes   Higher Cost     1
## 4661           Yes   Normal Cost     2
## 4662           Yes     High Cost     1
## 4663           Yes  Highest Cost     4
## 4664           Yes     High Cost     2
## 4665            No     High Cost     1
## 4666           Yes   Higher Cost     2
## 4667           Yes   Higher Cost     2
## 4670           Yes   Normal Cost     1
## 4671           Yes     High Cost     1
## 4672            No   Normal Cost     2
## 4673           Yes   Higher Cost     2
## 4674           Yes     High Cost     1
## 4675            No   Normal Cost     2
## 4676           Yes   Higher Cost     2
## 4677            No      Low Cost     1
## 4678           Yes   Higher Cost     2
## 4679           Yes     High Cost     1
## 4680            No    Lower Cost     1
## 4681            No    Lower Cost     1
## 4682            No     High Cost     1
## 4683            No    Lower Cost     1
## 4684           Yes     High Cost     2
## 4685           Yes    Lower Cost     1
## 4687           Yes   Normal Cost     2
## 4688           Yes     High Cost     2
## 4689            No     High Cost     1
## 4690           Yes   Higher Cost     1
## 4691            No   Normal Cost     1
## 4692           Yes      Low Cost     1
## 4693            No   Normal Cost     2
## 4694           Yes      Low Cost     1
## 4695           Yes   Higher Cost     2
## 4696           Yes   Higher Cost     2
## 4697           Yes   Higher Cost     2
## 4698            No    Lower Cost     1
## 4699            No      Low Cost     1
## 4700            No   Normal Cost     1
## 4701            No  Highest Cost     6
## 4703           Yes   Normal Cost     1
## 4704           Yes   Higher Cost     2
## 4705           Yes    Lower Cost     2
## 4706           Yes    Lower Cost     1
## 4707           Yes     High Cost     2
## 4708            No    Lower Cost     1
## 4709           Yes    Lower Cost     6
## 4710           Yes    Lower Cost     1
## 4712           Yes   Higher Cost     8
## 4713           Yes  Highest Cost     2
## 4714            No      Low Cost     1
## 4715           Yes     High Cost     2
## 4716            No    Lower Cost     1
## 4717           Yes     High Cost     2
## 4718            No      Low Cost     2
## 4719            No      Low Cost     1
## 4720           Yes     High Cost     2
## 4721           Yes   Higher Cost     2
## 4722           Yes     High Cost    14
## 4723           Yes   Normal Cost     2
## 4724           Yes    Lower Cost     1
## 4725           Yes   Higher Cost     3
## 4727           Yes   Higher Cost     2
## 4728            No      Low Cost     1
## 4729           Yes   Higher Cost     2
## 4731           Yes      Low Cost     1
## 4732           Yes     High Cost     2
## 4733           Yes     High Cost     2
## 4734           Yes   Higher Cost     2
## 4735           Yes     High Cost     1
## 4736           Yes   Normal Cost     6
## 4737           Yes   Higher Cost     2
## 4738           Yes      Low Cost     1
## 4739           Yes   Higher Cost     2
## 4740           Yes   Higher Cost     1
## 4741            No   Normal Cost     4
## 4742           Yes   Higher Cost     1
## 4743           Yes      Low Cost     1
## 4744            No      Low Cost     1
## 4745           Yes     High Cost     2
## 4746           Yes     High Cost     2
## 4748           Yes      Low Cost     1
## 4749           Yes   Higher Cost     2
## 4750            No   Normal Cost     1
## 4751           Yes     High Cost     4
## 4752            No   Normal Cost     1
## 4754           Yes   Normal Cost     3
## 4755           Yes     High Cost     1
## 4756           Yes   Normal Cost     2
## 4757           Yes     High Cost     2
## 4759            No      Low Cost     1
## 4760           Yes   Normal Cost     2
## 4761           Yes   Normal Cost     2
## 4762           Yes  Highest Cost     1
## 4763            No    Lower Cost     1
## 4764           Yes   Normal Cost     1
## 4765            No      Low Cost     1
## 4766            No   Higher Cost     2
## 4767           Yes     High Cost     2
## 4768            No   Normal Cost     3
## 4769           Yes    Lower Cost     1
## 4770           Yes   Higher Cost     2
## 4771           Yes   Higher Cost     1
## 4773           Yes   Higher Cost     2
## 4774           Yes   Higher Cost     2
## 4775           Yes      Low Cost     4
## 4776            No   Normal Cost     1
## 4777           Yes     High Cost     2
## 4778           Yes     High Cost     2
## 4779            No   Normal Cost     2
## 4780            No     High Cost     2
## 4781           Yes   Higher Cost     2
## 4782           Yes     High Cost     3
## 4783            No      Low Cost     1
## 4784           Yes   Higher Cost     2
## 4785            No   Normal Cost     2
## 4787           Yes   Normal Cost     1
## 4788           Yes   Higher Cost     2
## 4789           Yes      Low Cost     1
## 4790            No     High Cost     8
## 4791           Yes   Normal Cost    14
## 4792           Yes   Normal Cost     1
## 4793           Yes    Lower Cost     3
## 4794            No   Normal Cost     4
## 4795           Yes   Higher Cost     4
## 4796           Yes   Normal Cost     1
## 4797           Yes     High Cost     1
## 4798            No      Low Cost     1
## 4799            No      Low Cost     2
## 4800           Yes   Normal Cost     3
## 4801            No    Lower Cost     1
## 4802            No   Normal Cost     5
## 4803           Yes     High Cost     1
## 4804            No     High Cost     1
## 4805           Yes     High Cost     2
## 4806            No    Lower Cost     1
## 4807           Yes      Low Cost     5
## 4808            No     High Cost     1
## 4809            No   Normal Cost     1
## 4810           Yes    Lower Cost     2
## 4811           Yes   Normal Cost     2
## 4812           Yes   Higher Cost     4
## 4813           Yes     High Cost     2
## 4815           Yes   Normal Cost     2
## 4817           Yes     High Cost     1
## 4818           Yes   Higher Cost    13
## 4820           Yes   Higher Cost     2
## 4821           Yes   Normal Cost     2
## 4822            No   Normal Cost     2
## 4823            No     High Cost     1
## 4824            No      Low Cost     1
## 4825           Yes     High Cost     2
## 4826           Yes   Higher Cost     5
## 4827           Yes    Lower Cost     2
## 4828           Yes   Higher Cost     2
## 4829            No   Normal Cost     1
## 4830           Yes     High Cost     1
## 4831           Yes   Normal Cost     1
## 4832            No   Normal Cost     1
## 4833           Yes   Normal Cost     2
## 4834           Yes   Normal Cost     2
## 4835            No      Low Cost     1
## 4836            No      Low Cost     1
## 4837           Yes   Higher Cost     2
## 4838            No      Low Cost     2
## 4839           Yes   Higher Cost     2
## 4840            No   Normal Cost     1
## 4841            No    Lower Cost     1
## 4842           Yes   Higher Cost     3
## 4843           Yes   Higher Cost     4
## 4844            No   Normal Cost     1
## 4845            No     High Cost     1
## 4846           Yes     High Cost     2
## 4847           Yes      Low Cost     2
## 4848           Yes   Higher Cost     2
## 4849           Yes   Normal Cost     1
## 4850            No   Normal Cost     1
## 4851           Yes    Lower Cost     1
## 4852            No   Normal Cost     1
## 4853           Yes   Normal Cost     1
## 4854            No   Normal Cost     1
## 4855           Yes   Normal Cost     1
##  [ reached 'max' / getOption("max.print") -- omitted 12787 rows ]
Test[!(Test$total ==0),]
##              Tour_ID                  country age_group
## 1    tour_idynufedne                    KOREA     25-44
## 2    tour_id9r3y5moe           UNITED KINGDOM     45-64
## 3    tour_idf6itml6g                    ITALY     25-44
## 4    tour_id99u4znru                    KENYA     25-44
## 5    tour_idj4i9urbx                   ZAMBIA     25-44
## 6    tour_ids94pi2qs                   UGANDA     45-64
## 7    tour_id9xx2dq4e                    ITALY     45-64
## 8    tour_id9q7cbwf5                   ZAMBIA     25-44
## 9    tour_id28uzu8li           UNITED KINGDOM     45-64
## 10   tour_idf7lvpips              NETHERLANDS     25-44
## 11   tour_id69abaq9f                     OMAN     25-44
## 12   tour_id20ne7vgg                 ZIMBABWE     25-44
## 13   tour_ida99j69n7                  BELGIUM     45-64
## 14   tour_idzwulen6z                      DRC     45-64
## 16   tour_idlhvaq2mf              NETHERLANDS     25-44
## 17   tour_id8t7kqb9n                    ITALY     45-64
## 18   tour_idrn7vpcu5                    KENYA     45-64
## 19   tour_idqk4wakw3                   FRANCE     25-44
## 20   tour_id6fa1ag4g                   CANADA     25-44
## 21   tour_id8yxycz3h           UNITED KINGDOM     25-44
## 22   tour_idq3khwer6           UNITED KINGDOM     25-44
## 23   tour_idhgharflp                   CANADA     18-24
## 24   tour_idqjzzhcvz           CZECH REPUBLIC     18-24
## 25   tour_id0l0xaktp                      UAE     25-44
## 26   tour_idbg22qq89                    ITALY     25-44
## 27   tour_idwkhfwtqp                    ITALY     25-44
## 28   tour_id34dyvoyk UNITED STATES OF AMERICA     25-44
## 29   tour_id5cfn85zh                    SPAIN     45-64
## 30   tour_id84rchmqs             SOUTH AFRICA     25-44
## 31   tour_idjh4cjj2x                   SWEDEN     25-44
## 32   tour_idzy1dc1xm UNITED STATES OF AMERICA     25-44
## 33   tour_id80j7qu6z           UNITED KINGDOM     25-44
## 34   tour_iddtkykn6k                   ZAMBIA     18-24
## 35   tour_idg04qytor           UNITED KINGDOM     25-44
## 36   tour_idv9sccb8o UNITED STATES OF AMERICA     45-64
## 37   tour_idfstvxwpt                   FRANCE     25-44
## 38   tour_idw8zh4idj           UNITED KINGDOM     25-44
## 39   tour_idri1bxxwf UNITED STATES OF AMERICA     25-44
## 40   tour_id9jns3l59                   NORWAY     45-64
## 41   tour_idykz7qmpj UNITED STATES OF AMERICA     18-24
## 43   tour_idjhminmzn                    ITALY     45-64
## 44   tour_idiihytata                   CANADA       65+
## 45   tour_idp48ka6jb           UNITED KINGDOM     45-64
## 46   tour_idthc6m7sk                  GERMANY     45-64
## 47   tour_idikm37slu                   NORWAY     25-44
## 48   tour_idvay0ce8g                 ZIMBABWE     25-44
## 49   tour_idljettp5j                    KENYA     25-44
## 50   tour_id6b75m18g                   RWANDA     25-44
## 51   tour_idh1qz4kip UNITED STATES OF AMERICA     25-44
## 52   tour_idct1mds8n                    ITALY     45-64
## 53   tour_idmdkapl5e                    ITALY     45-64
## 54   tour_idtxl27kyw                    INDIA     25-44
## 55   tour_id3f5s1s8k UNITED STATES OF AMERICA       65+
## 56   tour_idmy8ugm33                  AUSTRIA     45-64
## 57   tour_id15xhujqe UNITED STATES OF AMERICA     25-44
## 58   tour_idnvjzjzis             SOUTH AFRICA     25-44
## 59   tour_idicgj22ml UNITED STATES OF AMERICA     45-64
## 60   tour_ideq6kef16           UNITED KINGDOM     18-24
## 61   tour_idm3ru5o69           UNITED KINGDOM     25-44
## 62   tour_idtjnibi1v                 ZIMBABWE     25-44
## 63   tour_id9mqg4jpi                    ITALY     18-24
## 64   tour_id6qtlrlj0                   FRANCE     25-44
## 65   tour_id7quxawwm                   FRANCE     25-44
## 66   tour_id37beg9uz UNITED STATES OF AMERICA     45-64
## 67   tour_idmul4fjnn           UNITED KINGDOM     25-44
## 68   tour_idotkse0oz                   FRANCE       65+
## 69   tour_idctl4gkkk           UNITED KINGDOM     45-64
## 70   tour_idkzhlxsk5                   FRANCE     25-44
## 71   tour_idt8nbpyzu           UNITED KINGDOM     25-44
## 72   tour_idlvf31ik8                    ITALY     45-64
## 74   tour_id0prergei                 ZIMBABWE     25-44
## 75   tour_idj7tc65fn                  GERMANY     25-44
## 76   tour_idm1x1vxbw                   ZAMBIA     25-44
## 77   tour_id21v0cxt1                   CANADA     25-44
## 78   tour_id1mcdpog2                  IRELAND     18-24
## 79   tour_idhqzs2gq8 UNITED STATES OF AMERICA     25-44
## 80   tour_idbjvcvpse                 ZIMBABWE     25-44
## 81   tour_idqmtjec5c                    KENYA     25-44
## 82   tour_idjylqwsbx UNITED STATES OF AMERICA     45-64
## 83   tour_id59lpui19 UNITED STATES OF AMERICA     25-44
## 84   tour_idfcuq5wgy                    KENYA     25-44
## 85   tour_id7pyzqpkw           UNITED KINGDOM     45-64
## 86   tour_ideb9lf8br                  GERMANY     25-44
## 87   tour_idzogf5dwk               SWIZERLAND     18-24
## 88   tour_id41mnpgqc                   FRANCE     25-44
## 89   tour_idmwyzw189                  GERMANY     45-64
## 90   tour_idtjumeoc1                    ITALY     25-44
## 92   tour_idzcavo88u                   UGANDA     25-44
## 93   tour_idkot0odg6                AUSTRALIA     25-44
## 94   tour_id8z19zqq4                   FRANCE     45-64
## 96   tour_idr3vd82x6                    ITALY     45-64
## 97   tour_iduzdp7vc3 UNITED STATES OF AMERICA     25-44
## 98   tour_id095wm8uu                   FRANCE     25-44
## 99   tour_idfr76spf4                  AUSTRIA     25-44
## 100  tour_idjs9dcswi                    ITALY     45-64
## 101  tour_idz34rclqa                  BELGIUM     25-44
## 102  tour_id68ja64qt                  GERMANY     45-64
## 103  tour_idxac2uuqv                   UGANDA     25-44
## 104  tour_idf8oqfnlm                     OMAN     25-44
## 105  tour_idvunzjwfc                   CANADA       65+
## 106  tour_idw21ciy88 UNITED STATES OF AMERICA       65+
## 107  tour_idh9xqxr96               PHILIPINES     45-64
## 109  tour_idokj8jc82                   FRANCE     45-64
## 110  tour_id7nzgco3n                    ITALY       65+
## 112  tour_idpl6n18rb                   UGANDA     25-44
## 113  tour_id00ickkxa                 THAILAND     25-44
## 114  tour_idtc8elj66                   CANADA     25-44
## 115  tour_id9jslxdlc UNITED STATES OF AMERICA     45-64
## 116  tour_id7l1tqq3l                  GERMANY       65+
## 117  tour_idarhine53 UNITED STATES OF AMERICA     45-64
## 118  tour_id1ssjmgtf                 ZIMBABWE     25-44
## 119  tour_idcjzpvsbd           UNITED KINGDOM     18-24
## 120  tour_idp53f6fg8                   ZAMBIA     25-44
## 121  tour_idrgw9c70j UNITED STATES OF AMERICA     25-44
## 122  tour_idlx2jlzs3                    ITALY     25-44
## 123  tour_idjateimuw                    ITALY     25-44
## 124  tour_idof6v2a2t           UNITED KINGDOM     25-44
## 125  tour_idbphqzwq0 UNITED STATES OF AMERICA     25-44
## 126  tour_idnju0d13b UNITED STATES OF AMERICA     45-64
## 127  tour_idbtqabgv8                    ITALY     25-44
## 128  tour_idkzy90idc           UNITED KINGDOM     25-44
## 129  tour_idybhcrip4                AUSTRALIA     45-64
## 130  tour_idgo26zwiw              NETHERLANDS     45-64
## 131  tour_id6yuxzmbk                    SPAIN     25-44
## 132  tour_idxl466y8a                  BELGIUM     18-24
## 133  tour_idx73vs98v                   FRANCE     45-64
## 134  tour_id3r9btjk4             SOUTH AFRICA       65+
## 135  tour_idhgq4urqb                  GERMANY     45-64
## 136  tour_idurejxr5g                    ITALY     25-44
## 137  tour_id8hmm45yg                   FRANCE     45-64
## 138  tour_id18jsnowr                 PORTUGAL     45-64
## 139  tour_idgs3jbjvb                    ITALY     25-44
## 140  tour_idikwsynra           UNITED KINGDOM     25-44
## 141  tour_idxexxrypa                   ZAMBIA     25-44
## 142  tour_id4vle4re3           UNITED KINGDOM     45-64
## 143  tour_id4ktjhmd1                  GERMANY     25-44
## 144  tour_id51l3gvnj                   FRANCE     25-44
## 145  tour_id8pp1z0qj               SWIZERLAND     45-64
## 146  tour_id60ehhnp2                  GERMANY     45-64
## 147  tour_idpxt0agk9              NETHERLANDS     25-44
## 148  tour_id8zqbxmj5           UNITED KINGDOM     25-44
## 149  tour_idp5ukjn9m                   RWANDA     18-24
## 150  tour_idu7oecbie                  BURUNDI     18-24
## 151  tour_id1dr9cikr              NETHERLANDS     45-64
## 152  tour_id0r3qxbif UNITED STATES OF AMERICA     18-24
## 153  tour_idnox2sywq                   FRANCE     25-44
## 155  tour_idgww40skh                    ITALY     45-64
## 156  tour_ida8jpbqln UNITED STATES OF AMERICA       <18
## 157  tour_idhyrqzusv UNITED STATES OF AMERICA     25-44
## 159  tour_idmwm72g00                    ITALY     25-44
## 160  tour_idvwseyhh5                   FRANCE     45-64
## 161  tour_idgcf1yvij                    KENYA     25-44
## 162  tour_id3rxtrcif                   FRANCE     25-44
## 163  tour_idy8ljrftg                    ITALY     25-44
## 164  tour_idnp3tf107           UNITED KINGDOM     25-44
## 165  tour_id6flbqbca                    CHINA     25-44
## 166  tour_idlwhkzuj1                AUSTRALIA     25-44
## 167  tour_idyj7ih64p                    ITALY     18-24
## 168  tour_idpsajjmyx                   FRANCE     45-64
## 169  tour_iddjm6wl6i                AUSTRALIA     25-44
## 170  tour_idtagybv4g                  GERMANY     45-64
## 171  tour_idqafmheqa           UNITED KINGDOM     45-64
## 172  tour_idyi6los82 UNITED STATES OF AMERICA     25-44
## 173  tour_idih1eowcb                  DENMARK     45-64
## 174  tour_id95d3hnoi                   NORWAY     45-64
## 175  tour_idvldrbm0s UNITED STATES OF AMERICA     25-44
## 176  tour_idiu5a5tzw UNITED STATES OF AMERICA       65+
## 177  tour_idv36rzh7c             SOUTH AFRICA     25-44
## 178  tour_id85njxjsn UNITED STATES OF AMERICA     25-44
## 179  tour_ids4xd11vg                   CANADA       65+
## 180  tour_ids6e9lk9c                  GERMANY     25-44
## 181  tour_idhprlrkv6                   CANADA     25-44
## 182  tour_id99pyaz9x UNITED STATES OF AMERICA     45-64
## 183  tour_idg7e3ui4n              NETHERLANDS     25-44
## 185  tour_iduxrqhcea                   FRANCE     25-44
## 186  tour_id99d7kiwy                AUSTRALIA     25-44
## 187  tour_idw8wm2o5v                   UGANDA     45-64
## 188  tour_idqyq9zw0y                   NORWAY     45-64
## 189  tour_idivwq4v1w                   UGANDA     25-44
## 190  tour_id4xoqo9i1                    ITALY       65+
## 191  tour_idnevz5lyh UNITED STATES OF AMERICA     45-64
## 192  tour_idn49b65yc                      UAE     25-44
## 193  tour_idjrta1z0l                  GERMANY     45-64
## 194  tour_idequkopmm                   FRANCE     25-44
## 195  tour_idkr5a8qhh                    SPAIN     18-24
## 196  tour_idck1i9jpy               MOZAMBIQUE     18-24
## 197  tour_idamsemrsk                    ITALY     25-44
## 198  tour_ide41cohib UNITED STATES OF AMERICA       65+
## 199  tour_id2capxqan                      DRC     25-44
## 201  tour_idnhl7qohv               SWIZERLAND     25-44
## 202  tour_idh18uxy9f                 ZIMBABWE     25-44
## 203  tour_idi0vhg24d                 THAILAND     45-64
## 204  tour_ids4vqip7q                    ITALY     25-44
## 205  tour_idgejmazuc                    ITALY     25-44
## 206  tour_idf80dee6z                    SPAIN     25-44
## 207  tour_id52jj29ct           UNITED KINGDOM     18-24
## 208  tour_idmku52s29                    INDIA     25-44
## 209  tour_idfj2056k5                  GERMANY     25-44
## 210  tour_idk3s3sgcv                   FRANCE     25-44
## 211  tour_idz33d41ks             SOUTH AFRICA     25-44
## 212  tour_idl0ttjrmc                   SWEDEN     18-24
## 215  tour_idur0p7exw                    ITALY     25-44
## 216  tour_idjsiq8h6o                   SWEDEN     45-64
## 217  tour_idh2992qz6 UNITED STATES OF AMERICA     45-64
## 218  tour_idzmu73uvr             SOUTH AFRICA       65+
## 219  tour_idbsd6a9fg                   FRANCE     25-44
## 220  tour_id4cj9lep8 UNITED STATES OF AMERICA       65+
## 221  tour_idd18a2stl                    CHINA       65+
## 222  tour_idjrqlybhn           UNITED KINGDOM     18-24
## 223  tour_idxmfwoy4j                  GERMANY     45-64
## 224  tour_idafio0e6r UNITED STATES OF AMERICA       65+
## 225  tour_idwd2vbr79                   CANADA     18-24
## 226  tour_idtxmv1vn8                      UAE     25-44
## 227  tour_id55m6ye74                   CANADA     45-64
## 228  tour_idrjo6d6m0 UNITED STATES OF AMERICA     45-64
## 229  tour_id7vxwd2qi           UNITED KINGDOM     18-24
## 231  tour_idys87o0ds                    ITALY     25-44
## 232  tour_id1fy4lusi                    ITALY     25-44
## 233  tour_iduw6503kx                  GERMANY     25-44
## 234  tour_idu1kt91ev UNITED STATES OF AMERICA     18-24
## 235  tour_id53o0z6dv           UNITED KINGDOM     18-24
## 236  tour_idz6rfgk6y           UNITED KINGDOM     45-64
## 238  tour_idb6b9fe7o     UNITED ARAB EMIRATES     45-64
## 239  tour_idgiofw9gq                   FRANCE     45-64
## 240  tour_idlaknkcn4 UNITED STATES OF AMERICA     25-44
## 242  tour_idy76hhahh UNITED STATES OF AMERICA     25-44
## 244  tour_idt79f2xgp UNITED STATES OF AMERICA     45-64
## 245  tour_idrpkhu48l                  BELGIUM     45-64
## 246  tour_iddskibken             SOUTH AFRICA     45-64
## 247  tour_id0yne0qoz UNITED STATES OF AMERICA     25-44
## 248  tour_idswphik77 UNITED STATES OF AMERICA       65+
## 249  tour_idqq5ggah5                    SPAIN     25-44
## 250  tour_idu5zt4ri7                    SPAIN     18-24
## 251  tour_idvya147vx           UNITED KINGDOM     45-64
## 252  tour_idrpntkknt           UNITED KINGDOM     25-44
## 253  tour_idraeuhzn4           UNITED KINGDOM     25-44
## 254  tour_id9j5ntupu UNITED STATES OF AMERICA     25-44
## 255  tour_idzh5y8x5s UNITED STATES OF AMERICA     18-24
## 256  tour_idml3wpa4x UNITED STATES OF AMERICA       65+
## 257  tour_idb5wwneht UNITED STATES OF AMERICA     45-64
## 258  tour_id6j0d5sc0                   BRAZIL     25-44
## 259  tour_id8jaxzf3i                  HUNGARY     25-44
## 260  tour_idqtljd0wy UNITED STATES OF AMERICA     18-24
## 262  tour_id220owjdl                AUSTRALIA     25-44
## 263  tour_idifc5uhep                    KENYA       65+
## 264  tour_idquwcxoqm                    ITALY     18-24
## 265  tour_id5dtj3tq9                SRI LANKA     45-64
## 266  tour_id7y6t2y1a           UNITED KINGDOM     18-24
## 267  tour_id7afyqg3c                    KENYA     45-64
## 269  tour_idsab6ci0z                   CANADA     25-44
## 270  tour_idtbcgl3ok UNITED STATES OF AMERICA     25-44
## 271  tour_idb29m1zc9                   UGANDA     18-24
## 272  tour_idg37cnny5                  GERMANY     45-64
## 273  tour_idyivzhi1g           UNITED KINGDOM       65+
## 274  tour_idys6jeerv                  TUNISIA     25-44
## 275  tour_idf2bhsuv9                   ZAMBIA     45-64
## 277  tour_idinanh2ib                  AUSTRIA     25-44
## 278  tour_idfbvkrd52                AUSTRALIA     18-24
## 279  tour_idorlcjtl0                   FRANCE     45-64
## 280  tour_id1rsu7v9u                  GERMANY     45-64
## 282  tour_idw350rwr6                   NORWAY     25-44
## 283  tour_iddlvfw74p              NETHERLANDS     25-44
## 284  tour_id19ga2seg                    KENYA     25-44
## 286  tour_idivophlfk                  GERMANY     25-44
## 287  tour_idn3oclcev UNITED STATES OF AMERICA     25-44
## 288  tour_idqsq7b1wj                    ITALY     25-44
## 289  tour_iddi4frevq              NETHERLANDS     25-44
## 290  tour_idsd6yvwdu                    ITALY     45-64
## 291  tour_id68rserht           UNITED KINGDOM     25-44
## 292  tour_id2n3dx4fc                   UGANDA     18-24
## 293  tour_idwyor4bna                   RWANDA     18-24
## 294  tour_id2f3tbswa                    ITALY     18-24
## 295  tour_idphrjsa9y UNITED STATES OF AMERICA     25-44
## 296  tour_idu25w1voc                  BELGIUM       65+
## 297  tour_idlm95nq0i           UNITED KINGDOM     18-24
## 298  tour_idboqy49i2 UNITED STATES OF AMERICA       65+
## 299  tour_idznmi023w           UNITED KINGDOM     45-64
## 300  tour_idaf0lrg67                   ISRAEL     18-24
## 301  tour_idz2h45vgp           UNITED KINGDOM     45-64
## 302  tour_id0jh1dwue                   RWANDA     25-44
## 303  tour_idkanre3ch                   FRANCE     45-64
## 304  tour_id0jjxirjz                    ITALY     25-44
## 305  tour_id5e7ek9el                   RWANDA     18-24
## 306  tour_idsiktxfcs           UNITED KINGDOM     25-44
## 307  tour_idnmdgl59h              NEW ZEALAND     18-24
## 309  tour_idazu2ddlx                   ZAMBIA     45-64
## 310  tour_idbmhta34p                  GERMANY     45-64
## 311  tour_idpga35b1s                   UGANDA     18-24
## 312  tour_idtrasipbr             SOUTH AFRICA     45-64
## 313  tour_idvn91stvr UNITED STATES OF AMERICA     45-64
## 314  tour_idvasp0li4           UNITED KINGDOM     25-44
## 315  tour_id6hpq5pve UNITED STATES OF AMERICA     18-24
## 316  tour_id3zrkgcss                   POLAND     25-44
## 317  tour_id31ydac83                   SWEDEN     45-64
## 318  tour_idt9r59wty UNITED STATES OF AMERICA     45-64
## 319  tour_id8sgevd3d UNITED STATES OF AMERICA     25-44
## 321  tour_idvg8uyc65 UNITED STATES OF AMERICA     45-64
## 322  tour_id4cjsdjpx                AUSTRALIA     45-64
## 323  tour_idgkndwjvl                   FRANCE     25-44
## 324  tour_idbwovjb95           UNITED KINGDOM     45-64
## 325  tour_id3v9xyun8                      UAE     25-44
## 326  tour_idy4sartfv             SOUTH AFRICA     25-44
## 327  tour_id9x1l79cx           UNITED KINGDOM     18-24
## 328  tour_idn5nqfagn                 ZIMBABWE     25-44
## 330  tour_id3ctbtg6p UNITED STATES OF AMERICA     45-64
## 332  tour_iduyqs84zw                   ZAMBIA     25-44
## 333  tour_id3hl5va2f           UNITED KINGDOM     18-24
## 334  tour_idfcp0z7i2                    ITALY     25-44
## 335  tour_idkrv9stv4             SOUTH AFRICA       65+
## 336  tour_idrbih7cxv                 ZIMBABWE     25-44
## 337  tour_idq3019g3e           UNITED KINGDOM     45-64
## 338  tour_idupgwhvhy                   FRANCE     25-44
## 339  tour_idd503j88m                  GERMANY     45-64
## 340  tour_id5hroyz5p UNITED STATES OF AMERICA     25-44
## 341  tour_id2oe3h5z3 UNITED STATES OF AMERICA     18-24
## 342  tour_idxm2y7erk                  GERMANY     25-44
## 343  tour_idpygmp6sg                   FRANCE     25-44
## 344  tour_idz3kniwxq                   UGANDA     25-44
## 345  tour_idezhkcwez                  BELGIUM     45-64
## 346  tour_id5fvxj9z9 UNITED STATES OF AMERICA       65+
## 347  tour_idrr0bfmad                   FRANCE     45-64
## 348  tour_idf2wd46fl                   CANADA     18-24
## 349  tour_idnizhb4ih                  GERMANY       65+
## 350  tour_idhqkr2nsb                   NORWAY     45-64
## 351  tour_idwvjd6tks                   UGANDA     25-44
## 352  tour_id4xs5ejls                    ITALY     25-44
## 353  tour_ido0tp6bug                    CONGO     25-44
## 354  tour_idlceqzd60                    ITALY     45-64
## 355  tour_idp9e8o6ge                 ZIMBABWE     25-44
## 356  tour_id20ulpv65           CZECH REPUBLIC     45-64
## 357  tour_id8ed1dpk1           UNITED KINGDOM     18-24
## 358  tour_idx40upxpa                     OMAN     45-64
## 359  tour_id9rjrdjpm             SOUTH AFRICA     25-44
## 360  tour_idt1ept26m                   FRANCE     25-44
## 361  tour_idxwx127yv                    ITALY     45-64
## 362  tour_idup9n93rw                    CHINA     25-44
## 363  tour_ide9ewa5ih                    INDIA     45-64
## 364  tour_id1ybtv6a5                    ITALY     45-64
## 365  tour_idyg7dqnet                   FRANCE     25-44
## 366  tour_idvwwxq8vw                    KENYA     25-44
## 367  tour_idzizb0hz7             SOUTH AFRICA     45-64
## 368  tour_idbrv4ebc8                    SPAIN     25-44
## 369  tour_ido8dwr97j                AUSTRALIA     25-44
## 370  tour_idj3uchdj5                AUSTRALIA       65+
## 371  tour_idllyait5a                  ESTONIA     45-64
## 372  tour_idor0h2a85           UNITED KINGDOM     25-44
## 373  tour_idjrqs6jay                   CANADA     25-44
## 374  tour_id4fgvknj4             SOUTH AFRICA     25-44
## 375  tour_id8cbzvdlf                  GERMANY     45-64
## 376  tour_idz5vjgon0             SOUTH AFRICA     45-64
## 377  tour_idfx1qtcv5 UNITED STATES OF AMERICA     45-64
## 378  tour_idaejkwyxa                 PORTUGAL     25-44
## 379  tour_idssstlm5c                  BURUNDI     25-44
## 380  tour_idrsdfno76                  BURUNDI     25-44
## 381  tour_idl2g9qii0             SOUTH AFRICA     25-44
## 382  tour_ide7j0eo3b                   RWANDA     18-24
## 383  tour_ideg05oqi7                 COLOMBIA     25-44
## 384  tour_ids5gmx7fx                    CHINA     18-24
## 385  tour_id6duoyts5                   ZAMBIA     25-44
## 386  tour_idoykqz2fu                  IRELAND     25-44
## 388  tour_idzeeoakyf                   ZAMBIA     25-44
## 390  tour_idooiolb2e                AUSTRALIA     25-44
## 391  tour_idtn8edlj3                   FRANCE     45-64
## 392  tour_idlyeoi5l4                    SPAIN     45-64
## 393  tour_id1s8n59tw                    CHINA     25-44
## 394  tour_idjpml9s6y                   CANADA     45-64
## 395  tour_id8c18zpq3                 ZIMBABWE     25-44
## 396  tour_idu0jl9nnt           UNITED KINGDOM     25-44
## 397  tour_idgz8j5n75                  GERMANY     25-44
## 398  tour_idhndz8uj2                  DENMARK     25-44
## 399  tour_id3fg29ydo                    INDIA     45-64
## 400  tour_id7v2884i4                   ZAMBIA     25-44
## 401  tour_idm2b266fg                   CANADA     25-44
## 402  tour_idz27vmb0v                AUSTRALIA     18-24
## 403  tour_idui4rlm9a                    SPAIN     25-44
## 404  tour_idt6ctcnhr           UNITED KINGDOM     18-24
## 405  tour_id3ul4m9lf                   UGANDA     25-44
## 406  tour_idhwzhzah7                    CHINA     45-64
## 407  tour_idt5otia3l                    INDIA     45-64
## 408  tour_idi65kd4h8                   FRANCE     25-44
## 409  tour_id1fxaelbe                    ITALY     25-44
## 410  tour_id1g7necvv                 MALAYSIA     45-64
## 412  tour_id07gewbmp                   ISRAEL     25-44
## 413  tour_idbxsfpn5h                    CHINA     25-44
## 414  tour_idobjmy5fb UNITED STATES OF AMERICA     25-44
## 415  tour_id0q91w6ij           UNITED KINGDOM     18-24
## 417  tour_id2rbs8n3x              NETHERLANDS     45-64
## 419  tour_idq201wiht                 TANZANIA     25-44
## 420  tour_idvi2rqt6f                   SWEDEN     25-44
## 421  tour_idr27ewlb0                  BURUNDI     45-64
## 422  tour_id0xlsejr8                   FRANCE     45-64
## 423  tour_id77odnnl6                 ZIMBABWE     45-64
## 424  tour_id5yp2nwt8           UNITED KINGDOM     45-64
## 425  tour_idfx9h88n5 UNITED STATES OF AMERICA     45-64
## 426  tour_idaye16v6p UNITED STATES OF AMERICA     45-64
## 427  tour_idip1dw7i2 UNITED STATES OF AMERICA     25-44
## 428  tour_idnsaojvnq UNITED STATES OF AMERICA       65+
## 429  tour_id81svmluy                   CANADA     25-44
## 430  tour_idlglerpoq                   FRANCE     45-64
## 431  tour_idpjftfoh4                   UGANDA     18-24
## 432  tour_idz66ovrj6           UNITED KINGDOM     25-44
## 433  tour_iddtog4ovc                 BULGARIA     45-64
## 434  tour_idtxt3u70l UNITED STATES OF AMERICA     25-44
## 435  tour_idwv04pqbq                 ZIMBABWE     25-44
## 436  tour_idjrqqcdqe                   RUSSIA     25-44
## 437  tour_idn9j0vxkk                   COMORO     45-64
## 438  tour_idp9emlmmk                   FRANCE     45-64
## 439  tour_idvly0zexi                    ITALY     25-44
## 440  tour_idcdzd8z54 UNITED STATES OF AMERICA     25-44
## 441  tour_iddl2kvcml                    SPAIN     25-44
## 442  tour_idf1yvhg92 UNITED STATES OF AMERICA       65+
## 443  tour_idpbqibzck           UNITED KINGDOM     45-64
## 444  tour_idvynibf3j                   CANADA     25-44
## 446  tour_idnnmmolgn                   ZAMBIA     25-44
## 448  tour_iddsu3lzhz UNITED STATES OF AMERICA     25-44
## 449  tour_idwr707d0f             SOUTH AFRICA     45-64
## 450  tour_id74armx7k           UNITED KINGDOM     18-24
## 451  tour_idohqjc0n0           UNITED KINGDOM     25-44
## 452  tour_idg1r8nd9u                    SPAIN     25-44
## 453  tour_idhbccl446 UNITED STATES OF AMERICA     45-64
## 454  tour_idg6zo75w8                   CANADA     45-64
## 456  tour_idc2dzlt7v                   ZAMBIA     25-44
## 457  tour_idzkrgyg9t                   ZAMBIA     45-64
## 458  tour_id2mo4xqe6               SWIZERLAND     45-64
## 459  tour_idyztnvrux             SOUTH AFRICA     25-44
## 460  tour_idsz6c12l9                   CANADA     18-24
## 461  tour_id2ys5uysi                    KENYA     25-44
## 462  tour_idwbcl967u                   UKRAIN     18-24
## 463  tour_idscd1tsqw                    ITALY     45-64
## 464  tour_idoywelkgs UNITED STATES OF AMERICA     45-64
## 465  tour_idpbmgbkbu                   FRANCE     45-64
## 466  tour_idfzz650i3                   FRANCE     45-64
## 467  tour_iduz6y1mlr                   RUSSIA     25-44
## 468  tour_idy1lgp5n4                  BELGIUM     45-64
## 469  tour_iddmzzspy2           UNITED KINGDOM     25-44
## 470  tour_id5l6k354f                  GERMANY     45-64
## 471  tour_id9ziofwek           UNITED KINGDOM     25-44
## 472  tour_idfpjqg923               SWIZERLAND     25-44
## 473  tour_id34b2r4t2 UNITED STATES OF AMERICA     18-24
## 474  tour_idpz406ide                    SPAIN     25-44
## 475  tour_idtbbuakst UNITED STATES OF AMERICA     45-64
## 476  tour_idow9tsz6h               SWIZERLAND     25-44
## 477  tour_id3w8c2ii1                   FRANCE     25-44
## 478  tour_idrfnontg9                    KENYA     25-44
## 479  tour_idlepx371g                    SPAIN     45-64
## 480  tour_idx67ugcra                    ITALY     25-44
## 481  tour_idkxxdvzci                 ZIMBABWE     25-44
## 482  tour_id7sc52u58                  GERMANY     45-64
## 483  tour_id4tqx47zg                    ITALY     25-44
## 484  tour_idtg2qjno7                 PORTUGAL     45-64
## 485  tour_idgovxgvzo                  LEBANON     25-44
## 486  tour_idwxjzcdtt                   CANADA     25-44
## 487  tour_idu0qloqls                  BELGIUM     18-24
## 488  tour_id39zwkl47                  GERMANY     45-64
## 489  tour_id5sgy94ke UNITED STATES OF AMERICA     25-44
## 490  tour_idhusw578g                  GERMANY     25-44
## 491  tour_id7gcxm9ed                  BELGIUM     25-44
## 492  tour_idhleypbcu                   FRANCE     45-64
## 493  tour_idz1hcau9g                   FRANCE     25-44
## 494  tour_idam42kioi                    ITALY     25-44
## 495  tour_id8aghgfq4                   RWANDA     18-24
## 496  tour_idn2ui0c4x                  GERMANY       65+
## 497  tour_id063ezkrk             SOUTH AFRICA     45-64
## 498  tour_id4xl97bn4                   ZAMBIA     25-44
## 499  tour_id7gd0ro5z                    SPAIN     25-44
## 500  tour_idmsm3gtuq           UNITED KINGDOM     25-44
## 501  tour_idplqgyos8             SOUTH AFRICA     25-44
## 502  tour_idm60lg2ac                      UAE     25-44
## 503  tour_idk6s4998z               SWIZERLAND     45-64
## 504  tour_idmmgy4i4n                    ITALY     18-24
## 505  tour_idznv56cy6           UNITED KINGDOM     25-44
## 506  tour_id59dfxtkd                    KENYA     25-44
## 507  tour_id7bqmdwsj                   ZAMBIA     25-44
## 508  tour_idqlgfq4do                    ITALY     45-64
## 510  tour_idhaxk46nl                  GERMANY     25-44
## 511  tour_idip1iy8mx                 ZIMBABWE     45-64
## 512  tour_idyr8bf3t1           UNITED KINGDOM     25-44
## 513  tour_ide9c9qs3k                   ZAMBIA     45-64
## 514  tour_ide8ibexlf                    KENYA     25-44
## 515  tour_idtml3iqrx           UNITED KINGDOM     45-64
## 516  tour_idh6z5nyel                   CANADA     18-24
## 517  tour_idoj5iek1b                    ITALY     18-24
## 518  tour_idh6vjnqg0           UNITED KINGDOM     25-44
## 519  tour_idcryyok5w                    KENYA     25-44
## 520  tour_idqi9gi2fz                    KENYA     25-44
## 521  tour_idmz2e4caw           UNITED KINGDOM     25-44
## 522  tour_idewc2meqj                   UGANDA     25-44
## 523  tour_idwmrz4ppu                   UGANDA     25-44
## 524  tour_idl3z949nh                     OMAN     25-44
## 525  tour_id3tnox9cq                   FRANCE     25-44
## 526  tour_id1pvanh4u                    ITALY     25-44
## 527  tour_id7rlx4ho9                  GERMANY     45-64
## 528  tour_idaaro4vn1           UNITED KINGDOM     45-64
## 529  tour_idpx15117e              NEW ZEALAND     45-64
## 530  tour_idn5n1kv5q                   ZAMBIA     45-64
## 531  tour_idv5veb4tb                  URUGUAY     45-64
## 532  tour_idpw5bfrjs           UNITED KINGDOM     45-64
## 533  tour_idcfq6wmgd                   RWANDA     25-44
## 534  tour_idl088wh5r                   FRANCE     45-64
## 535  tour_idpjdgdpua                AUSTRALIA     25-44
## 536  tour_idxjd8onff                   FRANCE     25-44
## 537  tour_idc4qzf6t7              NEW ZEALAND     45-64
## 538  tour_id4s54grly               SWIZERLAND     25-44
## 539  tour_idq4v0v1xv                   CANADA     45-64
## 540  tour_idon3o3bqq                  LEBANON     45-64
## 541  tour_idyzpsuaop                   FRANCE     25-44
## 542  tour_idpqmrov6o                   SWEDEN     25-44
## 544  tour_idylwnv99n UNITED STATES OF AMERICA     45-64
## 545  tour_idyvzuashf                AUSTRALIA     45-64
## 546  tour_idmvp5l9k3           UNITED KINGDOM     25-44
## 547  tour_idrjz075wy                   CANADA     25-44
## 548  tour_id8u0cl1nu UNITED STATES OF AMERICA     45-64
## 549  tour_idxpwdlvjt                   FRANCE     45-64
## 550  tour_idkuh0gq5w                    INDIA     25-44
## 551  tour_id0ol6g8cc                   FRANCE     25-44
## 552  tour_idig7xxmxc                  AUSTRIA     25-44
## 553  tour_idpqu2phax                 PORTUGAL     45-64
## 554  tour_idpod1yaf8 UNITED STATES OF AMERICA     45-64
## 555  tour_idja659xqm                  BELGIUM     18-24
## 556  tour_ide6fe1p96           UNITED KINGDOM     25-44
## 557  tour_id3lmk952g                    ITALY     45-64
## 558  tour_idgq22phgo                    CONGO     18-24
## 559  tour_id3t92mkp2           UNITED KINGDOM     45-64
## 560  tour_idzr8u5a5f           UNITED KINGDOM     18-24
## 561  tour_idj4bouc3c             SOUTH AFRICA     25-44
## 562  tour_idowiunl3x                    ITALY     45-64
## 563  tour_idwub1uf65             SOUTH AFRICA     25-44
## 564  tour_idelalp4cy                   CANADA       65+
## 565  tour_id1zv7p3ue                   FRANCE     25-44
## 566  tour_idlndcaei6                    SPAIN     25-44
## 567  tour_idf7ullinx                    ITALY     25-44
## 568  tour_idyylazfrv                    ITALY     25-44
## 570  tour_ido0wfi2q9           UNITED KINGDOM     25-44
## 571  tour_idqs30yyoa              NETHERLANDS       65+
## 572  tour_idkfbmbaln                   SOMALI     25-44
## 573  tour_idxwa04kde             SOUTH AFRICA     25-44
## 574  tour_id31rs110m                  GERMANY     45-64
## 575  tour_idcbzgo8lz                    ITALY     45-64
## 576  tour_idodqc3dam                   ZAMBIA     25-44
## 577  tour_idxak6zv0j UNITED STATES OF AMERICA     25-44
## 578  tour_idq7a03le6                   SWEDEN     25-44
## 579  tour_id17gdu6e1 UNITED STATES OF AMERICA       65+
## 580  tour_idvbqe4k18                    KENYA     25-44
## 581  tour_idilwqiqbz                    ITALY     25-44
## 582  tour_idovxethl4 UNITED STATES OF AMERICA       65+
## 583  tour_idxc2f1h79                  FINLAND     45-64
## 584  tour_idhxqprcj6                   FRANCE     25-44
## 585  tour_idjxnbn9fo                  GERMANY     25-44
## 586  tour_idqgy587if             SOUTH AFRICA     25-44
## 587  tour_idu6c68qw7                 ZIMBABWE     25-44
## 588  tour_idzokohgpa                  GERMANY     45-64
## 589  tour_id71dycafn                   FRANCE     45-64
## 590  tour_id47i0swnt                 ZIMBABWE     45-64
## 591  tour_idspf2xy4k                   FRANCE     45-64
## 592  tour_id53un079r UNITED STATES OF AMERICA       65+
## 593  tour_idg6fqewvw                    INDIA     45-64
## 594  tour_idxvl85u9y UNITED STATES OF AMERICA     25-44
## 595  tour_idaf06x3t5 UNITED STATES OF AMERICA       65+
## 596  tour_id76jcziim               SWIZERLAND     25-44
## 597  tour_idmsnsuc80           UNITED KINGDOM     25-44
## 598  tour_idq1ucuulo                    KENYA     25-44
## 600  tour_idyglc269t UNITED STATES OF AMERICA       65+
## 601  tour_idp6l8xj8i                    KENYA     25-44
## 602  tour_idhra2sabp                  AUSTRIA     18-24
## 603  tour_id6qo90rwg                    KENYA     45-64
## 604  tour_idc35jr14j UNITED STATES OF AMERICA     18-24
## 605  tour_idyzth9p4x UNITED STATES OF AMERICA       65+
## 606  tour_id7izdtn5n                 ETHIOPIA     25-44
## 607  tour_id79p0uncw                    CHINA     25-44
## 608  tour_idbxl4aqeq           UNITED KINGDOM     25-44
## 609  tour_idvplcinon UNITED STATES OF AMERICA     45-64
## 610  tour_id86shi3b5           UNITED KINGDOM     25-44
## 612  tour_id3lvcurtt                 ZIMBABWE     25-44
## 613  tour_idp7fokixh UNITED STATES OF AMERICA     25-44
## 614  tour_idobw0128n                    ITALY     18-24
## 615  tour_id0wioko6t           UNITED KINGDOM     25-44
## 616  tour_iddrq5pzbj                   ZAMBIA     25-44
## 617  tour_id4tpaw24e           UNITED KINGDOM     25-44
## 618  tour_id5yui7wlm                  GERMANY     25-44
## 620  tour_id2oq942qg                   RWANDA     25-44
## 622  tour_idjapnd4w3                    ITALY     25-44
## 623  tour_idfmqlujb5                    ITALY     45-64
## 624  tour_idbrhckivy                   ISRAEL       65+
## 625  tour_idtiqukak3                 SCOTLAND     18-24
## 626  tour_idg7paewym                AUSTRALIA     25-44
## 627  tour_id7zzyxyw2                    KENYA     45-64
## 628  tour_idd4m7h38v                   FRANCE     25-44
## 629  tour_idy28sqb5w           UNITED KINGDOM     25-44
## 630  tour_idyo4ejcgv             SOUTH AFRICA     45-64
## 631  tour_id0g2hpil3                    INDIA     25-44
## 632  tour_idnkidhcve                   FRANCE     25-44
## 633  tour_idpobiyx9p                 ZIMBABWE     25-44
## 634  tour_idzjj9jqx0 UNITED STATES OF AMERICA     45-64
## 635  tour_idxctsf2ht           UNITED KINGDOM     18-24
## 636  tour_id299yv4vw           UNITED KINGDOM     25-44
## 637  tour_idhd1uskzo                    INDIA     45-64
## 638  tour_id7xcnlfsn               SWIZERLAND     45-64
## 639  tour_id0qsq8oxe UNITED STATES OF AMERICA     45-64
## 640  tour_id7ackh6q0                   ZAMBIA     45-64
## 641  tour_idwwvhta88                   FRANCE     18-24
## 642  tour_id56l9wv0y                  DENMARK     25-44
## 643  tour_idl76wli7x           UNITED KINGDOM     45-64
## 644  tour_idfr5jq4yh                    ITALY     45-64
## 645  tour_idssle748f                   ZAMBIA     45-64
## 646  tour_idsqo3ti40                   TURKEY     25-44
## 647  tour_idjanr5no4 UNITED STATES OF AMERICA     18-24
## 648  tour_ids2sco4of           UNITED KINGDOM     45-64
## 649  tour_idjw9cr57f UNITED STATES OF AMERICA       65+
## 650  tour_idm4b28njz UNITED STATES OF AMERICA     25-44
## 651  tour_idr48162go                   POLAND     25-44
## 652  tour_idj5tgafry                   RWANDA     25-44
## 653  tour_id9jh9vxpl           UNITED KINGDOM     25-44
## 655  tour_idilosokzj                    ITALY     25-44
## 657  tour_id9wsn72eq                  GERMANY     45-64
## 658  tour_id585v2wyr UNITED STATES OF AMERICA     25-44
## 659  tour_idumxur077                   ZAMBIA     45-64
## 660  tour_id8aul9hew                  BELGIUM     25-44
## 661  tour_idguryelh8                    INDIA     25-44
## 662  tour_iddu1ywyuq           UNITED KINGDOM     25-44
## 663  tour_id0154px60                   FRANCE     45-64
## 664  tour_idpvkc2ks7 UNITED STATES OF AMERICA     45-64
## 665  tour_idow5vv90n                    ITALY     45-64
## 666  tour_id66ql6i0o UNITED STATES OF AMERICA       65+
## 667  tour_idlfyzeb2f UNITED STATES OF AMERICA       65+
## 668  tour_idz87gijn1                   SWEDEN     25-44
## 669  tour_id99g7q0j8                    SPAIN     25-44
## 670  tour_idbuknlegn UNITED STATES OF AMERICA     25-44
## 671  tour_idsjqzjq83                   CANADA     18-24
## 672  tour_id72rxwadn                    CHINA     18-24
## 673  tour_iddjcsmbvu                      DRC     45-64
## 674  tour_idh6ovxowr                    ITALY     45-64
## 675  tour_idlaj1elnv                   FRANCE     45-64
## 676  tour_idnzii22uf                  GERMANY     25-44
## 677  tour_idxa7ncwxs                   FRANCE     45-64
## 679  tour_idgxvh3j5p                   CANADA     25-44
## 680  tour_idaqiww3cq                   FRANCE     25-44
## 681  tour_idl5jbhc9p                    ITALY     18-24
## 682  tour_idrohh0iej           UNITED KINGDOM     18-24
## 683  tour_idco0z471i                 SLOVENIA     45-64
## 684  tour_id90mbhpeq                   CANADA       65+
## 685  tour_idsjmhuf9o UNITED STATES OF AMERICA     25-44
## 687  tour_idq0ek7ooh                AUSTRALIA     25-44
## 688  tour_idh7r96vji           CZECH REPUBLIC     25-44
## 689  tour_idqzr5hizv               SWIZERLAND     25-44
## 690  tour_ide9dgh23e                   CANADA     18-24
## 691  tour_idpsbekb23                    SPAIN     45-64
## 692  tour_idha3hoqs0               SWIZERLAND     45-64
## 693  tour_idozwfxn2i             SOUTH AFRICA     25-44
## 694  tour_id0ols4flo                   UGANDA     25-44
## 696  tour_idsxkkdk9m                 ZIMBABWE     25-44
## 698  tour_idtvk0nzir                    ITALY     25-44
## 699  tour_id7b25l327                  GERMANY       65+
## 700  tour_id301mdhoz                   FRANCE     25-44
## 701  tour_idw5jku7h4                   ZAMBIA     25-44
## 702  tour_iddv1ac0d6           UNITED KINGDOM     18-24
## 703  tour_id5kn6ayq8 UNITED STATES OF AMERICA     25-44
## 704  tour_idudx6pa3n                  MORROCO     25-44
## 706  tour_idb52zwb3n               PHILIPINES     25-44
## 707  tour_id9tah8wac                   FRANCE     18-24
## 708  tour_idfmbk2h3k                  GERMANY     45-64
## 709  tour_ido7znu49f                      UAE     25-44
## 710  tour_idvl119p83 UNITED STATES OF AMERICA       65+
## 711  tour_idxkklke8o UNITED STATES OF AMERICA     45-64
## 712  tour_idlu5r95pt                    SPAIN     25-44
## 713  tour_id0p6w1xgb           UNITED KINGDOM     45-64
## 714  tour_id76q91lvi           UNITED KINGDOM     18-24
## 715  tour_idsrx9oeiu                      UAE     25-44
## 716  tour_idl9bf3q73             SOUTH AFRICA       65+
## 718  tour_id3vbdrwo7                   NORWAY     18-24
## 719  tour_idp0ldld28           UNITED KINGDOM     25-44
## 720  tour_idb6xjf30i                    SPAIN     25-44
## 721  tour_idn8r0mrv1           UNITED KINGDOM     25-44
## 722  tour_id4iqvuwh0                   ZAMBIA     25-44
## 723  tour_idta1xwe8n UNITED STATES OF AMERICA       65+
## 724  tour_idlg5466ay                    KENYA     25-44
## 725  tour_idj3mvcyzi                  GERMANY     25-44
## 727  tour_idrvlb22i6                    ITALY     25-44
## 728  tour_idmxvo87r3                    ITALY     25-44
## 729  tour_idv6hadhed                 ZIMBABWE     45-64
## 730  tour_idk4w14i0e             SOUTH AFRICA     45-64
## 731  tour_idwb3174up           UNITED KINGDOM     18-24
## 732  tour_idr8etu15v                   ZAMBIA     25-44
## 733  tour_id519yt4qv UNITED STATES OF AMERICA       65+
## 734  tour_idgohgx3xj                   FRANCE     45-64
## 735  tour_idptzfw7yq                    SPAIN     25-44
## 736  tour_idkcmne82z             SOUTH AFRICA     25-44
## 737  tour_idpggda7cw                   FRANCE     25-44
## 738  tour_id36pog7rk             SOUTH AFRICA     25-44
## 739  tour_id4lc48knj                 THAILAND     25-44
## 740  tour_id0ytg00qy                    ITALY     45-64
## 741  tour_idmfsefl7x                  DENMARK     45-64
## 742  tour_idyy3r1ja8 UNITED STATES OF AMERICA     25-44
## 743  tour_idrc4wv7c7                AUSTRALIA       65+
## 744  tour_idmnv92spa           UNITED KINGDOM     25-44
## 745  tour_id8nmwwdfs UNITED STATES OF AMERICA     25-44
## 746  tour_id0z5aiunj             SOUTH AFRICA       65+
## 747  tour_id1bxey85y                     OMAN     25-44
## 748  tour_id8coy0v3v                    ITALY     25-44
## 749  tour_idjb6n7eu5 UNITED STATES OF AMERICA     18-24
## 750  tour_idbr5v4f4m                    SPAIN     25-44
## 752  tour_idnwu049ji                 ZIMBABWE     25-44
## 753  tour_idqo7c3uog                   UGANDA     25-44
## 754  tour_idzcjtpxxc                   POLAND     45-64
## 755  tour_idv0rkxhow           UNITED KINGDOM     25-44
## 756  tour_idl9vrmf7e           UNITED KINGDOM     25-44
## 758  tour_idahxp4udy                AUSTRALIA       65+
## 759  tour_idg1m2vsa7           UNITED KINGDOM     18-24
## 761  tour_idm6upcide UNITED STATES OF AMERICA     25-44
## 762  tour_idlvhnae7h UNITED STATES OF AMERICA     45-64
## 763  tour_idj98rznyi                 ETHIOPIA     45-64
## 764  tour_idh8817yfm UNITED STATES OF AMERICA     45-64
## 765  tour_idz5fwnwz8                   CANADA     25-44
## 766  tour_idjubf19fd                    KOREA     25-44
## 767  tour_idjm5rn0v1                   FRANCE     45-64
## 769  tour_id1knwaa8z             SOUTH AFRICA     45-64
## 770  tour_id6ro0xpf9 UNITED STATES OF AMERICA     45-64
## 771  tour_idjit1xekm                   ZAMBIA     25-44
## 772  tour_idfcyfiams                     OMAN     25-44
## 773  tour_id6egw397t                   CANADA     25-44
## 774  tour_idwt7ku4kz                    INDIA     45-64
## 775  tour_id6ha7qum1                   SWEDEN     45-64
## 776  tour_idaxevwiu9                SWAZILAND     25-44
## 777  tour_id3abov8ch UNITED STATES OF AMERICA       65+
## 778  tour_idrofcvqbp UNITED STATES OF AMERICA     45-64
## 779  tour_idwkij9dag                    INDIA     25-44
## 780  tour_id5gwuc6iz UNITED STATES OF AMERICA       65+
## 781  tour_idk41qj1vk                   CANADA     25-44
## 782  tour_id64rm1s49                   CANADA     45-64
## 783  tour_idoopj707q UNITED STATES OF AMERICA     25-44
## 784  tour_id5b4720f6                 MALAYSIA     25-44
## 785  tour_idce9apgxf                  GERMANY     18-24
## 786  tour_idk8fjskx5                   CANADA     45-64
## 787  tour_idz1qc1qo9           UNITED KINGDOM     25-44
## 788  tour_ida8jfb2yl UNITED STATES OF AMERICA     25-44
## 789  tour_idhu5m0kig                    SPAIN     25-44
## 790  tour_idmj6kz6u7                    SPAIN       65+
## 791  tour_idixzy17dq             SOUTH AFRICA     25-44
## 792  tour_id2t8h8rzj                AUSTRALIA     25-44
## 793  tour_idmc8xwedk           UNITED KINGDOM       65+
## 795  tour_id3ppq2h72                AUSTRALIA       65+
## 796  tour_id2jkrks8q                    ITALY     25-44
## 797  tour_idagyhkkt4 UNITED STATES OF AMERICA     45-64
## 798  tour_idx1b0f9eo UNITED STATES OF AMERICA     25-44
## 799  tour_idgiiy4h3j           UNITED KINGDOM     45-64
## 800  tour_idnggfo2dl UNITED STATES OF AMERICA     25-44
## 801  tour_idnqos5uss                 ZIMBABWE     25-44
## 802  tour_ideasrz203                    ITALY     25-44
## 803  tour_id6n9r2wpn                   ZAMBIA     25-44
## 804  tour_idbjwgkt6d UNITED STATES OF AMERICA     45-64
## 805  tour_idy5zaf867                  GERMANY     45-64
## 806  tour_id9k9l1kcp           UNITED KINGDOM     18-24
## 808  tour_ids8dgvfno               LUXEMBOURG     45-64
## 809  tour_id3gsn0zw7                      UAE     18-24
## 810  tour_idnt18nov2                    INDIA     25-44
## 811  tour_id2skn9453                    KENYA     25-44
## 812  tour_idm2tu76ew                    KENYA     45-64
## 813  tour_idlg3pj4qk                   ZAMBIA     25-44
## 814  tour_id5rql3ri2                   ZAMBIA     25-44
## 815  tour_idq2qvynnu                    ITALY     25-44
## 816  tour_idmlbk5bmn                 ZIMBABWE     25-44
## 817  tour_id0t4d0kpi                   CANADA     45-64
## 818  tour_id5usjjvfn                    ITALY     25-44
## 820  tour_id57hhrxow                 ZIMBABWE     25-44
## 821  tour_id1i7ysi6b                   FRANCE     25-44
## 822  tour_idlnk82x2m                   SWEDEN     25-44
## 823  tour_id1cevbaf5                    ITALY     18-24
## 824  tour_idhfs50j1d               SWIZERLAND     25-44
## 825  tour_ideh2hvc2y               SWIZERLAND     18-24
## 826  tour_idtnayh6wk                    ITALY     45-64
## 827  tour_iddxdl8jxv UNITED STATES OF AMERICA       65+
## 828  tour_idxpepw68j                    ITALY     25-44
## 829  tour_iddewgnwvg                   FRANCE     25-44
## 830  tour_ido3y4kjgs           CZECH REPUBLIC       65+
## 831  tour_idwckx8dnq                  GERMANY     25-44
## 832  tour_id97tn0478                   RWANDA     18-24
## 833  tour_idv1n2z6t0                   FRANCE     25-44
## 834  tour_iddombwxqg                  FINLAND     25-44
## 835  tour_idt1ac2ajp             SOUTH AFRICA     25-44
## 836  tour_iddmt86wy4                   CANADA     25-44
## 837  tour_id8c9tymp1                    CHINA     25-44
## 838  tour_idi0qi6u6z                      UAE     45-64
## 839  tour_id12kisihq                    SPAIN     25-44
## 840  tour_idb1fq1nvz                    ITALY     25-44
## 841  tour_id9o0ld2av                SINGAPORE     25-44
## 842  tour_idlv1gdabi                  AUSTRIA     45-64
## 843  tour_idebyxot7e                  AUSTRIA     45-64
## 844  tour_idqsijhf0v UNITED STATES OF AMERICA     45-64
## 845  tour_idmccrmwsc                    ITALY     45-64
## 846  tour_idhuo11jb7                   NORWAY     25-44
## 847  tour_idttsyp4gl                   FRANCE     45-64
## 848  tour_idsvs4iv4k                   ZAMBIA     25-44
## 849  tour_id97te5en4              NETHERLANDS     45-64
## 851  tour_idw2nhel2j                  IRELAND     25-44
## 852  tour_idlqka43xv                 ZIMBABWE     45-64
## 853  tour_idt0w87xn9                    ITALY     25-44
## 854  tour_id2ig2o54k UNITED STATES OF AMERICA     25-44
## 855  tour_iddevzvtim                    SUDAN     25-44
## 856  tour_id8qs249az                  BURUNDI     18-24
## 857  tour_idi0wzt725                  BURUNDI     25-44
## 858  tour_idxqp1nqok UNITED STATES OF AMERICA     45-64
## 859  tour_idgfy9lwa4 UNITED STATES OF AMERICA     45-64
## 860  tour_idh6blsy1v                 ZIMBABWE     25-44
## 861  tour_iduz5u55c3 UNITED STATES OF AMERICA     45-64
## 862  tour_idz0x2kk4f                   FRANCE     45-64
## 863  tour_idou1v50t0 UNITED STATES OF AMERICA     45-64
## 864  tour_idbyx7nvip                   CANADA     45-64
## 865  tour_idfrz3pzig                    ITALY     25-44
## 866  tour_idevlayuk2 UNITED STATES OF AMERICA     25-44
## 867  tour_id7m9sain7                   FRANCE     45-64
## 869  tour_idt8ggtpgn              NETHERLANDS     25-44
## 870  tour_idpjb31393                   CANADA     45-64
## 871  tour_id3plu7xbw             SOUTH AFRICA     45-64
## 872  tour_idqe9ee770           UNITED KINGDOM     25-44
## 873  tour_id34xebjze                 ZIMBABWE     25-44
## 874  tour_idpp7q2ca3           UNITED KINGDOM     25-44
## 875  tour_idsm8rf6j3                   FRANCE     45-64
## 876  tour_id2x677z8i                 PORTUGAL     25-44
## 877  tour_id2miyow5x                    INDIA     25-44
## 878  tour_idb5t3zxo1                    ITALY     45-64
## 880  tour_id6yzhxvv3 UNITED STATES OF AMERICA       65+
## 881  tour_ida5qbl0v6                    ITALY     25-44
## 882  tour_idgikho6i7 UNITED STATES OF AMERICA     25-44
## 883  tour_id81y3sjjx                  GERMANY       65+
## 884  tour_idugij73za                    JAPAN     25-44
## 885  tour_idn3fky8jo           UNITED KINGDOM     25-44
## 886  tour_idicrzxzts                    INDIA     45-64
## 887  tour_idg2216mcc                   UGANDA     25-44
## 888  tour_id4iptixy4           UNITED KINGDOM     45-64
## 889  tour_idk9j0ih29                   CANADA     45-64
## 891  tour_id30a4ql15                      UAE     25-44
## 892  tour_id4jc8m8fp                     OMAN     25-44
## 893  tour_id57wq6iuo                   FRANCE     45-64
## 894  tour_idrw8xfp6f         PAPUA NEW GUINEA     25-44
## 895  tour_idhcqpzn17                      UAE       <18
## 896  tour_id10z7nnfp             SOUTH AFRICA     25-44
## 898  tour_ida7e69ex2                  BURUNDI     25-44
## 900  tour_idrjdbszy0                AUSTRALIA     45-64
## 901  tour_idoilg20rj                      DRC     18-24
## 904  tour_idzcbdwypc                    SPAIN     45-64
## 905  tour_idnhk5h3px UNITED STATES OF AMERICA     25-44
## 906  tour_id8dhzcp97                   FRANCE     45-64
## 907  tour_idvjjps2ce                    ITALY     45-64
## 908  tour_idbs0wjay8                   SWEDEN     25-44
## 909  tour_idrr7gh3gy                   UGANDA     25-44
## 910  tour_id8zf0zf4h                    KENYA     25-44
## 911  tour_id07hyg50w UNITED STATES OF AMERICA     45-64
## 913  tour_idrzlxta35           UNITED KINGDOM     18-24
## 914  tour_idhp96ti73 UNITED STATES OF AMERICA     25-44
## 915  tour_idan5nuy1r                 PAKISTAN     25-44
## 916  tour_idepzoxdt6                AUSTRALIA     25-44
## 917  tour_idnwemlhas                    KENYA     18-24
## 918  tour_id8dskclad                    ITALY     25-44
## 919  tour_ide14cbkpj UNITED STATES OF AMERICA     25-44
## 920  tour_id399j15th                    ITALY     45-64
## 921  tour_idzubllirp                   ZAMBIA     25-44
## 922  tour_idomuig4sh                 ZIMBABWE     25-44
## 923  tour_id9p4c199v                    ITALY     25-44
## 924  tour_idktf6m4ty           UNITED KINGDOM     18-24
## 925  tour_idb03y6l3a                  DENMARK     18-24
## 926  tour_idbtqft7n1                 ZIMBABWE     25-44
## 927  tour_idm7trhmr0                   NORWAY     18-24
## 928  tour_id40s3ku67             SOUTH AFRICA     25-44
## 929  tour_idm6xocsxu                AUSTRALIA       65+
## 930  tour_iddyl8871x             SOUTH AFRICA     45-64
## 931  tour_id4wypi8id                   CANADA     45-64
## 932  tour_idakdoenzq                AUSTRALIA     25-44
## 933  tour_id7bjvx37q                    SPAIN     25-44
## 934  tour_idmuft20xp                   CANADA     25-44
## 935  tour_idwn76isu9             SOUTH AFRICA     25-44
## 937  tour_idccqj445d                   POLAND     45-64
## 938  tour_idbk3s6y95                  GERMANY     18-24
## 939  tour_idq4jk9if7 UNITED STATES OF AMERICA       65+
## 940  tour_idz6ik236a                    ITALY     25-44
## 941  tour_iduubr8zgi UNITED STATES OF AMERICA     45-64
## 942  tour_idcu5tay0j                   ZAMBIA     45-64
## 943  tour_idrplza4av UNITED STATES OF AMERICA     18-24
## 944  tour_idrrik4c88 UNITED STATES OF AMERICA     45-64
## 945  tour_idj35ptpq1                    ITALY     25-44
## 946  tour_id953eafoa                    ITALY     25-44
## 947  tour_id6bdgzag6 UNITED STATES OF AMERICA       65+
## 948  tour_idp4ivlleq UNITED STATES OF AMERICA     25-44
## 949  tour_idahct1yla UNITED STATES OF AMERICA     25-44
## 950  tour_idw9494ihs UNITED STATES OF AMERICA     25-44
## 951  tour_id1mi3xrtg UNITED STATES OF AMERICA       65+
## 952  tour_idrbbv9b00                     OMAN     25-44
## 953  tour_idq1oljn0n                 ZIMBABWE     25-44
## 955  tour_idiqw31sxu             SOUTH AFRICA     45-64
## 956  tour_id9acdi0xw                    SPAIN     45-64
## 957  tour_id7z4pdeku                  BELGIUM     45-64
## 958  tour_id0554c5qp               SWIZERLAND     45-64
## 959  tour_id5n5l2hlv                   FRANCE     45-64
## 960  tour_idsqbvzg7p                  GERMANY     25-44
## 961  tour_id80q9rslq                    KENYA     25-44
## 962  tour_ide25wpm5b                   CANADA     45-64
## 963  tour_ids1waihbx                    ITALY     25-44
## 964  tour_id60essmdq UNITED STATES OF AMERICA     45-64
## 966  tour_idcnd82853                AUSTRALIA       65+
## 967  tour_idwkqnepdb                    ITALY     45-64
## 968  tour_idkzeamaow                  BURUNDI     25-44
## 971  tour_idb4lli0lt                  DENMARK     18-24
## 972  tour_id6stmahv5           UNITED KINGDOM     45-64
## 973  tour_idyzpx1hjb                    ITALY     45-64
## 975  tour_idpnlyrjsr                   CANADA     18-24
## 976  tour_idippna4xk                    ITALY     45-64
## 977  tour_idrnzm5jhm                   MALAWI     25-44
## 978  tour_iduqc8j3qw                 ZIMBABWE     25-44
## 979  tour_id7gmfaz89                    CHINA     25-44
## 980  tour_id2f944pgn                SRI LANKA     25-44
## 981  tour_idxbbg4rak              NETHERLANDS     25-44
## 982  tour_id0tbiu06u                   FRANCE     18-24
## 983  tour_idsy4c42gs                  GERMANY     45-64
## 984  tour_idgib2bvnb                  GERMANY     18-24
## 985  tour_id9r01f2q6                      DRC     25-44
## 986  tour_idw7932zj7                   UGANDA     45-64
## 987  tour_id2y3b5s4m           UNITED KINGDOM     45-64
## 988  tour_idkwtq7rka                   CANADA     45-64
## 989  tour_idf89vn9iw             SOUTH AFRICA     25-44
## 991  tour_id48jvk1d4                   FRANCE       65+
## 992  tour_idx6zxd2tz                    KENYA     25-44
## 993  tour_idm27cm0we                    ITALY     25-44
## 994  tour_id290bsszb                    INDIA     25-44
## 995  tour_idsnac0po1 UNITED STATES OF AMERICA       65+
## 996  tour_idke7h7zeu                  GERMANY     25-44
## 997  tour_idl8qerur8                    CONGO     18-24
## 998  tour_id8wt9x46p                    SPAIN     25-44
## 999  tour_id0k33xqbb              NEW ZEALAND     45-64
## 1000 tour_idsudovc5a UNITED STATES OF AMERICA     25-44
## 1001 tour_idix8o0mz8 UNITED STATES OF AMERICA     45-64
## 1002 tour_id5m0f6nmy                   CANADA     25-44
## 1003 tour_ide1whuxds                  GERMANY       65+
## 1005 tour_id3vjvpmzh           UNITED KINGDOM     45-64
## 1006 tour_idtn4ylxkq                  GERMANY     25-44
## 1007 tour_ido2y6bdrs           UNITED KINGDOM     45-64
## 1008 tour_idxw1mgkel                   UGANDA     18-24
## 1009 tour_idoq5q6hyb UNITED STATES OF AMERICA     45-64
## 1010 tour_idv21gkzbh                  DENMARK     18-24
## 1011 tour_id77zgbirl UNITED STATES OF AMERICA       65+
## 1012 tour_idbv8hqjcm                AUSTRALIA     25-44
## 1013 tour_ide3k3hzgy                  GERMANY     25-44
## 1014 tour_id0ubqwud0                  GERMANY     25-44
## 1015 tour_id3h0w87lg                     OMAN     25-44
## 1016 tour_idvlooil5z                   CANADA     45-64
## 1017 tour_idbd0u31fn                   SWEDEN     25-44
## 1018 tour_ids6iouhtc              NETHERLANDS     25-44
## 1019 tour_id5c13rlgq                    ITALY       65+
## 1020 tour_id2qvqmvxq           UNITED KINGDOM     25-44
## 1021 tour_idlujljbb6                   ZAMBIA     25-44
## 1022 tour_idmqvhbp42                    ITALY     45-64
## 1023 tour_idvkx888vh                    ITALY     45-64
## 1024 tour_idimr28k2w             SOUTH AFRICA     45-64
## 1025 tour_id55efw36f                    QATAR     45-64
## 1026 tour_idq37zznzz                      UAE     25-44
## 1027 tour_id6nw6opb6                   CANADA     25-44
## 1028 tour_idjzvr2ml2                   ZAMBIA     25-44
## 1029 tour_idbttwtheg UNITED STATES OF AMERICA     25-44
## 1030 tour_id0c14xjig                   SWEDEN     25-44
## 1031 tour_idqpcwqnrf                    SPAIN     45-64
## 1032 tour_idc6vdeoq9                    SPAIN     45-64
## 1033 tour_idrw7wwnsw                   RUSSIA     25-44
## 1034 tour_idos9m52fv UNITED STATES OF AMERICA     45-64
## 1035 tour_id1w92duyb     UNITED ARAB EMIRATES     45-64
## 1036 tour_idgc2l56jo UNITED STATES OF AMERICA     45-64
## 1037 tour_idgjvb1vj1                  GERMANY     18-24
## 1038 tour_id5rajwgbi UNITED STATES OF AMERICA     45-64
## 1039 tour_idfv8yrrdo                  IRELAND     25-44
## 1041 tour_idzv5jq13p                    KENYA     45-64
## 1042 tour_idfq0xygek              NEW ZEALAND     45-64
## 1043 tour_idxkcagt9i                  GERMANY       65+
## 1044 tour_id5jr7kt2a                   UGANDA     18-24
## 1045 tour_id2q5p2g1b                    INDIA     25-44
## 1046 tour_idcunhxk7r                    EGYPT     25-44
## 1047 tour_id3btdaclv UNITED STATES OF AMERICA     45-64
## 1048 tour_idxht8sbnt                 ZIMBABWE     25-44
## 1049 tour_idnbfiotfu                  DENMARK     25-44
## 1050 tour_idcmhrm8wl                   RWANDA     18-24
## 1051 tour_idr6lusx09 UNITED STATES OF AMERICA     45-64
## 1052 tour_idjuonyxr9                    ITALY     45-64
## 1053 tour_idkce7erep UNITED STATES OF AMERICA       65+
## 1055 tour_idsa6nc2yp                   ZAMBIA     25-44
## 1056 tour_idhgxresoy UNITED STATES OF AMERICA     45-64
## 1057 tour_idgnywdieq                  BURUNDI     25-44
## 1058 tour_idl40v839c           UNITED KINGDOM     45-64
## 1059 tour_id9wxtxddy                 THAILAND     25-44
## 1060 tour_idtr0woqsp           UNITED KINGDOM     45-64
## 1061 tour_idseusbp16              NETHERLANDS     45-64
## 1062 tour_idykrdy5rp                    SPAIN     25-44
## 1063 tour_idmpx9tpar           UNITED KINGDOM     45-64
## 1065 tour_idw4yk35lk                  GERMANY     25-44
## 1066 tour_idu4u87oy6                  BELGIUM     45-64
## 1067 tour_idyebm1ych                   CANADA       65+
## 1068 tour_idvj4ccd81                    SPAIN     25-44
## 1069 tour_idnguqldy3 UNITED STATES OF AMERICA     25-44
## 1070 tour_ididsdr48v                  GERMANY     25-44
## 1071 tour_idif0kvfx0                   FRANCE     25-44
## 1072 tour_id0svjqb8t                      DRC     25-44
## 1073 tour_ide8zf9843                    KENYA     45-64
## 1074 tour_idevb7ah8r                 ZIMBABWE     25-44
## 1075 tour_idfqgk134a UNITED STATES OF AMERICA     25-44
## 1077 tour_idcxq60ywr                    JAPAN     18-24
## 1078 tour_idycz09za6              NEW ZEALAND     25-44
## 1079 tour_idiboonf3y              NETHERLANDS     25-44
## 1080 tour_idp3mdcle6                   FRANCE     25-44
## 1081 tour_idy5o4fqh1                 ZIMBABWE     25-44
## 1082 tour_idwlcf6vgk UNITED STATES OF AMERICA     25-44
## 1083 tour_id5joppfy0                  GERMANY     45-64
## 1084 tour_ide3r46sfp                  BURUNDI     18-24
## 1086 tour_idd0tr3vvc                   ZAMBIA     45-64
## 1087 tour_idx2olq11s           UNITED KINGDOM     18-24
## 1088 tour_idlw7zljpa                 ZIMBABWE     25-44
## 1089 tour_id2p2905se                   CANADA     25-44
## 1090 tour_id7a5od3oq                  AUSTRIA     45-64
## 1091 tour_idy3zbxz75                 ETHIOPIA     18-24
## 1092 tour_idbn7rn9zd             SOUTH AFRICA       65+
## 1093 tour_idetuahj6q                    ITALY     25-44
## 1094 tour_id89252x1r                   UGANDA     25-44
## 1095 tour_idlns3sdx9 UNITED STATES OF AMERICA       65+
## 1096 tour_id8l6rftpp                   ZAMBIA     25-44
## 1097 tour_iduapginaf           UNITED KINGDOM     18-24
## 1098 tour_idehc1jc7u UNITED STATES OF AMERICA     25-44
## 1099 tour_idwggitlv8 UNITED STATES OF AMERICA     45-64
## 1100 tour_id63prweuf                   CANADA     45-64
## 1101 tour_idy8q27cit UNITED STATES OF AMERICA       65+
## 1102 tour_id8ovzt9q6                    CHINA     18-24
## 1103 tour_idb3iw8xo0                   FRANCE     25-44
## 1104 tour_idi883vv6i                 ZIMBABWE     25-44
## 1105 tour_idvl3biu6x                    KOREA     25-44
## 1106 tour_idwgd9g2f8                   CANADA     45-64
## 1107 tour_idl0pbkc5v                  GERMANY     45-64
## 1108 tour_id543hs0oc UNITED STATES OF AMERICA     45-64
## 1109 tour_idmp3feu07                  GERMANY     25-44
## 1110 tour_id0dn5bkeh                   CANADA     25-44
## 1111 tour_id47d22ons                    ITALY     25-44
## 1112 tour_id6cyb389x                   SWEDEN     45-64
## 1113 tour_ido38s6dor                   UGANDA     45-64
## 1114 tour_id76om6sk9                  GERMANY     25-44
## 1116 tour_idaqnhv8bt                   FRANCE     45-64
## 1118 tour_idyfid2s3z               SWIZERLAND     25-44
## 1119 tour_id9d6vjo8f             SOUTH AFRICA     45-64
## 1120 tour_id27y04p1o                  BURUNDI     25-44
## 1123 tour_iduqxjjv3y             SOUTH AFRICA     45-64
## 1124 tour_ida5hbgbgc                 ZIMBABWE     25-44
## 1125 tour_idslvvj3zv                  GERMANY     25-44
## 1126 tour_id8lm5eea2 UNITED STATES OF AMERICA     45-64
## 1127 tour_idvj5xzlrj                    CHINA     25-44
## 1128 tour_id82a9ubth                  GERMANY     25-44
## 1129 tour_idd7te19kw                   CANADA     45-64
## 1130 tour_idr10ex32d           UNITED KINGDOM     18-24
## 1131 tour_idt5u60t7g                  IRELAND     25-44
## 1132 tour_idd929jmw7                    ITALY     18-24
## 1133 tour_id60gdv6ft                   ZAMBIA     25-44
## 1135 tour_id741yvu62                    KENYA     25-44
## 1136 tour_idjb89hj10                    ITALY     25-44
## 1137 tour_idhulda4y1                   CANADA     45-64
## 1138 tour_idfe27fddt                AUSTRALIA       65+
## 1139 tour_idil9hr901                    ITALY     45-64
## 1140 tour_idbe37snun UNITED STATES OF AMERICA       65+
## 1141 tour_idmzqmzjy7                   CANADA     45-64
## 1142 tour_idbbng0uf0                   UGANDA     25-44
## 1143 tour_idax30bb8r                SINGAPORE     25-44
## 1144 tour_idaijzsgqn           UNITED KINGDOM     25-44
## 1145 tour_idvnevj429                    KENYA     25-44
## 1146 tour_idb8yamnhp                    KENYA     25-44
## 1147 tour_id1x6pm7gn                    ITALY     25-44
## 1148 tour_idgzg2qkpj                    JAPAN     18-24
## 1149 tour_idtk0wcnh9           UNITED KINGDOM     25-44
## 1150 tour_id4oxlkyjp           UNITED KINGDOM     45-64
## 1151 tour_idt2q70jfq                  GERMANY     45-64
## 1152 tour_idvw0bw105                    INDIA     45-64
## 1153 tour_idjlnm6qm1 UNITED STATES OF AMERICA     25-44
## 1154 tour_idkpw1wnqj                   FRANCE     25-44
## 1155 tour_idgqm2up4i                   UGANDA     25-44
## 1156 tour_id3g3o5dzd                   MALAWI     25-44
## 1157 tour_id7sd3bnbu UNITED STATES OF AMERICA     25-44
## 1158 tour_id4jn1oyg0                   NORWAY     18-24
## 1159 tour_idw8k7es1o                 ETHIOPIA     25-44
## 1160 tour_idb5nmh2zw                   ISRAEL       65+
## 1161 tour_iddj1b1u8e                   UGANDA     25-44
## 1163 tour_idbndoufi8                 THAILAND     45-64
## 1164 tour_idwbs03n6a                AUSTRALIA     25-44
## 1165 tour_idlgxn4936                   ZAMBIA     45-64
## 1166 tour_idzwognf3n                    ITALY     25-44
## 1167 tour_id957ccfus           UNITED KINGDOM     45-64
## 1168 tour_idcgu2fchr UNITED STATES OF AMERICA     45-64
## 1169 tour_idkq2wezfn                    ITALY     25-44
## 1170 tour_id6nd5m9y0                   ZAMBIA     25-44
## 1172 tour_idkus807m8           UNITED KINGDOM     18-24
## 1173 tour_idmzv0vl51           UNITED KINGDOM     45-64
## 1174 tour_id5qwubx23                   CANADA     18-24
## 1175 tour_idhqinzygj                  GERMANY     45-64
## 1176 tour_iduvirqpr9                    ITALY     25-44
## 1177 tour_idzkpg33ua           UNITED KINGDOM     45-64
## 1178 tour_idmqoe8dln             SOUTH AFRICA     25-44
## 1179 tour_id4ntpc9uc UNITED STATES OF AMERICA       65+
## 1180 tour_id3z9isqga                    SPAIN     45-64
## 1181 tour_idmsfdxxjd                  DENMARK     25-44
## 1182 tour_idwwtgf7nd                   CANADA     25-44
## 1183 tour_id4u68b15t                  GERMANY     25-44
## 1184 tour_id6yljrbl0                   FRANCE     25-44
## 1185 tour_idc2xvsjhw                   ZAMBIA     25-44
## 1186 tour_idog3f4ek0                    SPAIN     25-44
## 1187 tour_idkmzt9l5r                    KENYA     45-64
## 1188 tour_idoqmx9p8q                   FRANCE     45-64
## 1189 tour_idt20k3qin                 ETHIOPIA     45-64
## 1190 tour_id15rnscw1                   UGANDA     25-44
## 1191 tour_id46bnvryu              NETHERLANDS     25-44
## 1192 tour_idxixihqzt                   MALAWI     18-24
## 1193 tour_idhz7ejq3m                    SPAIN     45-64
## 1194 tour_idtiizjel1                    CONGO     18-24
## 1195 tour_idziplcuzs                   FRANCE     25-44
## 1196 tour_idbfpi7eha             SOUTH AFRICA     25-44
## 1197 tour_idfy4y39ot                  BELGIUM     25-44
## 1198 tour_id5mbf3jkq           UNITED KINGDOM     45-64
## 1199 tour_idephcj8sx UNITED STATES OF AMERICA     45-64
## 1200 tour_idw2ypwu80 UNITED STATES OF AMERICA     18-24
## 1201 tour_idocbrrq8w                    ITALY     25-44
## 1202 tour_idmwrixncl                   UGANDA     25-44
## 1203 tour_idajbpnmwy                    ITALY       65+
## 1205 tour_idyge7n5vt           UNITED KINGDOM     45-64
## 1206 tour_idrdjx0pmq                   RWANDA     45-64
## 1207 tour_idt6jfkt6w                    CHINA     18-24
## 1208 tour_idtlm4zps4                 COLOMBIA     25-44
## 1209 tour_idrua068to                    ITALY     45-64
## 1210 tour_id5ehjtyt4                   POLAND     25-44
## 1211 tour_idwhx8e94m                    ITALY     25-44
## 1212 tour_idun10x5k7                      UAE     25-44
## 1213 tour_id3jb38898                  BURUNDI     18-24
## 1214 tour_idvv3rw05j                    ITALY     45-64
## 1215 tour_idkwhrpqg7                    KOREA     25-44
## 1216 tour_idmfg1vj7g UNITED STATES OF AMERICA     25-44
## 1217 tour_idhzxdwji6               SWIZERLAND     18-24
## 1218 tour_idusyvdem7                    ITALY     25-44
## 1219 tour_idh2va6bw5                   MALAWI     25-44
## 1220 tour_ide3f2cqaa UNITED STATES OF AMERICA     45-64
## 1221 tour_idigteq51z             SOUTH AFRICA     25-44
## 1222 tour_id8qja3usr UNITED STATES OF AMERICA     25-44
## 1223 tour_idxr4wkfgq                    KENYA     45-64
## 1224 tour_idp9cyi1wq         PAPUA NEW GUINEA     25-44
## 1225 tour_idxbeoxo6i                   FRANCE     18-24
## 1227 tour_ido16rps3x               SWIZERLAND     45-64
## 1228 tour_idev708rsx                   UGANDA     25-44
## 1229 tour_id0530568v                   FRANCE     25-44
## 1232 tour_idws8rsm5z           UNITED KINGDOM     25-44
## 1233 tour_idb5x14zfb                    ITALY     45-64
## 1234 tour_idz6wkt8xz                INDONESIA     25-44
## 1235 tour_iderux9isb                   ZAMBIA     18-24
## 1237 tour_idji3oacvg                    ITALY     45-64
## 1238 tour_ide079582f                 ZIMBABWE     25-44
## 1239 tour_idgw43tx61                  DENMARK     25-44
## 1240 tour_idq08rna4x                   ZAMBIA     25-44
## 1241 tour_idaiq5wjoa               MOZAMBIQUE     45-64
## 1242 tour_idiqazqawc           UNITED KINGDOM     25-44
## 1243 tour_idesel4j0g           UNITED KINGDOM     18-24
## 1244 tour_id9cndss5m                    EGYPT     25-44
## 1245 tour_idfdq4pwel UNITED STATES OF AMERICA     45-64
## 1246 tour_id6fxhyjhl                    ITALY       65+
## 1247 tour_idysuw0w2e           UNITED KINGDOM     45-64
## 1248 tour_idp1i2wjb2              NETHERLANDS     18-24
## 1249 tour_idhu1u8thv UNITED STATES OF AMERICA       65+
## 1250 tour_id7zsicxuh UNITED STATES OF AMERICA       65+
## 1251 tour_idfqevhpko                  GERMANY     25-44
## 1252 tour_iddyp1xcie                    INDIA       65+
## 1253 tour_idqqk4va65 UNITED STATES OF AMERICA     25-44
## 1254 tour_idwius8afv                  IRELAND     45-64
## 1255 tour_idhkgr5jbf                    ITALY     45-64
## 1256 tour_id1u6tv1um                   FRANCE     25-44
## 1257 tour_idrt2x2s3m                  BURUNDI     25-44
## 1258 tour_idnx624u88 UNITED STATES OF AMERICA     45-64
## 1259 tour_idgqe536co           UNITED KINGDOM     45-64
## 1260 tour_idk20b86yj           UNITED KINGDOM     25-44
## 1261 tour_idasj50o9f                    KENYA     25-44
## 1262 tour_idq6fisy96                   FRANCE     25-44
## 1263 tour_idi6md02qe                    ITALY     25-44
## 1264 tour_idfptsaqjy UNITED STATES OF AMERICA     45-64
## 1265 tour_ida8d4xfpo UNITED STATES OF AMERICA     25-44
## 1266 tour_id5nazzl4k UNITED STATES OF AMERICA       65+
## 1267 tour_id3ccrh770                    ITALY     25-44
## 1268 tour_id053wfem9 UNITED STATES OF AMERICA       65+
## 1269 tour_idzzf5ufo3                  GERMANY     25-44
## 1270 tour_id6ik71gsk             SOUTH AFRICA     25-44
## 1271 tour_id0io0zlgo               SWIZERLAND     45-64
## 1272 tour_idi2pq3vhl                    ITALY     25-44
## 1274 tour_idvj5cbwxi                   FRANCE     45-64
## 1275 tour_id1gfpzo9w                   UGANDA     18-24
## 1276 tour_id7ri4a4cn                   CANADA     45-64
## 1277 tour_idfwpoajpe                   COMORO     45-64
## 1278 tour_idgu1z0gax                    INDIA     25-44
## 1279 tour_id5fpehn34                   UGANDA     25-44
## 1280 tour_idch1c1ioz                AUSTRALIA     45-64
## 1281 tour_id3khsaxim                   CANADA     18-24
## 1282 tour_id9mjhg9gs                   FRANCE       65+
## 1283 tour_idn5orby2d                   UGANDA     25-44
## 1284 tour_id7ojaf3nw                 CAMEROON     45-64
## 1286 tour_id9okhpta4                  BURUNDI     18-24
## 1287 tour_idccfgh92h               LUXEMBOURG     25-44
## 1288 tour_idbolhcm3g UNITED STATES OF AMERICA     45-64
## 1289 tour_idnz8vvb7m                    INDIA     25-44
## 1290 tour_idygfeazgd                   FRANCE     45-64
## 1291 tour_idyg7i2qg2                   FRANCE     45-64
## 1292 tour_idzm1tr77w                   ZAMBIA     45-64
## 1293 tour_id3891v4tb UNITED STATES OF AMERICA       65+
## 1294 tour_idjvuth5rk                   UGANDA     25-44
## 1295 tour_idprjzukio UNITED STATES OF AMERICA       65+
## 1296 tour_idb5q5vl6a                    SPAIN     25-44
## 1297 tour_idwo4kaqog           UNITED KINGDOM     25-44
## 1298 tour_idrpg5glhh                    ITALY     25-44
## 1299 tour_idx3sbgqse UNITED STATES OF AMERICA       65+
## 1300 tour_idlqgkfbpc UNITED STATES OF AMERICA     25-44
## 1301 tour_idx1nmghcd                   FRANCE     45-64
## 1302 tour_id39g9new7             SOUTH AFRICA     45-64
## 1303 tour_idmkqyubl5                      UAE     25-44
## 1304 tour_idbyr4mr12                   ZAMBIA     25-44
## 1305 tour_iduj5oiwpr                   ZAMBIA     25-44
## 1306 tour_id0adqucjh                   UGANDA     45-64
## 1307 tour_idpre4tf0p                   CANADA     45-64
## 1308 tour_idxu3ft6m3                      DRC     18-24
## 1309 tour_idxc4b71an                  GERMANY     45-64
## 1310 tour_idmut9g92b                    ITALY     18-24
## 1311 tour_idnfsiv5ii UNITED STATES OF AMERICA     25-44
## 1312 tour_id70zs699v                    CHINA     25-44
## 1313 tour_id4s54epdi UNITED STATES OF AMERICA       65+
## 1314 tour_id1qoa2q9p                   ZAMBIA     25-44
## 1315 tour_idt455theu                    INDIA     25-44
## 1316 tour_idjo7q2wx8 UNITED STATES OF AMERICA     25-44
## 1317 tour_idz62fncaj                    INDIA     25-44
## 1318 tour_id8th5oxph                    KENYA     25-44
## 1320 tour_id5x0gqqn9                 ZIMBABWE     25-44
## 1321 tour_id4zha2t66                AUSTRALIA       65+
## 1322 tour_idzjhp200g                   ZAMBIA     45-64
## 1323 tour_id7j2v1n9x              NEW ZEALAND       65+
## 1324 tour_idz9xicnp4                   ZAMBIA     45-64
## 1325 tour_id1oyzqaek                      DRC     18-24
## 1326 tour_ideatachk3           UNITED KINGDOM       65+
## 1327 tour_idm3pb7759                   CANADA     45-64
## 1328 tour_idave54w6x               SWIZERLAND     25-44
## 1329 tour_idq3rteu61           UNITED KINGDOM     45-64
## 1330 tour_idut0rmz31           UNITED KINGDOM     25-44
## 1331 tour_idjosoits6                    CHINA     25-44
## 1332 tour_idjjxmbn6a                   FRANCE     25-44
## 1333 tour_idppjmfsga                  GERMANY     45-64
## 1334 tour_idb8dgr0pc                   UGANDA     45-64
## 1335 tour_id1a7vnc1t           UNITED KINGDOM     45-64
## 1336 tour_idk1ks7iwd                  GERMANY     45-64
## 1337 tour_id6qonqhu2               SWIZERLAND       65+
## 1338 tour_id7dq3asc2                    ITALY       <18
## 1339 tour_idb33f1znk                    ITALY     25-44
## 1340 tour_idbwo3ntjs           UNITED KINGDOM     45-64
## 1341 tour_idgjnnbh15                    ITALY     25-44
## 1342 tour_id1gjxdvih UNITED STATES OF AMERICA     45-64
## 1343 tour_id739kzags UNITED STATES OF AMERICA       65+
## 1344 tour_idlzkqnhmi UNITED STATES OF AMERICA     45-64
## 1345 tour_idtoncld5w                   FRANCE     45-64
## 1346 tour_idn80mg4xi                    ITALY     18-24
## 1347 tour_idl2r4oiec           UNITED KINGDOM     45-64
## 1348 tour_idyzopjqpe                 ZIMBABWE     25-44
## 1349 tour_idv0uvysjr                    INDIA     25-44
## 1350 tour_id9gqp6b20                 MALAYSIA     45-64
## 1351 tour_idvo2y4u5f             SOUTH AFRICA       65+
## 1352 tour_idpm3j4uhq                    KENYA     45-64
## 1353 tour_idt6zcmvas             SOUTH AFRICA     45-64
## 1354 tour_idpam31otf                    ITALY     25-44
## 1355 tour_idb090hk85                    KENYA     45-64
## 1356 tour_idqx0vpyyd UNITED STATES OF AMERICA     18-24
## 1357 tour_id7hgm695b                AUSTRALIA     45-64
## 1359 tour_idln6a4m8s                  BURUNDI     18-24
## 1361 tour_idm4tg8dm0                  AUSTRIA     25-44
## 1362 tour_id16vmgej9           UNITED KINGDOM     45-64
## 1363 tour_id1wmsydpr UNITED STATES OF AMERICA       65+
## 1365 tour_id2iistzrn           UNITED KINGDOM     25-44
## 1366 tour_idcqoatze4                    ITALY     25-44
## 1367 tour_idtomrt3jq UNITED STATES OF AMERICA       65+
## 1368 tour_idnvu2adch UNITED STATES OF AMERICA       65+
## 1369 tour_idz3ha9bm9 UNITED STATES OF AMERICA     18-24
## 1371 tour_idl4ttp9xa UNITED STATES OF AMERICA     45-64
## 1372 tour_idgwr5b5ye           UNITED KINGDOM     25-44
## 1373 tour_idost6r8rp                    ITALY     25-44
## 1374 tour_idkja45oe3                    ITALY     25-44
## 1376 tour_id5lksjjf3           UNITED KINGDOM     18-24
## 1377 tour_idxqgxw5oe                   TAIWAN     18-24
## 1378 tour_id3d1wc18s                   FRANCE     45-64
## 1379 tour_idodurq6l6                  BELGIUM     45-64
## 1380 tour_idn4p7ks8e           UNITED KINGDOM     45-64
## 1381 tour_id6ie32rry                   UGANDA     45-64
## 1383 tour_idjwiwdpvx                   RUSSIA     25-44
## 1384 tour_idcc01unxl                   SWEDEN     45-64
## 1385 tour_id7k5u642w                    ITALY     25-44
## 1386 tour_idc7wbblr0                    JAPAN     25-44
## 1387 tour_idjtptvxd1             SOUTH AFRICA     25-44
## 1388 tour_iduuryz6nr                   CANADA     25-44
## 1389 tour_idesn5eq37             SOUTH AFRICA     25-44
## 1390 tour_idsi2d9waz           UNITED KINGDOM     25-44
## 1391 tour_id29lyvl1o              NETHERLANDS     18-24
## 1392 tour_idkn5rgdjv UNITED STATES OF AMERICA       65+
## 1393 tour_idzyzkw7xi UNITED STATES OF AMERICA       65+
## 1394 tour_idpnmuks22                   ANGOLA     45-64
## 1395 tour_idjhzj19ph                  BURUNDI     25-44
## 1396 tour_idikqf6o2n               SWIZERLAND     45-64
## 1397 tour_id0w1z477x                      UAE     25-44
## 1398 tour_id11tjs5ay UNITED STATES OF AMERICA       65+
## 1399 tour_id632yuroz                  GERMANY     45-64
## 1400 tour_ida698nl8p           UNITED KINGDOM     25-44
## 1401 tour_idi5mz1wg1                   CANADA     25-44
## 1402 tour_id7ce9skpk                   CANADA     45-64
## 1403 tour_id4uhhsehl                 ZIMBABWE     25-44
## 1404 tour_id7s73thv1                  GERMANY     45-64
## 1405 tour_idgeve6pq5                    ITALY     25-44
## 1406 tour_idvtxf2ia0 UNITED STATES OF AMERICA       65+
## 1407 tour_idntd0b0hq                   UGANDA     18-24
## 1408 tour_idlm530v53                 MALAYSIA     45-64
## 1409 tour_idse3waw0r                    ITALY       65+
## 1410 tour_idku0m1v5x           UNITED KINGDOM     25-44
## 1411 tour_idogc0ujzs              NETHERLANDS     45-64
## 1412 tour_id62yq68fp                    CHINA     25-44
## 1413 tour_idae6mmj0g                 ZIMBABWE     25-44
## 1414 tour_id3xxf354t                   CANADA     25-44
## 1415 tour_idqv5imdka                    ITALY     25-44
## 1416 tour_idxh3npwga                   ZAMBIA     25-44
## 1417 tour_idclz4lcbk                AUSTRALIA     25-44
## 1418 tour_idr6i8m29p                    EGYPT     18-24
## 1419 tour_id79f0aphy                    KENYA     45-64
## 1420 tour_idrefcdck6                  BELGIUM     18-24
## 1421 tour_idree348pp UNITED STATES OF AMERICA     45-64
## 1422 tour_idgvjzamz9                  GERMANY     18-24
## 1423 tour_idyrip5bm4 UNITED STATES OF AMERICA     25-44
## 1425 tour_id6tnk28t3 UNITED STATES OF AMERICA       65+
## 1426 tour_id2mrx1lir             SOUTH AFRICA       65+
## 1427 tour_idjdpwxz85                 BULGARIA     25-44
## 1428 tour_idwmgmb4ao                    SPAIN     45-64
## 1429 tour_idp1ke2t08           UNITED KINGDOM     25-44
## 1430 tour_idwvv5i41b                  FINLAND     18-24
## 1431 tour_idjo9rvdem                    KENYA     25-44
## 1432 tour_idorx0g8d7             SOUTH AFRICA     25-44
## 1433 tour_idqfdux2an                SINGAPORE     45-64
## 1434 tour_idu1vlp3n7                   UGANDA     25-44
## 1435 tour_id8unex1qn                   RWANDA     25-44
## 1437 tour_idmh3nvyk3           UNITED KINGDOM     18-24
## 1438 tour_idejuk398w                AUSTRALIA       65+
## 1439 tour_idq13nstvw                AUSTRALIA     45-64
## 1440 tour_idijsq4tst                  GERMANY     45-64
## 1441 tour_idtv6c6asv UNITED STATES OF AMERICA     25-44
## 1442 tour_idb9plqtie                   ANGOLA     45-64
## 1443 tour_idk63cvqy4           UNITED KINGDOM     25-44
## 1444 tour_idrszanvtu UNITED STATES OF AMERICA     25-44
## 1445 tour_idw1vrinwk           UNITED KINGDOM     25-44
## 1446 tour_id3qkg583a                   FRANCE     45-64
## 1447 tour_idgtnnkk6l                    INDIA     45-64
## 1448 tour_id2gzyvzwj           UNITED KINGDOM     18-24
## 1449 tour_id5khpb17t                  BELGIUM     45-64
## 1450 tour_idwf7hdfdc UNITED STATES OF AMERICA     45-64
## 1451 tour_ida2s95r25                   FRANCE     25-44
## 1452 tour_idrq62keyq               SWIZERLAND     45-64
## 1453 tour_id56kezgem UNITED STATES OF AMERICA     45-64
## 1454 tour_iddwu5yy2j                   FRANCE     45-64
## 1455 tour_idmfcy4ov7             SOUTH AFRICA     45-64
## 1456 tour_iddgvlym54           UNITED KINGDOM     18-24
## 1457 tour_id0qbmtni6 UNITED STATES OF AMERICA       65+
## 1458 tour_idmlah3alp           UNITED KINGDOM     18-24
## 1459 tour_ida7euni9r                    ITALY     45-64
## 1460 tour_id60xtttkj                   ZAMBIA     25-44
## 1461 tour_id3e9j51hh                   RWANDA     25-44
## 1464 tour_id2jot9znr                   FRANCE     45-64
## 1465 tour_id5v4ei2u2 UNITED STATES OF AMERICA     45-64
## 1466 tour_idbox4xgau           UNITED KINGDOM     25-44
## 1467 tour_ide14a0dd0                  BELGIUM     25-44
## 1468 tour_idj7hxbocu                    ITALY     18-24
## 1469 tour_idcrtojnuo           UNITED KINGDOM     45-64
## 1470 tour_idy66li3rf                   ZAMBIA     25-44
## 1471 tour_idbhwf52pu                AUSTRALIA     45-64
## 1472 tour_idqc9nxfpg                AUSTRALIA       65+
## 1473 tour_idy5yttp9p UNITED STATES OF AMERICA     45-64
## 1474 tour_idjxdnav6t                      UAE     25-44
## 1476 tour_idk3z4fru4 UNITED STATES OF AMERICA       65+
## 1477 tour_iderz848mk                  GERMANY     45-64
## 1478 tour_idfpi4w66e           UNITED KINGDOM     25-44
## 1479 tour_id5kmxk1ke                    ITALY     45-64
## 1480 tour_idyfrfnng3             SOUTH AFRICA     25-44
## 1481 tour_idnfcxf8le                   CANADA     25-44
## 1482 tour_idpk56uyq0           UNITED KINGDOM     45-64
## 1483 tour_idzmwbfy2h                 MALAYSIA     45-64
## 1484 tour_idkdnfin8u             SOUTH AFRICA     25-44
## 1485 tour_idqf0e2ej3 UNITED STATES OF AMERICA     25-44
## 1486 tour_idp9ubueja                   SWEDEN     18-24
## 1487 tour_idovqpxjuf                  BELGIUM     18-24
## 1488 tour_idi87yrmz5                   ZAMBIA     25-44
## 1489 tour_idzkqutn2x           UNITED KINGDOM     25-44
## 1490 tour_idv951w3qg                  GERMANY     45-64
## 1491 tour_ide1t82qd3                  GERMANY       <18
## 1492 tour_idog9bfs6r                  GERMANY     45-64
## 1493 tour_idkazsriqc                   ZAMBIA     18-24
## 1494 tour_idzyttlo0o                    KENYA     25-44
## 1495 tour_id1k03ipqb           UNITED KINGDOM     18-24
## 1496 tour_idvr26nwu7           UNITED KINGDOM     45-64
## 1497 tour_idhx47sto1                   FRANCE     45-64
## 1498 tour_id490gfl3s                 PAKISTAN     25-44
## 1499 tour_idntf1w3pq                 ZIMBABWE     45-64
## 1500 tour_idjwwujpko           UNITED KINGDOM     18-24
## 1501 tour_idky9jbkem UNITED STATES OF AMERICA     45-64
## 1502 tour_id5ysbbaq4                   ZAMBIA     25-44
## 1503 tour_iddyc5kd9f                  GERMANY     25-44
## 1504 tour_idlehwqtkl                   UGANDA     25-44
## 1505 tour_idw5ghw44t                    SPAIN     25-44
## 1506 tour_id316md3ah                   CANADA     25-44
## 1507 tour_idxok7f5tf                  DENMARK     25-44
## 1509 tour_id5gw54rg7                    ITALY     45-64
## 1510 tour_idv2zdivkg                    INDIA     45-64
## 1511 tour_idvgjh5b7k                  DENMARK     45-64
## 1512 tour_idmzhr85vb UNITED STATES OF AMERICA       65+
## 1514 tour_idmqfj1e7p                  BURUNDI     25-44
## 1515 tour_idk4lr1cbp                  GERMANY     25-44
## 1516 tour_idt82smmx8                      DRC     25-44
## 1517 tour_idomyw7r06                   CANADA     45-64
## 1518 tour_idjqsah3fa                AUSTRALIA     45-64
## 1519 tour_id523wzzy5                  GERMANY     45-64
## 1520 tour_id98tubej1                    CONGO       65+
## 1521 tour_idg9rxnc7d UNITED STATES OF AMERICA       65+
## 1522 tour_idl8k07w2k UNITED STATES OF AMERICA       65+
## 1524 tour_id6f65k6z6                 ZIMBABWE     25-44
## 1525 tour_id53nui0sr           UNITED KINGDOM     25-44
## 1526 tour_idkg659mff             SOUTH AFRICA     25-44
## 1527 tour_idppelfvhz                   UGANDA       65+
## 1528 tour_id11k0gard              NETHERLANDS     25-44
## 1529 tour_idds0i33x4                    SPAIN     25-44
## 1530 tour_idqi2t5xfa UNITED STATES OF AMERICA     25-44
## 1531 tour_idd8yz5cij           UNITED KINGDOM     45-64
## 1532 tour_idbzftm2x4             SOUTH AFRICA     45-64
## 1533 tour_idu8bcuohm UNITED STATES OF AMERICA     45-64
## 1534 tour_idzbxyd719           UNITED KINGDOM     25-44
## 1535 tour_idkvj3bl9e UNITED STATES OF AMERICA     45-64
## 1536 tour_idjhh7eajo     UNITED ARAB EMIRATES     45-64
## 1537 tour_idsm903v3h           UNITED KINGDOM     25-44
## 1538 tour_id8l3ic5so             SOUTH AFRICA     25-44
## 1539 tour_idrbwbxla9 UNITED STATES OF AMERICA       65+
## 1540 tour_idnt9lp5dv           UNITED KINGDOM       <18
## 1541 tour_idfb7h73yx                   ZAMBIA     25-44
## 1542 tour_idmzo93bvk                    KENYA     45-64
## 1543 tour_idvgc5i6mw UNITED STATES OF AMERICA     45-64
## 1544 tour_idyxkclufg                    SPAIN     45-64
## 1545 tour_idsokr57fm                  GERMANY     45-64
## 1546 tour_idz12a1dwp                   ZAMBIA     25-44
## 1547 tour_idillht96h                   CANADA     45-64
## 1548 tour_idj5gxebqv              NEW ZEALAND     45-64
## 1549 tour_id3pe04lt0                AUSTRALIA     18-24
## 1550 tour_idct4x0wty                AUSTRALIA     45-64
## 1551 tour_idlskpzquc                    KENYA     25-44
## 1552 tour_idi4o7xaz7                   POLAND     25-44
## 1553 tour_idasd7l9h3                   FRANCE     45-64
## 1554 tour_idi91o81ws UNITED STATES OF AMERICA     45-64
## 1555 tour_idh4ufnoj7                   ZAMBIA     25-44
## 1556 tour_ido9hz78vp                    CHINA     25-44
## 1557 tour_idq9umpwvb                   ZAMBIA     25-44
## 1558 tour_id7q9jueq6                   FRANCE     25-44
## 1559 tour_id3vyiwj7y                   UGANDA     25-44
## 1560 tour_idig8gljlo UNITED STATES OF AMERICA     25-44
## 1561 tour_idhbk9pvef UNITED STATES OF AMERICA     45-64
## 1562 tour_idghj3jqll             SOUTH AFRICA       65+
## 1563 tour_id5mqawcxs                    ITALY     25-44
## 1564 tour_idypj3rghi                    INDIA     25-44
## 1565 tour_idmf26rizd               SWIZERLAND     18-24
## 1566 tour_ide27z5436 UNITED STATES OF AMERICA     25-44
## 1567 tour_idt7s14ope                  DENMARK     25-44
## 1568 tour_idkzkffoy1                  AUSTRIA     25-44
## 1569 tour_idd7o57c0r           UNITED KINGDOM     25-44
## 1570 tour_id4h41gb24                SWAZILAND     25-44
## 1571 tour_id636m8flb           UNITED KINGDOM     25-44
## 1572 tour_idkk9ylto8                    CHINA     25-44
## 1573 tour_id779vk5je             SOUTH AFRICA     25-44
## 1574 tour_idx6z9emgj           UNITED KINGDOM     45-64
## 1575 tour_idccb6k1fy           UNITED KINGDOM     25-44
## 1576 tour_idupbmf88l             SOUTH AFRICA     45-64
## 1578 tour_idreegohor                 ZIMBABWE     25-44
## 1579 tour_idd13lipi9 UNITED STATES OF AMERICA     45-64
## 1580 tour_idnwc8wpqe UNITED STATES OF AMERICA     25-44
## 1581 tour_idr5hw7qte                   SWEDEN     45-64
## 1582 tour_idoab5vxrf                    KENYA     25-44
## 1583 tour_idisu6y9n9                    ITALY     18-24
## 1585 tour_id16g29ypu                AUSTRALIA     25-44
## 1586 tour_idqry0u4xn UNITED STATES OF AMERICA     45-64
## 1587 tour_idsussxrsb                   FRANCE     45-64
## 1588 tour_idvcnt7poa UNITED STATES OF AMERICA     25-44
## 1589 tour_idejft9i6x                  GERMANY     25-44
## 1590 tour_idi3km7r8z                    ITALY     45-64
## 1591 tour_idb6xg76ra                    KENYA     45-64
## 1592 tour_idechcju7d                    INDIA     25-44
## 1593 tour_idqoo9ciby                   ZAMBIA     45-64
## 1594 tour_idt800gifw                   CANADA       65+
## 1595 tour_idikgwb6ta UNITED STATES OF AMERICA       65+
## 1596 tour_id8wtq9xh4                   NORWAY     18-24
## 1597 tour_idk51d6rri                   SWEDEN     25-44
## 1598 tour_idjikygbhl                   CANADA       65+
## 1599 tour_id7ita3vds           UNITED KINGDOM     45-64
## 1600 tour_id81i5klsz                   ZAMBIA     25-44
## 1601 tour_idl3mlvh89                 ZIMBABWE     18-24
## 1602 tour_idab8mkm02               PHILIPINES     25-44
## 1603 tour_iddendy83y                  BURUNDI     25-44
## 1605 tour_ideb2mew7z                   UGANDA       <18
## 1606 tour_idknqk47jk              SAUD ARABIA     18-24
## 1607 tour_idep3xrytr                 ZIMBABWE     25-44
## 1608 tour_id5b5wpkib                    ITALY     25-44
## 1609 tour_idf3k1t457               SWIZERLAND     25-44
## 1610 tour_idy3ohv2xs                    KENYA     25-44
## 1611 tour_idluiu8ba5                    SPAIN     25-44
## 1612 tour_ids2l8t2v7                    KOREA     25-44
## 1613 tour_idr3hsa2f4                   GREECE       65+
## 1614 tour_idkia25oim                    KENYA     25-44
## 1615 tour_idzt0gmuq7                   ZAMBIA     25-44
## 1616 tour_id2fwomi3c           UNITED KINGDOM     45-64
## 1617 tour_id04w5d79x UNITED STATES OF AMERICA     18-24
## 1618 tour_idpvg3vfjn                 MALAYSIA     25-44
## 1619 tour_idgtu9jbk9                    KENYA     45-64
## 1620 tour_idlli8dwik                  BELGIUM       65+
## 1621 tour_idmb7yccfh           UNITED KINGDOM     25-44
## 1622 tour_idsomcvo3t                   UGANDA     45-64
## 1623 tour_idqqaitsrd                   ISRAEL     18-24
## 1624 tour_idu3ax5tl9                    KOREA     25-44
## 1625 tour_idch121w4m                    KENYA     45-64
## 1626 tour_id1bqv438o                 TANZANIA     25-44
## 1627 tour_idgt6y6yaf UNITED STATES OF AMERICA       65+
## 1628 tour_idkq1wudzz                    SPAIN     45-64
## 1629 tour_idara9dpxx UNITED STATES OF AMERICA     25-44
## 1630 tour_idxly3n7zd UNITED STATES OF AMERICA     45-64
## 1631 tour_idymkkdie9           UNITED KINGDOM     18-24
## 1632 tour_idjb4dtbuk               SWIZERLAND     45-64
## 1633 tour_idqez8eqzu           UNITED KINGDOM     45-64
## 1634 tour_id1gmnzx5q                   ISRAEL     25-44
## 1635 tour_idfma2bkei               SWIZERLAND     45-64
## 1636 tour_idf2wwfhfj              NEW ZEALAND     45-64
## 1637 tour_idd4u4arxn                 ZIMBABWE     45-64
## 1638 tour_id5m187w12 UNITED STATES OF AMERICA     25-44
## 1639 tour_idxztev89l UNITED STATES OF AMERICA     25-44
## 1640 tour_idvaivzri2                   FRANCE       65+
## 1641 tour_idk80fsmo9                   ZAMBIA     25-44
## 1642 tour_idkszkanab UNITED STATES OF AMERICA     25-44
## 1643 tour_idwkj0ll9r                   FRANCE     25-44
## 1644 tour_ide8oxgfgq                   CANADA     45-64
## 1645 tour_idnut1ebfe                    ITALY     25-44
## 1646 tour_idscn75jzy                   ISRAEL       65+
## 1647 tour_id7yoob4n2               KAZAKHSTAN     25-44
## 1648 tour_idup7m7m1b UNITED STATES OF AMERICA       65+
## 1649 tour_idxkxfsurc                  GERMANY     45-64
## 1650 tour_id1z0sv6jn                   FRANCE     25-44
## 1651 tour_idi9uz8wrq             SOUTH AFRICA     25-44
## 1652 tour_idmluza4mc                     OMAN     18-24
## 1653 tour_idu9e2991q             SOUTH AFRICA     25-44
## 1655 tour_idz52r7k2j                   FRANCE     45-64
## 1656 tour_id1hwi1h4f                    ITALY     25-44
## 1657 tour_idt6t2t00t                    KENYA     25-44
## 1658 tour_idj0qc88z1                    ITALY     45-64
## 1659 tour_id576wxoph               SWIZERLAND     25-44
## 1660 tour_idpz6wbb35                   FRANCE     25-44
## 1661 tour_idz77wz3at           UNITED KINGDOM     18-24
## 1662 tour_id9md3kk0q                AUSTRALIA     45-64
## 1663 tour_id34fcs8gx                    ITALY     25-44
## 1664 tour_idvhu7pg0n                  GERMANY     25-44
## 1665 tour_id89f1ltnj                    ITALY     25-44
## 1666 tour_id3nysh97c                    ITALY     45-64
## 1669 tour_iduv8j4k73                    KOREA     45-64
## 1670 tour_id983k7d4d                 MALAYSIA     25-44
## 1671 tour_idytnzx013                 ETHIOPIA     45-64
## 1672 tour_idninpdwni                   CANADA     25-44
## 1673 tour_idp4ff76re                AUSTRALIA     45-64
## 1674 tour_idijj0pwyx                  GERMANY     45-64
## 1675 tour_idium4pvei UNITED STATES OF AMERICA       65+
## 1676 tour_idp9io8mjt                   ZAMBIA     25-44
## 1677 tour_idweswtgzd                    ITALY     45-64
## 1678 tour_idapijk284               MADAGASCAR     25-44
## 1679 tour_idt7tfzhcv                    ITALY     25-44
## 1680 tour_idvi4xvn89           UNITED KINGDOM     45-64
## 1682 tour_idkpd2p38j                   FRANCE     18-24
## 1683 tour_idax5atybo           UNITED KINGDOM     25-44
## 1684 tour_idrhgbi5ug                   ISRAEL     25-44
## 1685 tour_idswj6leox                  BELGIUM     45-64
## 1686 tour_id02v2m7rl               MADAGASCAR     45-64
## 1687 tour_idq958h9h1           UNITED KINGDOM     25-44
## 1688 tour_ido2jia1eb                  DENMARK     25-44
## 1689 tour_idn5u4cvar                    SPAIN     25-44
## 1690 tour_idycqzc6tb                    ITALY     25-44
## 1691 tour_idid82ff40                AUSTRALIA     45-64
## 1692 tour_idbpcog4wl              NETHERLANDS     45-64
## 1693 tour_idhapbm6fh                   CANADA     45-64
## 1694 tour_idoe41roz2                   MALAWI     25-44
## 1695 tour_idvpxesb1k              NETHERLANDS     45-64
## 1696 tour_idc5dofqn5           UNITED KINGDOM     18-24
## 1697 tour_idnpafeyvj               SWIZERLAND     45-64
## 1698 tour_idl24u1q8m                   BRAZIL     25-44
## 1700 tour_idhjn4alfu UNITED STATES OF AMERICA       65+
## 1701 tour_id9b06ezfr                  GERMANY     45-64
## 1702 tour_idejro656s                    ITALY     45-64
## 1703 tour_idhjnhi3ro                   RUSSIA     25-44
## 1704 tour_id1127b17b                    ITALY     45-64
## 1705 tour_idy3av69jf           UNITED KINGDOM     18-24
## 1706 tour_id27rr0w8c                  GERMANY     45-64
## 1707 tour_idxpwedwwv                   FRANCE     25-44
## 1708 tour_idasq2nvf2                AUSTRALIA     45-64
## 1709 tour_id34dijh3k                    INDIA     25-44
## 1710 tour_id47n3adhx                  GERMANY       65+
## 1711 tour_id8g2lmew0                    KENYA     25-44
## 1712 tour_idxo1psvbn                  BELGIUM     45-64
## 1713 tour_id3swtoc6v                 THAILAND     25-44
## 1714 tour_ide9cee06c                    ITALY     45-64
## 1715 tour_idffkslvjc           UNITED KINGDOM     25-44
## 1716 tour_idldvhmyos                   UGANDA     25-44
## 1717 tour_id3402rzsi               SWIZERLAND     25-44
## 1718 tour_id6a1z4nou UNITED STATES OF AMERICA       65+
## 1719 tour_idn3xnzkj5                   CANADA       65+
## 1721 tour_iduor4kxr7           UNITED KINGDOM     18-24
## 1722 tour_ids2xn2h5x UNITED STATES OF AMERICA     18-24
## 1724 tour_idhnf1cajv                  ESTONIA     25-44
## 1725 tour_idinhqasbm                    SPAIN     25-44
## 1726 tour_id7nrux8bu                  BELGIUM     45-64
## 1727 tour_id496vm7x9                 ZIMBABWE     25-44
## 1728 tour_idzuee7l00                   FRANCE     45-64
## 1729 tour_idbo99fkbg           UNITED KINGDOM     25-44
## 1730 tour_id6iwez9cs                 SCOTLAND     25-44
## 1731 tour_idwbwb5953              NETHERLANDS     25-44
## 1732 tour_idsluuqo4s           UNITED KINGDOM     25-44
## 1733 tour_id51iecuq1                    ITALY     25-44
## 1734 tour_id6vxrxl73 UNITED STATES OF AMERICA     25-44
## 1735 tour_idhr4gw0ev UNITED STATES OF AMERICA     25-44
## 1736 tour_idh418e3b8                SWAZILAND     25-44
## 1737 tour_id7534kvdx                  GERMANY     25-44
## 1738 tour_idqmvg1ope                 CAMBODIA     45-64
## 1739 tour_idxqc2yg2g                  GERMANY     25-44
## 1740 tour_idd873ssdz UNITED STATES OF AMERICA     25-44
## 1741 tour_idij0jwfbb                   UGANDA     25-44
## 1742 tour_id2prkgpu5                   ZAMBIA     25-44
## 1743 tour_idqyfvgahc                    BENIN     25-44
## 1744 tour_idry1uot6o                  AUSTRIA     18-24
## 1745 tour_idwdlworee                  GERMANY     25-44
## 1746 tour_idexi34czz           UNITED KINGDOM     18-24
## 1747 tour_idb6vnaaoh UNITED STATES OF AMERICA     18-24
## 1749 tour_idpr58884e UNITED STATES OF AMERICA     25-44
## 1750 tour_id8iwbq4wa           UNITED KINGDOM     25-44
## 1751 tour_idvwokxtv0                  GERMANY     45-64
## 1752 tour_idiw3w0kwl           UNITED KINGDOM     45-64
## 1753 tour_iddl4gqvis                    INDIA     25-44
## 1754 tour_idnzdxaz5y                   FRANCE     45-64
## 1755 tour_idnrzvk8aw                AUSTRALIA     18-24
## 1756 tour_idsqnqn2pc           UNITED KINGDOM     25-44
## 1757 tour_ide48dpwev           UNITED KINGDOM     25-44
## 1758 tour_iddd8dm3ix           UNITED KINGDOM     25-44
## 1759 tour_idv2qlebob                   POLAND     25-44
## 1761 tour_idsvm1f1b1                   CANADA     45-64
## 1762 tour_idmy90zz64                  GERMANY     25-44
## 1763 tour_idbdch8yg9                   RWANDA     25-44
## 1764 tour_idb5zmr71t                   FRANCE     25-44
## 1765 tour_idg0kkcte5           UNITED KINGDOM     25-44
## 1766 tour_id9im56wos             SOUTH AFRICA     45-64
## 1769 tour_idgf59uw0m                AUSTRALIA     45-64
## 1770 tour_idm24hr4xc                   FRANCE     25-44
## 1771 tour_idrmrojidf                   CANADA     45-64
## 1773 tour_idyaezh638                   CANADA     25-44
## 1774 tour_idk8hxxqpk                 ZIMBABWE     25-44
## 1775 tour_idg98uq0ag                    SPAIN       65+
## 1776 tour_idrzdpz5cx             SOUTH AFRICA     25-44
## 1778 tour_idy3b7gp8t               SWIZERLAND     25-44
## 1779 tour_id9ew43m4e UNITED STATES OF AMERICA       65+
## 1780 tour_idypppyetb           UNITED KINGDOM     18-24
## 1781 tour_idwytfi4qk                AUSTRALIA       65+
## 1782 tour_id0jmtjha7                  GERMANY     25-44
## 1783 tour_iddl29tziu UNITED STATES OF AMERICA     45-64
## 1784 tour_idpi5qvjp6                   ZAMBIA     25-44
## 1785 tour_idesp4iyqv                   FRANCE     45-64
## 1786 tour_idg9j83886                  DENMARK     18-24
## 1787 tour_idl050ee85                   FRANCE     25-44
## 1788 tour_idohwqk1l7                    ITALY       65+
## 1789 tour_id0vd35c76 UNITED STATES OF AMERICA     45-64
## 1790 tour_id5hhr2gy4              NETHERLANDS     25-44
## 1791 tour_id46lbmvks                 ZIMBABWE     25-44
## 1792 tour_idar3w8602                 ZIMBABWE     25-44
## 1793 tour_idl7hbx9mn                    ITALY     25-44
## 1794 tour_id2n89sclq                  AUSTRIA     25-44
## 1795 tour_idvyzi4oxv           UNITED KINGDOM     45-64
## 1796 tour_idjfy4ctdx           UNITED KINGDOM     18-24
## 1797 tour_id144fpcpy UNITED STATES OF AMERICA     18-24
## 1798 tour_idx57e4e9l                   FRANCE     45-64
## 1799 tour_iddb6da80y           UNITED KINGDOM     45-64
## 1800 tour_idfn45wbk0                   UGANDA     25-44
## 1801 tour_idybma0dgq                    ITALY     25-44
## 1802 tour_idozp13605                   RWANDA     25-44
## 1803 tour_id1m4oj9sy                ARGENTINA     25-44
## 1804 tour_idvo3y0vkl                   CANADA       65+
## 1805 tour_idpreu124z                    KENYA     25-44
## 1806 tour_idq53hxi87                  BURUNDI     18-24
## 1807 tour_id7pfpsi24                  FINLAND     25-44
## 1808 tour_id33qkh60w                AUSTRALIA     45-64
## 1809 tour_id2y2z8jrh                    KENYA     45-64
## 1810 tour_idiebqhg43                    ITALY     45-64
## 1811 tour_idfhbkc1y3                    ITALY     45-64
## 1812 tour_id8pnhxwhs               SWIZERLAND     45-64
## 1813 tour_id2ufs2col                    ITALY     25-44
## 1814 tour_id8pjpqrur             SOUTH AFRICA     25-44
## 1815 tour_id9m8iyic9                    INDIA     25-44
## 1816 tour_idzm9sl58x                    INDIA     25-44
## 1817 tour_idkwo6zqi8                 ZIMBABWE     25-44
## 1818 tour_idna4ogxge                 ZIMBABWE     25-44
## 1819 tour_idu4oa4tj1                   NORWAY     25-44
## 1820 tour_idgpsua2ic                    ITALY     45-64
## 1821 tour_id9x7epj7n                AUSTRALIA     45-64
## 1822 tour_idz3l0noch                   CANADA       65+
## 1823 tour_idp2ooni4v UNITED STATES OF AMERICA       65+
## 1824 tour_idkp4xs8sv                    KENYA     25-44
## 1825 tour_id1bhs5db7                  BURUNDI     25-44
## 1826 tour_id88j3212t                  VIETNAM     45-64
## 1827 tour_idw1nboo5y                  DENMARK     18-24
## 1828 tour_idxesnecu3                   SWEDEN     18-24
## 1829 tour_id1xsr9hfb                    CHINA       <18
## 1830 tour_id2lbg87f6           CZECH REPUBLIC     25-44
## 1831 tour_idaxconuz2                  GERMANY     45-64
## 1832 tour_idmpvdjom0                    SPAIN     25-44
## 1833 tour_id20sasobc           UNITED KINGDOM     25-44
## 1834 tour_idqn71gf49                     PERU     45-64
## 1835 tour_idlaal7m0s UNITED STATES OF AMERICA     25-44
## 1836 tour_idx78t832e                 MALAYSIA     25-44
## 1837 tour_idzx9a63rn                   CANADA     25-44
## 1838 tour_idn9s6uuod                      DRC     25-44
## 1839 tour_ido34hsprh           UNITED KINGDOM     25-44
## 1840 tour_id9l29uo8t UNITED STATES OF AMERICA       65+
## 1841 tour_idpqb9n9cl           UNITED KINGDOM     25-44
## 1842 tour_idz6e2biex           UNITED KINGDOM     18-24
## 1843 tour_id9y0idtnc           UNITED KINGDOM     25-44
## 1844 tour_idjpubddxt              NETHERLANDS     45-64
## 1845 tour_idhrhejxzu                   ZAMBIA     25-44
## 1846 tour_idzdkw4i7k                    INDIA     45-64
## 1847 tour_idaip1dce3              NETHERLANDS     45-64
## 1848 tour_id8vwttnoa                   SWEDEN     18-24
## 1849 tour_id6npi4173                  BURUNDI     25-44
## 1850 tour_id8og5i86z                    ITALY     25-44
## 1851 tour_id4fumvxge             SOUTH AFRICA     45-64
## 1852 tour_id140nt5kn              NETHERLANDS     18-24
## 1853 tour_idrtfr3gcx UNITED STATES OF AMERICA     45-64
## 1854 tour_idqyx5b6ic                  GERMANY     25-44
## 1855 tour_idkkbafx7x                COSTARICA     25-44
## 1856 tour_idix9p0yrp                    KENYA     45-64
## 1857 tour_idpcwu9dep               SWIZERLAND     45-64
## 1858 tour_idwpf0s1u4                    ITALY     25-44
## 1859 tour_idw0hr8dqn                    KOREA     18-24
## 1860 tour_idn16pl4fh                  GERMANY     45-64
## 1861 tour_id1s2k53xj                AUSTRALIA     25-44
## 1862 tour_idz1tlrbsj                   CANADA     25-44
## 1863 tour_id33vb85oi                    SPAIN     25-44
## 1864 tour_idjlexri3m UNITED STATES OF AMERICA     45-64
## 1865 tour_idddxjoj78                    JAPAN     25-44
## 1866 tour_idfc2056tl                    CHINA     25-44
## 1868 tour_idwm6egx08                    ITALY     25-44
## 1869 tour_id9chi1k0j                  GERMANY     25-44
## 1870 tour_idvj1300wr             SOUTH AFRICA     45-64
## 1871 tour_id8vfnkelq                AUSTRALIA     45-64
## 1872 tour_idgd4ubuot                   FRANCE     45-64
## 1873 tour_idc32yv333 UNITED STATES OF AMERICA       65+
## 1874 tour_id9skx9ifw                  GERMANY     25-44
## 1875 tour_id8wsf9jr7                AUSTRALIA     45-64
## 1876 tour_idjfeihzpk                  BELGIUM     45-64
## 1877 tour_idexgz1nyk           UNITED KINGDOM     45-64
## 1878 tour_idgv7sccf5 UNITED STATES OF AMERICA     45-64
## 1879 tour_idjrantcgg           UNITED KINGDOM     25-44
## 1880 tour_idvnqmdd2c UNITED STATES OF AMERICA     25-44
## 1881 tour_iduh9s53zz                    CHINA     25-44
## 1882 tour_idskt3v2wk                 ZIMBABWE     25-44
## 1883 tour_idrqten25f                  GERMANY     18-24
## 1884 tour_idbkj2vxfu                  GERMANY     45-64
## 1885 tour_idalrtvl7v                  ROMANIA     25-44
## 1886 tour_id22wpz4fq                    CONGO     25-44
## 1887 tour_idu5vj1jxb                    CONGO     25-44
## 1888 tour_idkbolmg5c UNITED STATES OF AMERICA     25-44
## 1889 tour_idrtpj2s58                  IRELAND     45-64
## 1890 tour_id0j7ia4ar                   ZAMBIA     45-64
## 1891 tour_idoe5th3fa                  MORROCO     45-64
## 1892 tour_idn1oxec2g                  BELGIUM     45-64
## 1893 tour_id9ee78hno           UNITED KINGDOM       65+
## 1894 tour_idmqrqpa14           UNITED KINGDOM     25-44
## 1895 tour_idby2tdnv2                   RWANDA     25-44
## 1896 tour_idl1yosz0r                   UGANDA     25-44
## 1897 tour_id6qwby4li                    ITALY     25-44
## 1898 tour_id5eh072t7                     OMAN     25-44
## 1899 tour_id9r5n2z84                    INDIA     25-44
## 1900 tour_idcxfrp4f9                    ITALY     18-24
## 1901 tour_idyh9tjehq              NETHERLANDS     25-44
## 1902 tour_idzat8jz3k                  URUGUAY     25-44
## 1903 tour_idcw51nupp                  GERMANY     18-24
## 1904 tour_idx3kat9ko           UNITED KINGDOM     25-44
## 1906 tour_idz19apnoq           UNITED KINGDOM     25-44
## 1907 tour_idlgx9q37e             SOUTH AFRICA     45-64
## 1908 tour_idglxr88am                    KENYA     25-44
## 1909 tour_idmm7wekuh           UNITED KINGDOM     25-44
## 1910 tour_idrzhvug2v                    ITALY     25-44
## 1911 tour_idedggf5nk                   FRANCE     25-44
## 1912 tour_id40zifpw3           UNITED KINGDOM     45-64
## 1913 tour_idor1j6w03                 ETHIOPIA     25-44
## 1914 tour_idckgcs04c                    CHINA     45-64
## 1915 tour_iddgpu8434           UNITED KINGDOM     18-24
## 1916 tour_idfkbiqf8a                   FRANCE     25-44
## 1917 tour_idc76b373r UNITED STATES OF AMERICA     45-64
## 1918 tour_idxz5zn0se                 ZIMBABWE     45-64
## 1919 tour_idsmhiqcxe                   NORWAY     18-24
## 1920 tour_idyokdxvux                   UGANDA     25-44
## 1921 tour_idg9de8mu3              SAUD ARABIA     45-64
## 1922 tour_idjk6vwsaw                    QATAR     45-64
## 1923 tour_idewc1ehfs                   MEXICO     25-44
## 1924 tour_idwpu8ch8p                   ZAMBIA     45-64
## 1926 tour_idnup62oa8                  GERMANY     45-64
## 1927 tour_idx8obr989 UNITED STATES OF AMERICA     25-44
## 1928 tour_id4k9yzgz0                    KENYA     45-64
## 1929 tour_idypj7512g                   BRAZIL     18-24
## 1930 tour_idiaktyvik                  GERMANY     25-44
## 1931 tour_idkj0eq3ou             SOUTH AFRICA     25-44
## 1932 tour_idwzh0n24x                 ZIMBABWE     25-44
## 1933 tour_idgflgl0rf                  GERMANY     25-44
## 1934 tour_idc97ebz0b                  GERMANY     45-64
## 1935 tour_idniqta34u UNITED STATES OF AMERICA     45-64
## 1936 tour_id1bgxd6qb UNITED STATES OF AMERICA     18-24
## 1937 tour_idusc1v8uv                    SPAIN     45-64
## 1938 tour_idsy5errsb                   CANADA     45-64
## 1939 tour_idg67ybkgp                   ZAMBIA     45-64
## 1941 tour_idij10syxv                    ITALY     25-44
## 1943 tour_id5g2cvhmz UNITED STATES OF AMERICA       65+
## 1944 tour_idyhdu6669               SWIZERLAND       65+
## 1945 tour_idbzk1rll1                    ITALY     25-44
## 1946 tour_id9nx3d3ni             SOUTH AFRICA     45-64
## 1947 tour_id5lk0avel           UNITED KINGDOM     45-64
## 1948 tour_id58tmeo0c                   SWEDEN     45-64
## 1949 tour_idu08q5uu0                    KOREA     25-44
## 1950 tour_idl6rmac0l                   FRANCE     25-44
## 1951 tour_idu0hiygey                    KENYA     25-44
## 1952 tour_ida77o7dh1               SWIZERLAND     45-64
## 1953 tour_idvwwx0qgb                    SPAIN     25-44
## 1954 tour_idxnz8w463                   CANADA     25-44
## 1955 tour_idu3qwl4ju           UNITED KINGDOM     18-24
## 1956 tour_idlc90cqg9                   POLAND     25-44
## 1957 tour_idb8ym46et                  URUGUAY     25-44
## 1958 tour_id1rptqao4           UNITED KINGDOM     18-24
## 1959 tour_id1ywpzn1m                  GERMANY     45-64
## 1960 tour_idy2kks27y                    INDIA     45-64
## 1961 tour_idrugptrhc                     OMAN     25-44
## 1962 tour_id6ll5g93d                      DRC     25-44
## 1963 tour_idj7wg2odh                    KENYA     25-44
## 1964 tour_idbfqkuy41              NETHERLANDS     25-44
## 1965 tour_idj7hdwdvv             SOUTH AFRICA     25-44
## 1966 tour_idj3bprcuk                  GERMANY     18-24
## 1967 tour_id0lyd2z8k                    ITALY     25-44
## 1968 tour_idoksvs5t8                    KENYA     25-44
## 1969 tour_idqhho071f                    ITALY     45-64
## 1970 tour_id3zxis4hq UNITED STATES OF AMERICA     25-44
## 1971 tour_id02acj3lx                AUSTRALIA     25-44
## 1972 tour_id1tofeexa UNITED STATES OF AMERICA       65+
## 1973 tour_idbuqu110l                    KENYA     25-44
## 1974 tour_id2u14mx99                      DRC     25-44
## 1975 tour_idi80cd0rt              NETHERLANDS     18-24
## 1977 tour_idktfsi0w0                 ZIMBABWE     25-44
## 1979 tour_idjfirlmk5                  GERMANY     25-44
## 1980 tour_idnsq70ojb                    KENYA     25-44
## 1981 tour_idqhwnbs45                    JAPAN     45-64
## 1982 tour_idfqmkigrr                    KENYA     45-64
## 1983 tour_idc94jayav                    KENYA     25-44
## 1984 tour_ideu5si1hl           UNITED KINGDOM     18-24
## 1985 tour_id1xt3f2bw                   RWANDA     25-44
## 1986 tour_idffbkcgut UNITED STATES OF AMERICA     25-44
## 1987 tour_idq1jn3gil                    ITALY     25-44
## 1988 tour_idc1n3emoe                   ZAMBIA     25-44
## 1989 tour_iduo3c3sx7                AUSTRALIA       65+
## 1990 tour_idsz567bjh UNITED STATES OF AMERICA       65+
## 1991 tour_idq630wh3f UNITED STATES OF AMERICA       65+
## 1992 tour_idpo2wsomu                AUSTRALIA       65+
## 1993 tour_id1aefyp1p                   UGANDA     25-44
## 1994 tour_idsqpz9q16                 DOMINICA     25-44
## 1995 tour_idtcta9dyh                  GERMANY     45-64
## 1996 tour_idcw8kt2wt           UNITED KINGDOM     18-24
## 1997 tour_ide6vrq5u3                      UAE     25-44
## 1998 tour_idjtx7m7do UNITED STATES OF AMERICA     18-24
## 1999 tour_idi3zijws3                    ITALY     25-44
## 2000 tour_idzhcgj0ek                   CANADA     25-44
## 2001 tour_idvdtqi1td                AUSTRALIA     25-44
## 2002 tour_id8jqhme03           UNITED KINGDOM       65+
## 2003 tour_idfr66ckot                    CHINA     25-44
## 2004 tour_id9v2cjbf9                 ETHIOPIA     25-44
## 2005 tour_idwi27tfws                    SPAIN     18-24
## 2006 tour_id8nc7yxeu                 ZIMBABWE     18-24
## 2007 tour_idh2sihl8e                 MALAYSIA     45-64
## 2008 tour_id9wgjxqna                  BURUNDI       65+
## 2009 tour_idz0pev36e           UNITED KINGDOM     18-24
## 2010 tour_ids2qccure             SOUTH AFRICA     25-44
## 2011 tour_id96id5plg                AUSTRALIA     25-44
## 2013 tour_id87ydj0wo                  DENMARK       65+
## 2015 tour_id33eeoqbr                  IRELAND     18-24
## 2016 tour_id378a1g18                    ITALY     25-44
## 2017 tour_id8zrozdwv                   RWANDA     18-24
## 2018 tour_id7iyqiwlt                  DENMARK     45-64
## 2019 tour_idlf4ruine UNITED STATES OF AMERICA       65+
## 2020 tour_idgvm6x426                  DENMARK     18-24
## 2021 tour_idzg6qs2ul                   FRANCE     18-24
## 2022 tour_idwwfk590s                    ITALY     18-24
## 2023 tour_idcyj3juzm               PHILIPINES     25-44
## 2024 tour_idw0tiutue                    GHANA     25-44
## 2025 tour_idylex5qqk                  BELGIUM     25-44
## 2026 tour_idaz7xyh7k UNITED STATES OF AMERICA     45-64
## 2027 tour_iddxbax814 UNITED STATES OF AMERICA     45-64
## 2028 tour_id9eam1ydi                  GERMANY     25-44
## 2029 tour_idzyxafh23                    KENYA     25-44
## 2030 tour_idas6vabrb                   ZAMBIA     25-44
## 2031 tour_idvh31fiy3             SOUTH AFRICA     25-44
## 2032 tour_idju2g6cjz                      DRC     25-44
## 2033 tour_ide2fknvtz           UNITED KINGDOM     45-64
## 2034 tour_idqr4m0ztf UNITED STATES OF AMERICA       65+
## 2035 tour_idy2jasthp                  GERMANY     18-24
## 2036 tour_idvk3bxczj                    ITALY     25-44
## 2038 tour_idpzo43kbb                  DENMARK     25-44
## 2039 tour_id7w2snf7n                   FRANCE     18-24
## 2040 tour_iddisyo2w1                   CANADA     45-64
## 2041 tour_idx8hypzur                    JAPAN     25-44
## 2042 tour_idi022tv5w                AUSTRALIA     45-64
## 2043 tour_id4izwnd2q                   ZAMBIA     25-44
## 2044 tour_idhxgycdht UNITED STATES OF AMERICA       65+
## 2045 tour_idr9c5p6di                   CANADA     45-64
## 2046 tour_idqolpari8                  AUSTRIA     18-24
## 2047 tour_idv3req73a                  AUSTRIA     25-44
## 2048 tour_idmd1uny8k UNITED STATES OF AMERICA       65+
## 2049 tour_id0zlftvgv                    ITALY     25-44
## 2050 tour_id1qasfm60                  BURUNDI     18-24
## 2052 tour_idd277qz6z                SINGAPORE     25-44
## 2053 tour_idrc13y6cv                 PORTUGAL     18-24
## 2055 tour_id6ifmwmz2                   FRANCE       65+
## 2056 tour_idk5qnrmc0             SOUTH AFRICA     45-64
## 2057 tour_idui6so3nk                    ITALY     25-44
## 2058 tour_idolz2336l              NETHERLANDS     25-44
## 2059 tour_idv7vg6y6l           UNITED KINGDOM     45-64
## 2061 tour_idexsuk9ei                   ZAMBIA     25-44
## 2062 tour_idbnxxl6ic UNITED STATES OF AMERICA     45-64
## 2063 tour_iddh7fm1pb                    ITALY       65+
## 2064 tour_id16fkagk2                  BURUNDI     18-24
## 2065 tour_idhfbpf5nu                   ZAMBIA     25-44
## 2067 tour_idbtjxanec                      UAE     45-64
## 2068 tour_id0ka5jn3a                 PAKISTAN     45-64
## 2069 tour_idmjqt3aqd                    SPAIN     25-44
## 2071 tour_idwanka0mr                   MALAWI     25-44
## 2072 tour_idnracntw3                   FRANCE     45-64
## 2073 tour_id3ruzzbqy UNITED STATES OF AMERICA     25-44
## 2074 tour_idqkrtl7gt                   ZAMBIA     25-44
## 2075 tour_idqnjb9uw6               SWIZERLAND     25-44
## 2076 tour_id5x6f48c1                    ITALY     25-44
## 2077 tour_id5bfrpgws                   FRANCE     45-64
## 2078 tour_idjqt9qjcu                    ITALY     25-44
## 2079 tour_idifor4sdv                    ITALY     25-44
## 2080 tour_idf86t6inw                   CANADA     25-44
## 2081 tour_idz48o5qdy             SOUTH AFRICA     25-44
## 2082 tour_idniqi7bij           UNITED KINGDOM     25-44
## 2083 tour_ids12fkpe3                   FRANCE     45-64
## 2084 tour_idhelxkl9z                AUSTRALIA     25-44
## 2085 tour_iduvtdfwxy                    ITALY     45-64
## 2086 tour_id6icws9es                   SWEDEN     45-64
## 2087 tour_idbxv9o4xy                   ZAMBIA     25-44
## 2088 tour_idhgy02rvj                    KENYA     25-44
## 2089 tour_idj3pp3zla UNITED STATES OF AMERICA     45-64
## 2090 tour_id5cewgcpm           UNITED KINGDOM     25-44
## 2092 tour_idv7fktr2e                   ZAMBIA     25-44
## 2094 tour_idoi330tfz                 ZIMBABWE     25-44
## 2095 tour_idme6d3pfi                   ZAMBIA     25-44
## 2096 tour_id0d98iyba UNITED STATES OF AMERICA     18-24
## 2098 tour_idvky1b709                 PORTUGAL     45-64
## 2099 tour_idnurhm1yz                   FRANCE     45-64
## 2100 tour_idf575u37p                SINGAPORE     45-64
## 2101 tour_id35n4avpl                      DRC     18-24
## 2102 tour_idm1bkowic                   SWEDEN     45-64
## 2103 tour_idz2fma8ph                    INDIA     45-64
## 2104 tour_idekd8cbg9           UNITED KINGDOM     18-24
## 2105 tour_idq3fgv24j                 PORTUGAL     25-44
## 2106 tour_id7a284txy                   ZAMBIA     25-44
## 2107 tour_idnlw7voab                    INDIA     25-44
## 2108 tour_idn04sbng4 UNITED STATES OF AMERICA     25-44
## 2109 tour_id6drzl26y                  GERMANY     45-64
## 2110 tour_id36k9xc4o                  GERMANY     45-64
## 2111 tour_idoqtva11b UNITED STATES OF AMERICA     25-44
## 2112 tour_id6pdah6u2                   ZAMBIA     25-44
## 2113 tour_idr8bpfb9m UNITED STATES OF AMERICA     45-64
## 2114 tour_idvhyxxe5q                    KENYA     25-44
## 2115 tour_idwtzl0mt2                  BURUNDI     45-64
## 2116 tour_idyjsrkssp UNITED STATES OF AMERICA     45-64
## 2117 tour_id43znn5ek UNITED STATES OF AMERICA       65+
## 2119 tour_idsncdmkl3                    ITALY     25-44
## 2120 tour_id47dbp2us           UNITED KINGDOM       65+
## 2121 tour_idt9gs2p1p                   UGANDA     25-44
## 2122 tour_idyl9epcry                    ITALY     25-44
## 2123 tour_ide1zen9vk                    ITALY     25-44
## 2126 tour_idbw73ebnl                    ITALY     25-44
## 2127 tour_idqfjuxefs                  GERMANY       65+
## 2128 tour_idsw8636ik                AUSTRALIA     45-64
## 2129 tour_id0mvw17jo                   SWEDEN     18-24
## 2130 tour_idsy2gyhrt                    INDIA     18-24
## 2131 tour_idgq619o62 UNITED STATES OF AMERICA     25-44
## 2132 tour_id7jk1qh4o                   UGANDA     45-64
## 2133 tour_idppbvz9eu                    SPAIN     25-44
## 2134 tour_idizpn4ze1                   CANADA     45-64
## 2135 tour_idl8ujgxvp                 ZIMBABWE     25-44
## 2136 tour_id49m4fpdc                   FRANCE     25-44
## 2137 tour_idvjpphbyg                    SPAIN     25-44
## 2138 tour_ideqss74qi                   UGANDA     45-64
## 2140 tour_idg8gglf9p           UNITED KINGDOM     25-44
## 2141 tour_idq9yb15kd                    ITALY     25-44
## 2142 tour_ido5q82fkr                    CHINA     25-44
## 2143 tour_idlvw1zhq9                      UAE     25-44
## 2144 tour_iddqs0mw18                   CANADA     45-64
## 2145 tour_idewwckqpu                  GERMANY     25-44
## 2146 tour_id8yqp8mrn                  GERMANY     25-44
## 2147 tour_idh76lyco3                   ISRAEL     45-64
## 2148 tour_idxiv54el7                    ITALY     25-44
## 2149 tour_ideiaoolj9           UNITED KINGDOM     25-44
## 2150 tour_idiaslh70x                   CANADA       65+
## 2151 tour_idqrayywy2                    ITALY     25-44
## 2152 tour_idsxspuuku UNITED STATES OF AMERICA       65+
## 2154 tour_id08ke31sq             SOUTH AFRICA     25-44
## 2155 tour_idauet80cq                AUSTRALIA     45-64
## 2157 tour_idr4x41suk UNITED STATES OF AMERICA       65+
## 2158 tour_idplw2lh3d                    CHINA     18-24
## 2160 tour_id2xdqo5el UNITED STATES OF AMERICA     45-64
## 2161 tour_idb98jz7po           UNITED KINGDOM     25-44
## 2163 tour_idbo0u2y7g                AUSTRALIA     18-24
## 2164 tour_id4zgjvw9z               SWIZERLAND     25-44
## 2165 tour_idodlze9ng                    INDIA     25-44
## 2166 tour_id2xtgx70f                    INDIA     45-64
## 2167 tour_id00er55cs                   BOSNIA     25-44
## 2169 tour_id4vlr2vpo                   FRANCE     18-24
## 2170 tour_idrqk66jzc UNITED STATES OF AMERICA     45-64
## 2171 tour_idf1fefg9c                   SWEDEN     45-64
## 2172 tour_id14ft9blk                   NORWAY     18-24
## 2174 tour_idcrl3ndgs UNITED STATES OF AMERICA       65+
## 2175 tour_idvqnfmtyi UNITED STATES OF AMERICA     45-64
## 2176 tour_idgwc4rb7v                AUSTRALIA     25-44
## 2177 tour_idxxdys8ml                   ISRAEL     25-44
## 2178 tour_idondvxygf           UNITED KINGDOM     25-44
## 2179 tour_idh826o771 UNITED STATES OF AMERICA     45-64
## 2180 tour_id2ing7c9h UNITED STATES OF AMERICA       65+
## 2181 tour_ids5of2zdg                      DRC     18-24
## 2182 tour_idkc0szu50           UNITED KINGDOM     25-44
## 2183 tour_idyi0qas43                  BELGIUM     18-24
## 2184 tour_idwvzqxg8w UNITED STATES OF AMERICA       65+
## 2185 tour_idd9gungn3                    KENYA     25-44
## 2186 tour_id8ez4yzcj                 ZIMBABWE     45-64
## 2187 tour_idkbkccm99                  GERMANY     45-64
## 2188 tour_idww45zcnn                AUSTRALIA       65+
## 2189 tour_idpvlxc3uo                   CANADA     45-64
## 2190 tour_idehchiev3                  BELGIUM     45-64
## 2192 tour_idki44h1mt UNITED STATES OF AMERICA     25-44
## 2193 tour_id5ivlv0ss           UNITED KINGDOM     18-24
## 2194 tour_idlrmzybgc           UNITED KINGDOM     25-44
## 2195 tour_id60e44saa                   NORWAY     45-64
## 2196 tour_ida6j2ty1u                   RUSSIA     25-44
## 2197 tour_idvk94bynt                    KENYA     25-44
## 2198 tour_idqk15ntsf                    ITALY     18-24
## 2199 tour_idb8a5pff4                   ANGOLA     18-24
## 2200 tour_id6cd37ksk                    KENYA     45-64
## 2201 tour_idqs0c1zf7           UNITED KINGDOM     45-64
## 2202 tour_idu7k993kh UNITED STATES OF AMERICA     18-24
## 2203 tour_idhxbpajt2                    SPAIN     25-44
## 2204 tour_idvlqav9rv                   ZAMBIA     45-64
## 2205 tour_idwgj44yrr                 ZIMBABWE     25-44
## 2206 tour_idvypxyg9s                    INDIA     45-64
## 2207 tour_id6cqgectu                   SWEDEN     45-64
## 2208 tour_idh4dwr0f9                AUSTRALIA     18-24
## 2209 tour_idx9ftlb1p                    ITALY     25-44
## 2210 tour_idgdxc9fe0           UNITED KINGDOM     45-64
## 2211 tour_idso0mgdrc                    KENYA     25-44
## 2212 tour_idapca24jt                   SWEDEN     25-44
## 2213 tour_ida3iibl8f                   CANADA     45-64
## 2214 tour_id859tvzmo                    ITALY     45-64
## 2215 tour_iddn5qzvin                  GERMANY     25-44
## 2216 tour_idceg6gyo1                      UAE     25-44
## 2217 tour_ido4s84tjt                   ECUADO     45-64
## 2218 tour_id81miu01b                    CONGO     25-44
## 2219 tour_idnh2yvbkq              NETHERLANDS     25-44
## 2220 tour_id28yqizu9           UNITED KINGDOM     25-44
## 2221 tour_id3v4xcp9b                    SPAIN     25-44
## 2222 tour_idz3umfsql UNITED STATES OF AMERICA     45-64
## 2223 tour_id5skdk1m4                   FRANCE     25-44
## 2224 tour_idj1z7tsrk                SRI LANKA     45-64
## 2225 tour_ide48604rj                   FRANCE     25-44
## 2226 tour_iddv1k69o5                    ITALY     25-44
## 2227 tour_idlnc1nm36              NETHERLANDS     25-44
## 2228 tour_idcb4amo0z                AUSTRALIA     45-64
## 2229 tour_idn8ikeh5w                   FRANCE     45-64
## 2230 tour_id029ox67a               SWIZERLAND     25-44
## 2232 tour_id1kxfwj1n                    ITALY     45-64
## 2233 tour_iddvcr9j1o                  BELGIUM     25-44
## 2234 tour_idho8xjpr9 UNITED STATES OF AMERICA     25-44
## 2235 tour_idf18ugm78                 ZIMBABWE     25-44
## 2236 tour_idw3907j66                    KOREA     45-64
## 2237 tour_id0kyqrjyr                 ZIMBABWE     25-44
## 2239 tour_id0qtf63wm           UNITED KINGDOM     18-24
## 2240 tour_idp69f2yfi           UNITED KINGDOM     25-44
## 2241 tour_idhdy0kdh3                   FRANCE     25-44
## 2242 tour_id4vpv095b UNITED STATES OF AMERICA     25-44
## 2243 tour_id2l5dsaxw                  BURUNDI     18-24
## 2244 tour_idckqa6owj              NETHERLANDS     25-44
## 2245 tour_ida8e3iqxl                 ZIMBABWE     25-44
## 2246 tour_idbvjlpus0              NETHERLANDS     45-64
## 2247 tour_idzpbsh9gi                  BURUNDI     25-44
## 2248 tour_idacibx26a                  BERMUDA       65+
## 2249 tour_idmyeuaqov               SWIZERLAND     25-44
## 2250 tour_idk6iqp9gr                  GERMANY     45-64
## 2252 tour_idyx1y6n5b UNITED STATES OF AMERICA     18-24
## 2253 tour_idifywtuqe                 TANZANIA     25-44
## 2254 tour_idpyktc1gq                  NAMIBIA     18-24
## 2255 tour_id8dfnfqs8                    KENYA     25-44
## 2256 tour_idc8dmmqpr             SOUTH AFRICA     45-64
## 2257 tour_idx5rv2942                 ZIMBABWE     25-44
## 2258 tour_idn1eo3e44                    ITALY     25-44
## 2260 tour_idjurc5mn8           UNITED KINGDOM       65+
## 2261 tour_id6cf9mlh1                 PAKISTAN     18-24
## 2262 tour_idlrwfde3r             SOUTH AFRICA     25-44
## 2263 tour_id08irpm3r UNITED STATES OF AMERICA     45-64
## 2264 tour_iddug5t4mx                  BURUNDI     45-64
## 2265 tour_ido8pm0aci                 ZIMBABWE     25-44
## 2266 tour_idpnxr9a25 UNITED STATES OF AMERICA       65+
## 2267 tour_id1ick021u                  BELGIUM       65+
## 2268 tour_id3qf75tzr UNITED STATES OF AMERICA       65+
## 2269 tour_id403xvxdm UNITED STATES OF AMERICA       65+
## 2270 tour_id6oot7svu UNITED STATES OF AMERICA       65+
## 2271 tour_idxrsnhcep                    ITALY     25-44
## 2272 tour_idzi24ityt                   POLAND     25-44
## 2273 tour_idzzj7l160                  GERMANY     45-64
## 2274 tour_idykg9ndjh                  AUSTRIA     25-44
## 2275 tour_idvpqdkc0v                 SLOVAKIA     25-44
## 2276 tour_id2znopu6b             SOUTH AFRICA     25-44
## 2277 tour_idku40jsgg                      UAE     25-44
## 2278 tour_idy9eijkak           UNITED KINGDOM     25-44
## 2279 tour_idusbz2gpn                   ZAMBIA     25-44
## 2280 tour_id7tufkqf0                  GERMANY     45-64
## 2281 tour_idh4t4v6fe UNITED STATES OF AMERICA       65+
## 2282 tour_idzf41yy0f UNITED STATES OF AMERICA     25-44
## 2283 tour_idx49ow5j0                AUSTRALIA     45-64
## 2284 tour_id9srwn6ta                  GERMANY     45-64
## 2285 tour_id1f38inwe                   SWEDEN     45-64
## 2286 tour_id0iiwbiw4                   FRANCE     45-64
## 2287 tour_id064dlg8a UNITED STATES OF AMERICA     18-24
## 2288 tour_idp4daf2pv                  GERMANY     25-44
## 2289 tour_iddxy1zoly                  BURUNDI     25-44
## 2290 tour_idcfpt0u4j                    ITALY     25-44
## 2291 tour_idofeenqsf                   ZAMBIA     25-44
## 2292 tour_id8gcd3yoj UNITED STATES OF AMERICA       65+
## 2293 tour_idm17278ba                    ITALY     25-44
## 2294 tour_idnlurvpg0           UNITED KINGDOM     45-64
## 2295 tour_id29mxwwj7                 ETHIOPIA     25-44
## 2297 tour_idszdrszwf                   FRANCE     45-64
## 2298 tour_idrp39wy9y                AUSTRALIA     25-44
## 2299 tour_idnznhtv2x                 ZIMBABWE     25-44
## 2300 tour_id3agvezhg UNITED STATES OF AMERICA       65+
## 2301 tour_idckush2sn                    ITALY       65+
## 2302 tour_id8icocsco UNITED STATES OF AMERICA       65+
## 2303 tour_idnqw0w568 UNITED STATES OF AMERICA     45-64
## 2304 tour_id8bel1v5x UNITED STATES OF AMERICA     45-64
## 2305 tour_idn5hvrikp                   FRANCE     45-64
## 2306 tour_idxxc1g7bc                    ITALY     45-64
## 2307 tour_id7pz69cqz                   BRAZIL     45-64
## 2308 tour_id4hahnlez           UNITED KINGDOM     45-64
## 2309 tour_idzbxz5rdd              NEW ZEALAND     25-44
## 2310 tour_idih9pgtvt             SOUTH AFRICA     45-64
## 2311 tour_idlovwejqm                  GERMANY     25-44
## 2312 tour_idkqc12yz5           UNITED KINGDOM     25-44
## 2313 tour_id79zs25qv                  GERMANY     18-24
## 2314 tour_ids5qddrb9               SWIZERLAND       65+
## 2315 tour_idxcvcuef6                      UAE     45-64
## 2316 tour_idzsvgl3ub UNITED STATES OF AMERICA     45-64
## 2317 tour_idcqqpkami                AUSTRALIA     18-24
## 2318 tour_id5t9kzui5 UNITED STATES OF AMERICA     25-44
## 2319 tour_ida5k9fg5v                    ITALY     25-44
## 2321 tour_iddd867cha               SWIZERLAND     45-64
## 2322 tour_id4pdv9kli           UNITED KINGDOM     18-24
## 2323 tour_idf6jheeek UNITED STATES OF AMERICA     25-44
## 2324 tour_idshf4dg47                   RWANDA     18-24
## 2325 tour_id0g9r877j                   UGANDA     25-44
## 2326 tour_id9ea7w4dv                    ITALY     25-44
## 2327 tour_idzqra41pq                   CANADA     25-44
## 2328 tour_id2ow48yv4           UNITED KINGDOM     25-44
## 2329 tour_idpnoz7559               SWIZERLAND     25-44
## 2330 tour_idv2roy74a UNITED STATES OF AMERICA     45-64
## 2331 tour_idetpq70qy               SWIZERLAND     18-24
## 2332 tour_idwteq7z1q                    ITALY     25-44
## 2333 tour_id6y48t8t3                    ITALY     45-64
## 2334 tour_idh5uytw75                   MEXICO     18-24
## 2336 tour_idpzyzhtn7                    ITALY       65+
## 2337 tour_idk5b8hsik                  GERMANY     25-44
## 2338 tour_id9tty372e                  GERMANY     45-64
## 2339 tour_idgabbwwjk           UNITED KINGDOM     25-44
## 2340 tour_idabk3ia2p UNITED STATES OF AMERICA     25-44
## 2341 tour_id50xg3q4b                  GERMANY     25-44
## 2342 tour_idxangiukl                   CANADA     25-44
## 2343 tour_idwuy52vq5           UNITED KINGDOM     25-44
## 2344 tour_idqj82q6qn                  BURUNDI     25-44
## 2345 tour_idb3kbkzuw           UNITED KINGDOM     45-64
## 2346 tour_idopuu9uub           UNITED KINGDOM     25-44
## 2347 tour_idf5jq015f           UNITED KINGDOM     25-44
## 2348 tour_idgpr3aqj4                  DENMARK       65+
## 2349 tour_id2l9kh0e7                    SPAIN     45-64
## 2350 tour_idvpk9vlam                 ZIMBABWE     25-44
## 2351 tour_idjz3nv7ws                   ZAMBIA     25-44
## 2352 tour_id1utuqoea                    ITALY     25-44
## 2354 tour_id2utqascn                    KENYA     25-44
## 2355 tour_id38j40enj UNITED STATES OF AMERICA     25-44
## 2356 tour_idx3otq76p                   SWEDEN     45-64
## 2357 tour_id40wjvboh                    KENYA     25-44
## 2358 tour_idpi372wm6 UNITED STATES OF AMERICA       65+
## 2359 tour_id54p4ve0o                  GERMANY       65+
## 2360 tour_idpmsgcjxs                    ITALY       65+
## 2361 tour_idzigdx82a                 CAMBODIA     45-64
## 2362 tour_idoe2tpq8d                  GERMANY       65+
## 2363 tour_id9rd2ps0y                   FRANCE     25-44
## 2364 tour_idwwjbbbbm                   CANADA     25-44
## 2365 tour_idpty7fmgd           UNITED KINGDOM     45-64
## 2366 tour_idvcq2vsul                    ITALY     45-64
## 2367 tour_id6haumvpc                    KENYA     25-44
## 2368 tour_ida5u6ur8l                AUSTRALIA       65+
## 2369 tour_idrkl8yibw                   UGANDA     45-64
## 2370 tour_idzddmgbal           UNITED KINGDOM     45-64
## 2371 tour_id9ppin86x             SOUTH AFRICA     25-44
## 2372 tour_idk9xlsva3                    SPAIN     45-64
## 2373 tour_id6z02xly4                    INDIA     25-44
## 2374 tour_idh0960oc8 UNITED STATES OF AMERICA     25-44
## 2375 tour_idpt7d81ss                    ITALY     18-24
## 2376 tour_id0zobnqy9                   UGANDA     45-64
## 2377 tour_idg19u3b6m UNITED STATES OF AMERICA       65+
## 2378 tour_idhyitpz4y                  GERMANY     45-64
## 2379 tour_idxgvvym2x                  GERMANY     18-24
## 2380 tour_idlk5btnsa                  GERMANY     45-64
## 2381 tour_idqj81u21n           UNITED KINGDOM     25-44
## 2382 tour_id79i6dhb1                    KENYA     45-64
## 2383 tour_idsv36no3c                    KENYA     25-44
## 2384 tour_ido5vti5ll                     OMAN     45-64
## 2385 tour_idrd3rlxi8                    KENYA     45-64
## 2386 tour_idykvtj394                AUSTRALIA     45-64
## 2387 tour_idd1e2jftk                  GERMANY     25-44
## 2388 tour_id35t2g4s6                AUSTRALIA       65+
## 2389 tour_idjxd8liec UNITED STATES OF AMERICA       65+
## 2390 tour_idwz3nzhuo UNITED STATES OF AMERICA     25-44
## 2391 tour_id3apjvslm                   ZAMBIA     18-24
## 2392 tour_idsqoluxin                    ITALY     25-44
## 2393 tour_idc0b2rxxa                  IRELAND     18-24
## 2394 tour_idndq657po             SOUTH AFRICA     25-44
## 2395 tour_idx7le17ul           UNITED KINGDOM     45-64
## 2396 tour_id99m1y7hk                  AUSTRIA     45-64
## 2397 tour_id7tfyrw98 UNITED STATES OF AMERICA     45-64
## 2398 tour_id91hffhq4 UNITED STATES OF AMERICA     25-44
## 2399 tour_id1zp53v24           UNITED KINGDOM     45-64
## 2401 tour_id14zr9p42                 ZIMBABWE     25-44
## 2402 tour_id0ztaat2v                   UGANDA     18-24
## 2403 tour_idbp43zfob                   ZAMBIA     25-44
## 2404 tour_id4n32lc2v                AUSTRALIA       65+
## 2405 tour_id6r9gpxvg                   ZAMBIA     25-44
## 2406 tour_idcn5y1m1s                  IRELAND     45-64
## 2407 tour_idktismczv              NETHERLANDS     25-44
## 2408 tour_idfbuv8fl4                   FRANCE     25-44
## 2409 tour_idqtrinogk UNITED STATES OF AMERICA     45-64
## 2410 tour_idsxlxox4i UNITED STATES OF AMERICA     25-44
## 2411 tour_idvzhp3el1           UNITED KINGDOM     25-44
## 2412 tour_idzt0opau4               SWIZERLAND     18-24
## 2413 tour_idbvowfg9a           UNITED KINGDOM     45-64
## 2414 tour_iddpa03gym                    ITALY     45-64
## 2417 tour_idzmvhw33y UNITED STATES OF AMERICA     25-44
## 2418 tour_idpftc7g47                      DRC     18-24
## 2419 tour_idnm5z7vh5                  GERMANY     25-44
## 2420 tour_idaitzidku                   CANADA     25-44
## 2421 tour_idemk966u1                    CHINA     25-44
## 2422 tour_idflhtvvxz                    KENYA     25-44
## 2424 tour_idw4t45gyb               SWIZERLAND     45-64
## 2425 tour_idmuu6ghdj                    ITALY     45-64
## 2426 tour_idqk86ive8 UNITED STATES OF AMERICA     45-64
## 2427 tour_idsma48mjz                    ITALY     18-24
## 2428 tour_id7lv5dm20 UNITED STATES OF AMERICA     18-24
## 2430 tour_idsfm3xwdf           UNITED KINGDOM     25-44
## 2431 tour_idppr4gumu                    INDIA     25-44
## 2432 tour_idk5c2z628           UNITED KINGDOM     18-24
## 2433 tour_idn10fs31w           UNITED KINGDOM     18-24
## 2435 tour_id3ryuvcdf                   FRANCE     25-44
## 2436 tour_id3b0jjn8i                   NORWAY     18-24
## 2437 tour_iduz7azvor                   ZAMBIA     25-44
## 2438 tour_idtfs63xo0                    ITALY     45-64
## 2439 tour_id22i1y66g                  IRELAND       <18
## 2440 tour_idd2fvm3bs           UNITED KINGDOM     45-64
## 2441 tour_idqfpjpdn9 UNITED STATES OF AMERICA     45-64
## 2442 tour_id1hrtphjm                AUSTRALIA     25-44
## 2443 tour_idgg6ulij4           UNITED KINGDOM     18-24
## 2444 tour_idxeunspkd                   POLAND     25-44
## 2445 tour_id6k2qpiig                 ZIMBABWE     25-44
## 2446 tour_idj19ef6v8 UNITED STATES OF AMERICA     25-44
## 2447 tour_id1d3alds3                   CANADA     18-24
## 2448 tour_idlrfec67p                   ZAMBIA     25-44
## 2449 tour_idl3v1n5nh                   SWEDEN     25-44
## 2450 tour_id4pmdworw UNITED STATES OF AMERICA     45-64
## 2451 tour_id253nff47                    CHINA     18-24
## 2452 tour_idbhkupebf                AUSTRALIA     45-64
## 2453 tour_idroh5x4v9                AUSTRALIA     18-24
## 2454 tour_ideqrqnpfx                   FRANCE       65+
## 2455 tour_id9tmqh0z9                AUSTRALIA     45-64
## 2456 tour_idjwj1wpv4           UNITED KINGDOM     18-24
## 2457 tour_id6sbf7msk                    ITALY     25-44
## 2458 tour_id1k45v4ix                 ZIMBABWE     25-44
## 2459 tour_id0zn552e6                    KENYA     25-44
## 2460 tour_idub2o6suz           UNITED KINGDOM     25-44
## 2461 tour_idv3zhm0f1           UNITED KINGDOM       65+
## 2462 tour_id5lzbqele                   CANADA     25-44
## 2463 tour_idpc1ux8o9 UNITED STATES OF AMERICA     45-64
## 2464 tour_id3x3i84c2           UNITED KINGDOM     18-24
## 2465 tour_idpnzm8ilz                  DENMARK     18-24
## 2467 tour_idbkjcb9rv                    INDIA     25-44
## 2468 tour_idllmwo0vu                   ISRAEL     45-64
## 2469 tour_id5m87psmj UNITED STATES OF AMERICA       65+
## 2470 tour_iddv3llhn2                  BURUNDI     18-24
## 2471 tour_idgrprtji9              NETHERLANDS     18-24
## 2472 tour_idnjjbzpxv                  GERMANY     45-64
## 2473 tour_idom844iaq UNITED STATES OF AMERICA     45-64
## 2474 tour_idlaohtnip                   FRANCE     25-44
## 2475 tour_id1nlwyxpy                    SPAIN       65+
## 2477 tour_iduiiaylgv                    CHINA     25-44
## 2478 tour_id39s6ltz0                  GERMANY     45-64
## 2479 tour_idkedc2vmt                  BELGIUM       65+
## 2480 tour_id0mcddzzd                SINGAPORE     45-64
## 2481 tour_idhibc6z4n             SOUTH AFRICA     25-44
## 2482 tour_idaot3tccs                    JAPAN     25-44
## 2483 tour_idsypebfs4                 ZIMBABWE     25-44
## 2484 tour_idpv3ah9rv UNITED STATES OF AMERICA     45-64
## 2485 tour_idl3z1ymbv           UNITED KINGDOM     25-44
## 2486 tour_id1j84edjv                    ITALY     18-24
## 2487 tour_idj6ujtx7x           UNITED KINGDOM     45-64
## 2488 tour_idy3wbsp72                    ITALY     25-44
## 2489 tour_idm67dd1gw                   CANADA       65+
## 2490 tour_idcduqu7pg UNITED STATES OF AMERICA     25-44
## 2491 tour_idhjodiv7h               MOZAMBIQUE     25-44
## 2492 tour_idevnf08a1                   ZAMBIA     25-44
## 2493 tour_idtabtkz37                    ITALY     25-44
## 2494 tour_id7nif291g                  BELGIUM     18-24
## 2495 tour_idr8cbje69                    ITALY     18-24
## 2497 tour_idiq4ejc9b                   ZAMBIA     25-44
## 2498 tour_id08w6kh19 UNITED STATES OF AMERICA     45-64
## 2499 tour_idrp76y65k           UNITED KINGDOM     45-64
## 2500 tour_idhfidhazu                  BURUNDI     18-24
## 2502 tour_idhsyi3ufi                   CANADA     25-44
## 2503 tour_id8uxbyq3q                    ITALY     25-44
## 2504 tour_idukgzsrxt                AUSTRALIA     45-64
## 2506 tour_idgkh0pda9                  AUSTRIA       65+
## 2507 tour_idysuv93d0                  GERMANY     25-44
## 2508 tour_iddo1azw4n                   UGANDA     25-44
## 2509 tour_id6eguq3cx           UNITED KINGDOM     25-44
## 2510 tour_idobj29h8u             SOUTH AFRICA     45-64
## 2511 tour_idynhqw4do             SOUTH AFRICA     25-44
## 2512 tour_id00egf960                    ITALY     25-44
## 2513 tour_idv62mm18c                   NORWAY     25-44
## 2514 tour_id8pgx1trq                    KENYA     25-44
## 2515 tour_idu8x515yu                  BELGIUM     45-64
## 2516 tour_id7jdf3cev                AUSTRALIA     18-24
## 2517 tour_idapke2h59                 MALAYSIA     25-44
## 2518 tour_idq13qc32q             SOUTH AFRICA     25-44
## 2519 tour_idg0i1di1x             SOUTH AFRICA     45-64
## 2520 tour_id96sg072t                AUSTRALIA       65+
## 2521 tour_idr731uecs              NETHERLANDS     25-44
## 2522 tour_idnomhbrur                    ITALY     18-24
## 2523 tour_id01c0wu1k UNITED STATES OF AMERICA     25-44
## 2524 tour_idom5w6zq5               SWIZERLAND     18-24
## 2525 tour_idj32co4ts           UNITED KINGDOM     25-44
## 2526 tour_idgu1p62fd                   RUSSIA     25-44
## 2527 tour_idl53qtgh3 UNITED STATES OF AMERICA     25-44
## 2528 tour_idncuxmktu           UNITED KINGDOM     18-24
## 2529 tour_idnd1v2h9p                   SWEDEN     25-44
## 2530 tour_idfzyc7h93 UNITED STATES OF AMERICA     45-64
## 2531 tour_idms21n4we                  BELGIUM     25-44
## 2532 tour_idbjkv537l                   CANADA     25-44
## 2533 tour_idhp3a4cyp                 ZIMBABWE     45-64
## 2534 tour_idc6iqhgss                  GERMANY     25-44
## 2535 tour_idywvl8i90                   FRANCE     18-24
## 2536 tour_idgtptqula                  BELGIUM     45-64
## 2537 tour_idp9gj5b5l                    ITALY     45-64
## 2538 tour_idfrxzxadu                    ITALY     25-44
## 2539 tour_idicmtslac                      DRC     25-44
## 2540 tour_ida939hw4k           UNITED KINGDOM     25-44
## 2541 tour_idxhp60wnv                    INDIA     45-64
## 2542 tour_id1r7zkb9y UNITED STATES OF AMERICA     45-64
## 2543 tour_idy4vc66zo           UNITED KINGDOM     25-44
## 2544 tour_idnng0z79m UNITED STATES OF AMERICA     45-64
## 2545 tour_id5lthi0vv             SOUTH AFRICA     25-44
## 2546 tour_idbp2csy42                 ZIMBABWE     25-44
## 2547 tour_idui71rzl8                   CANADA     25-44
## 2548 tour_idid9o4hh9           UNITED KINGDOM     25-44
## 2549 tour_id1n9g2210 UNITED STATES OF AMERICA     45-64
## 2550 tour_idtr16t9v3           UNITED KINGDOM     25-44
## 2551 tour_idxbvq4yq7                  IRELAND       <18
## 2552 tour_iddgk2689u                    JAPAN     18-24
## 2553 tour_idg4ndbri9                   FRANCE     18-24
## 2554 tour_idgdce701l                    ITALY     45-64
## 2555 tour_iddlbrp1h2                   POLAND     18-24
## 2556 tour_idj4g7qfvu UNITED STATES OF AMERICA     25-44
## 2557 tour_idxrkg887g                    SPAIN     25-44
## 2558 tour_idwjxvp7ug                    ITALY     25-44
## 2559 tour_idy0qall93           UNITED KINGDOM     25-44
## 2560 tour_idmhf54uub UNITED STATES OF AMERICA     45-64
## 2561 tour_id8x9nw3oi                   UGANDA     45-64
## 2562 tour_idwzvgpy3a                   FRANCE     25-44
## 2563 tour_idwpwxm3zo                    KENYA     45-64
## 2564 tour_id66w3xklk                    SPAIN     45-64
## 2566 tour_idcwyfhzw5                  GERMANY     45-64
## 2567 tour_idbgdvkk9u UNITED STATES OF AMERICA       65+
## 2568 tour_idy7mqa6dp           UNITED KINGDOM     45-64
## 2569 tour_id8nghj8j3                   UGANDA     25-44
## 2570 tour_idv1yjzbva                   ZAMBIA     45-64
## 2571 tour_idjr1i30hn                     OMAN     25-44
## 2572 tour_idivca8dut                   ZAMBIA     25-44
## 2573 tour_ida6d4ttvw           UNITED KINGDOM     18-24
## 2574 tour_id7nbc3kv9                 ZIMBABWE     25-44
## 2576 tour_id3msiq0fs             SOUTH AFRICA     45-64
## 2577 tour_id2n24e5me                   FRANCE     25-44
## 2578 tour_id838bxgyt                  BURUNDI     25-44
## 2579 tour_idoe3u6sok                   ZAMBIA     25-44
## 2580 tour_id5hdref87           UNITED KINGDOM     25-44
## 2581 tour_id9i0yb4k9                  BELGIUM     25-44
## 2582 tour_idcu1agegc           UNITED KINGDOM     18-24
## 2583 tour_idi0qzqbp1           UNITED KINGDOM     45-64
## 2584 tour_id36z3j97i           UNITED KINGDOM     25-44
## 2585 tour_idsoa35ezv UNITED STATES OF AMERICA       65+
## 2586 tour_id0jrq6tjo                   FRANCE     45-64
## 2587 tour_idm8ui63o1                   CANADA     18-24
## 2588 tour_idk6hyj3iz                    ITALY     45-64
## 2589 tour_idlhnd9g2w                   UGANDA     25-44
## 2590 tour_idj8657fs1                 ZIMBABWE     25-44
## 2591 tour_idv9z6buq4                 ZIMBABWE     25-44
## 2592 tour_id1sxwx4u1 UNITED STATES OF AMERICA     45-64
## 2593 tour_idlu5oagnx UNITED STATES OF AMERICA       65+
## 2594 tour_ids3is5kmc                    SPAIN     45-64
## 2595 tour_idzjdhnzhk                   SWEDEN     45-64
## 2596 tour_id8m3zbx26                AUSTRALIA     25-44
## 2597 tour_idja22k7n8                   CANADA     25-44
## 2598 tour_idi998hzha                AUSTRALIA     45-64
## 2599 tour_idjbfu3nck                   SERBIA     25-44
## 2600 tour_idetl53on6 UNITED STATES OF AMERICA       65+
## 2601 tour_idfhnslru4           UNITED KINGDOM     25-44
## 2602 tour_id4zi2v7ko           UNITED KINGDOM       65+
## 2603 tour_idc4i4a8jz                  GERMANY     25-44
## 2604 tour_idtaahnw89                    INDIA     25-44
## 2605 tour_idzhwkm9az                   ZAMBIA     25-44
## 2606 tour_idpwsv5hsy UNITED STATES OF AMERICA       65+
## 2607 tour_idi6ix90k4                  BELGIUM     25-44
## 2609 tour_idqoyk081i                   UGANDA     25-44
## 2610 tour_idse6xgpn2                    INDIA     25-44
## 2611 tour_idqkw0zkwe                    INDIA     45-64
## 2612 tour_idxd7sbpt4                  BELGIUM     18-24
## 2613 tour_iduzm63pci                   UGANDA     18-24
## 2614 tour_id3y6a6afu                 MALAYSIA     25-44
## 2615 tour_idm8cv6ri8                AUSTRALIA     45-64
## 2616 tour_idt5zr5u5b                    SPAIN     25-44
## 2617 tour_id9hvzy0e2                    KENYA     25-44
## 2618 tour_ideoqm255b           UNITED KINGDOM     25-44
## 2620 tour_idtjwptpzw                    SPAIN     25-44
## 2621 tour_idgpxllyx8           UNITED KINGDOM     25-44
## 2623 tour_id27i1x5hs                AUSTRALIA       65+
## 2624 tour_id2ncd5671                    SPAIN     25-44
## 2625 tour_id2uxe65q7                   UGANDA     18-24
## 2626 tour_id26yybnej               SWIZERLAND     25-44
## 2627 tour_idcglrx651                   SWEDEN     18-24
## 2628 tour_idocf8dwih UNITED STATES OF AMERICA     25-44
## 2629 tour_idzhmxm7av                   FRANCE     45-64
## 2630 tour_idbs3aln2t              NEW ZEALAND     25-44
## 2631 tour_idqfstytfu                    ITALY     25-44
## 2632 tour_idxyighh6z                    INDIA     45-64
## 2633 tour_id6mr6rpwe                    SPAIN     45-64
## 2635 tour_idn30dche5 UNITED STATES OF AMERICA     45-64
## 2636 tour_idkils68ti UNITED STATES OF AMERICA     45-64
## 2637 tour_idkkxr5rb1 UNITED STATES OF AMERICA       65+
## 2638 tour_idx82i13w3           UNITED KINGDOM     45-64
## 2639 tour_idodhpd3qt                      UAE     25-44
## 2640 tour_idyskr4rzl UNITED STATES OF AMERICA     45-64
## 2641 tour_idrswit9lx           UNITED KINGDOM     25-44
## 2642 tour_idpcgzyis1           UNITED KINGDOM     45-64
## 2643 tour_idpvpow6px                    SUDAN     25-44
## 2645 tour_idtb6c4nj3                  GERMANY     45-64
## 2646 tour_idpm3xmcyb UNITED STATES OF AMERICA     25-44
## 2647 tour_id08l465ym UNITED STATES OF AMERICA     25-44
## 2648 tour_idqv215reh           UNITED KINGDOM     25-44
## 2649 tour_idccengkae                   FRANCE     25-44
## 2650 tour_idabw61k8p                  AUSTRIA     25-44
## 2651 tour_id28p90kta UNITED STATES OF AMERICA     45-64
## 2652 tour_idenv865ck                  IRELAND       <18
## 2653 tour_idv5ijcc8u           UNITED KINGDOM     45-64
## 2654 tour_idho7mveyo                AUSTRALIA     45-64
## 2655 tour_id0ok7v3cg                  URUGUAY     25-44
## 2656 tour_idhupf95ai           UNITED KINGDOM     18-24
## 2657 tour_idi27sltm2                    QATAR     18-24
## 2658 tour_idgv52a2rc UNITED STATES OF AMERICA     18-24
## 2659 tour_idqgxvl2uy                    ITALY     25-44
## 2660 tour_id3vuw0klw           UNITED KINGDOM     45-64
## 2661 tour_idfrzbytjv                   UGANDA     18-24
## 2662 tour_idpwm1g5x1           UNITED KINGDOM     18-24
## 2663 tour_idj6xa0olp           UNITED KINGDOM     45-64
## 2664 tour_idgj3565q2                 ZIMBABWE     25-44
## 2665 tour_id46fiz614                  GERMANY     45-64
## 2666 tour_id200yo862 UNITED STATES OF AMERICA     25-44
## 2667 tour_id68g1rarr                  GERMANY     18-24
## 2668 tour_idojvjsn12                    INDIA     25-44
## 2669 tour_idkdqjuy5q                   ZAMBIA     25-44
## 2671 tour_iddioeidih                AUSTRALIA     25-44
## 2672 tour_id4hh0qqf0                    KENYA     45-64
## 2674 tour_idpi807ekm           UNITED KINGDOM     25-44
## 2675 tour_id8jcygeqn UNITED STATES OF AMERICA       65+
## 2676 tour_id9sfl2eso           UNITED KINGDOM     18-24
## 2677 tour_id6v8h699s           UNITED KINGDOM     45-64
## 2678 tour_idqmo1jrpn             SOUTH AFRICA     45-64
## 2679 tour_idbya621zf UNITED STATES OF AMERICA     25-44
## 2680 tour_idtz7heo3b                    SPAIN     25-44
## 2681 tour_id8ohahhz0                     OMAN     18-24
## 2682 tour_idrhw98mer           UNITED KINGDOM     25-44
## 2683 tour_idlvy0xy5f                 ZIMBABWE     25-44
## 2684 tour_idrdqfwyue UNITED STATES OF AMERICA       65+
## 2685 tour_idjqa5abc3                    ITALY     25-44
## 2686 tour_idkraiph8w                   UGANDA     45-64
## 2687 tour_idkm6orn96                   ZAMBIA     18-24
## 2688 tour_idyir875dr              NETHERLANDS     25-44
## 2689 tour_id1j0c3hr9                    ITALY     25-44
## 2690 tour_idnz5fsm0v                    ITALY     45-64
## 2691 tour_idlveraf4a           UNITED KINGDOM     45-64
## 2692 tour_idz1gwizxy                AUSTRALIA     45-64
## 2693 tour_idiqvn24or           UNITED KINGDOM     18-24
## 2694 tour_id7ncvnu97                   ZAMBIA     25-44
## 2695 tour_idzqihsmpf                   ZAMBIA     25-44
## 2696 tour_iduw2sz34i                    ITALY     25-44
## 2697 tour_idbgv1087k                 THAILAND     45-64
## 2698 tour_idy5v1utuy                  DENMARK     25-44
## 2699 tour_idmu9g96yx                   ZAMBIA     25-44
## 2700 tour_id6kn2wn2b           UNITED KINGDOM     25-44
## 2701 tour_idm0ioj8jj                    KENYA     25-44
## 2702 tour_idvj0gsm33                   SWEDEN       65+
## 2703 tour_idtlhydm7s               SWIZERLAND     18-24
## 2704 tour_ida2yet8ty UNITED STATES OF AMERICA       65+
## 2705 tour_id78q3rwfe UNITED STATES OF AMERICA     25-44
## 2706 tour_idedjbsxzy                    JAPAN     45-64
## 2707 tour_id6qhfzk9v                AUSTRALIA     45-64
## 2708 tour_idtpwyxqjo UNITED STATES OF AMERICA     45-64
## 2709 tour_idokhpol7h                   FRANCE     25-44
## 2711 tour_idpuxvdsqm                   UGANDA     45-64
## 2712 tour_idevjk4r9i                  GERMANY     18-24
## 2713 tour_idr0nuknax                   POLAND     25-44
## 2714 tour_idagrd6mvf                    SPAIN     45-64
## 2715 tour_id61uk3dw3 UNITED STATES OF AMERICA     18-24
## 2716 tour_idzdahqnlv                   ZAMBIA     25-44
## 2717 tour_id6nvodusp                AUSTRALIA     45-64
## 2718 tour_id2xz2scge                  AUSTRIA     18-24
## 2719 tour_idtc1ivckg                    KENYA     45-64
## 2720 tour_id1d9fwn92                   SWEDEN     18-24
## 2721 tour_idcls1uf3n              NETHERLANDS     25-44
## 2723 tour_idqx5v83cy                   ZAMBIA     25-44
## 2724 tour_idulypujjy               SWIZERLAND     45-64
## 2725 tour_iddsmzm9vw                    ITALY     25-44
## 2726 tour_idjvsk00y9 UNITED STATES OF AMERICA       65+
## 2727 tour_id2ewutatz UNITED STATES OF AMERICA     45-64
## 2728 tour_idyp47t9oi           UNITED KINGDOM     25-44
## 2729 tour_idwxcxgta0 UNITED STATES OF AMERICA     45-64
## 2730 tour_idh0pp6wxz                 ZIMBABWE     45-64
## 2731 tour_id57hdbsg2 UNITED STATES OF AMERICA     25-44
## 2732 tour_idonewoxsg                  GERMANY     45-64
## 2733 tour_idhl5z924a                    KENYA     25-44
## 2734 tour_id18d3g4qz           UNITED KINGDOM     45-64
## 2735 tour_id73s9wi7n                   SWEDEN     25-44
## 2737 tour_idtn30xzv4                    ITALY     25-44
## 2738 tour_idkru2hnu9                    ITALY     45-64
## 2739 tour_id8ede13ii                    SPAIN     45-64
## 2741 tour_id2i0o9xoz                  IRELAND     18-24
## 2742 tour_id9hrduoec           UNITED KINGDOM     25-44
## 2743 tour_idbo64pmn5               SWIZERLAND     18-24
## 2744 tour_idjo0zm6hz                    KENYA     25-44
## 2745 tour_idzzc6zf8a                AUSTRALIA       65+
## 2746 tour_idusjzg9u7                   UGANDA     25-44
## 2748 tour_id3se7tr1m           UNITED KINGDOM     45-64
## 2749 tour_idrijg5c0a             SOUTH AFRICA     45-64
## 2750 tour_idkvahcc1y                   SWEDEN     25-44
## 2751 tour_id0cew0qaj                    ITALY     18-24
## 2752 tour_idxmv7lsya                AUSTRALIA       65+
## 2753 tour_idkem7mkft              SAUD ARABIA     45-64
## 2754 tour_idnpoygmk1                    KENYA     25-44
## 2755 tour_ideehg21fe                AUSTRALIA     45-64
## 2757 tour_idk56obzm2                  FINLAND     25-44
## 2758 tour_id2i93efss               SWIZERLAND       65+
## 2759 tour_idziz7uaw9             SOUTH AFRICA     25-44
## 2760 tour_id2ewqeipn                    SPAIN     25-44
## 2761 tour_id8eur4b07                AUSTRALIA     18-24
## 2762 tour_id7fumzc0d UNITED STATES OF AMERICA     25-44
## 2763 tour_idawjw9yxq                    INDIA     25-44
## 2764 tour_idxgoxdmrv           UNITED KINGDOM     45-64
## 2765 tour_iduatvwyq5                  GERMANY       65+
## 2766 tour_idtxuvy1m9                   FRANCE     18-24
## 2767 tour_ido2odp3ot UNITED STATES OF AMERICA       65+
## 2768 tour_id7gnk1ivf                   FRANCE     25-44
## 2769 tour_idja1skqz5                   SWEDEN     25-44
## 2770 tour_id922up0vi           UNITED KINGDOM     18-24
## 2771 tour_idmf7r20ox                AUSTRALIA       65+
## 2772 tour_idl2s4xou3                    CHINA     25-44
## 2773 tour_idhx6p1ibx                   UGANDA     18-24
## 2774 tour_idihrj2f3n                   UGANDA     45-64
## 2775 tour_idpozoayvk                  BELGIUM       65+
## 2776 tour_idktj58teq              NETHERLANDS     18-24
## 2778 tour_id4t6zcibg                AUSTRALIA       65+
## 2779 tour_iddfmuongr           UNITED KINGDOM     18-24
## 2780 tour_ids1hnfvx8              NETHERLANDS     45-64
## 2781 tour_idwrfbzvd8                AUSTRALIA     18-24
## 2782 tour_id728u8ad5                   CANADA     25-44
## 2783 tour_id0fci79w7 UNITED STATES OF AMERICA     18-24
## 2784 tour_idkc6sfpwm                    KENYA     45-64
## 2785 tour_id0bbz7c8r           UNITED KINGDOM     18-24
## 2787 tour_idmeegiyxy                      UAE     25-44
## 2788 tour_idvcqmyreg           UNITED KINGDOM     25-44
## 2789 tour_id8bl1zbz9                 ZIMBABWE     18-24
## 2790 tour_id4la6c1m5                   FRANCE     45-64
## 2791 tour_idg2jsxjsp                 PORTUGAL     25-44
## 2792 tour_idgmlaw228 UNITED STATES OF AMERICA       65+
## 2793 tour_id7qe7toc0                    ITALY     45-64
## 2794 tour_id1owsurlf UNITED STATES OF AMERICA     45-64
## 2795 tour_ids04pqais                    CHINA     25-44
## 2796 tour_idwkn1soef             SOUTH AFRICA     45-64
## 2797 tour_idm1i6rqiz                   FRANCE     45-64
## 2798 tour_idj8rrz6ly                 ZIMBABWE     45-64
## 2799 tour_id9c1oun4v                   ZAMBIA     25-44
## 2801 tour_idhel2k1rc                    SPAIN     25-44
## 2802 tour_idd8otla9s                    SPAIN     45-64
## 2803 tour_idc6blgn1s           UNITED KINGDOM     25-44
## 2804 tour_id2d53ayy7             SOUTH AFRICA     45-64
## 2805 tour_id2faqy41u                    KENYA     45-64
## 2806 tour_idk1nnptwg                   FRANCE     25-44
## 2807 tour_idqtmy3gj6             SOUTH AFRICA     25-44
## 2808 tour_idlkz8uc99 UNITED STATES OF AMERICA     18-24
## 2809 tour_idllgb9vpx                   CANADA     45-64
## 2810 tour_idsft61khe                  GERMANY     25-44
## 2811 tour_idvvfp2y3b UNITED STATES OF AMERICA     25-44
## 2812 tour_idvkqj7bpn                 ZIMBABWE     45-64
## 2814 tour_idpfg5u888                  DENMARK     18-24
## 2815 tour_iddy71nayi                      UAE     18-24
## 2816 tour_idze7fvely                  GERMANY     45-64
## 2817 tour_id4defd3yn               SWIZERLAND     25-44
## 2818 tour_idaa0irkn3                   ZAMBIA     25-44
## 2819 tour_idms82xj25              NETHERLANDS     45-64
## 2820 tour_id90orzwob                   CANADA     25-44
## 2821 tour_idq2ye8opx                    INDIA     45-64
## 2822 tour_idrrepxpee                    ITALY     45-64
## 2823 tour_id8e6qcii5                    ITALY     45-64
## 2825 tour_idzyew01vm                   NORWAY     45-64
## 2826 tour_idcpokydp2                    KENYA     25-44
## 2827 tour_idnn9y6ayn           UNITED KINGDOM     45-64
## 2829 tour_idd91jl7dd           UNITED KINGDOM     25-44
## 2830 tour_idqj8y621g                    JAPAN     18-24
## 2831 tour_idj8cer5aq                    ITALY       <18
## 2832 tour_idu8ffuoum                 ZIMBABWE     25-44
## 2834 tour_id92ry0hpa               SWIZERLAND     25-44
## 2835 tour_id98uwwfog           UNITED KINGDOM     45-64
## 2836 tour_idc3q51iwy                   FRANCE     25-44
## 2837 tour_idi6t0fkoz                   SWEDEN     25-44
## 2838 tour_id6vf2hzmc UNITED STATES OF AMERICA       65+
## 2839 tour_idxmfs1q6k                   SWEDEN       65+
## 2840 tour_id9l2010dg UNITED STATES OF AMERICA     45-64
## 2841 tour_idke88o8du UNITED STATES OF AMERICA     25-44
## 2842 tour_idkokn9yyr                   CANADA     25-44
## 2843 tour_id8u2kpltm                    KOREA     45-64
## 2844 tour_idurh8unes                  AUSTRIA       65+
## 2845 tour_id8hifkpve                  DENMARK     25-44
## 2846 tour_idzeby6xyi                  GERMANY     45-64
## 2847 tour_idopudxzwj           UNITED KINGDOM     25-44
## 2848 tour_idiso6hcof                    ITALY     18-24
## 2849 tour_ida325ytk1              NETHERLANDS     45-64
## 2850 tour_id99biffh4                  IRELAND     25-44
## 2851 tour_id8fpkzg3l           UNITED KINGDOM     18-24
## 2852 tour_idgf2ikwe2 UNITED STATES OF AMERICA     18-24
## 2853 tour_idk6qs24io                  DENMARK     25-44
## 2855 tour_idqcgu562a UNITED STATES OF AMERICA     25-44
## 2856 tour_idc5ghqg9b                   SWEDEN     18-24
## 2857 tour_idzk4q555r                    ITALY     25-44
## 2858 tour_idtey6dcfc                    CHINA     25-44
## 2859 tour_idmvhppit8                    ITALY     45-64
## 2860 tour_idrpuwvdqi             SOUTH AFRICA     45-64
## 2861 tour_idy30biwua               SWIZERLAND       65+
## 2862 tour_idqqq9os4z                   ISRAEL     18-24
## 2863 tour_idr2hp63og              NEW ZEALAND     25-44
## 2865 tour_idqbqjxr9a                  IRELAND     25-44
## 2866 tour_id8i7szd50                  BELGIUM     25-44
## 2867 tour_id3zsjkhcr                    KENYA     25-44
## 2869 tour_idu2qefyr4           UNITED KINGDOM     18-24
## 2870 tour_idolhl7qvg                    ITALY     45-64
## 2871 tour_idy98q0t3r               SWIZERLAND       65+
## 2872 tour_idw6lzq7c8                     OMAN     45-64
## 2873 tour_idmfzbjp64                    SPAIN     45-64
## 2874 tour_idxmn60xjt                   ZAMBIA     25-44
## 2875 tour_idkndo09mn                    ITALY     45-64
## 2876 tour_id0g58w3ky           UNITED KINGDOM     25-44
## 2877 tour_idk9rv46cx           UNITED KINGDOM     45-64
## 2878 tour_id8ag80mdq                  IRELAND     45-64
## 2879 tour_idkpi3v5ap                    ITALY     25-44
## 2880 tour_idpj0pdgjy                    ITALY     45-64
## 2881 tour_id1up50avr                   UGANDA     25-44
## 2882 tour_id140a0s9n                    SPAIN     45-64
## 2883 tour_idv2pegwon                   FRANCE     45-64
## 2884 tour_id2146yqta UNITED STATES OF AMERICA     18-24
## 2885 tour_id04xudxl9                 ZIMBABWE     25-44
## 2886 tour_idgwxv0ets                    INDIA     45-64
## 2887 tour_id33byuex4 UNITED STATES OF AMERICA     45-64
## 2888 tour_id2uh0ft4q                    INDIA     25-44
## 2889 tour_idtc0gr9fi                    ITALY     45-64
## 2890 tour_idsoft2n4t UNITED STATES OF AMERICA       65+
## 2891 tour_idwyibsm1v UNITED STATES OF AMERICA     25-44
## 2892 tour_idgej45dmp                   CANADA     45-64
## 2893 tour_id25yg1bwk UNITED STATES OF AMERICA       65+
## 2894 tour_id1on72tpv                    ITALY     45-64
## 2895 tour_idpqq1vksv                   ZAMBIA     25-44
## 2896 tour_idycxt2opi              NEW ZEALAND     25-44
## 2898 tour_idjatinl2s                    KENYA     25-44
## 2900 tour_idj3oytlpx UNITED STATES OF AMERICA     18-24
## 2901 tour_idkjf4f2lp           UNITED KINGDOM     25-44
## 2902 tour_idtxrcyv1s                  DENMARK     18-24
## 2903 tour_id8jtt5gfi UNITED STATES OF AMERICA     45-64
## 2904 tour_id18ud6ygy                 THAILAND     45-64
## 2905 tour_idjtiw1wuj           UNITED KINGDOM       65+
## 2906 tour_id2jrb4bcc                  GERMANY     25-44
## 2907 tour_ido0ymdfr9                    INDIA     25-44
## 2908 tour_idkd2km10n                    KENYA     25-44
## 2909 tour_idy2tjxe4n                  FINLAND       65+
## 2910 tour_idcmszjlti                  IRELAND       <18
## 2911 tour_id10zj93vv                    ITALY     45-64
## 2912 tour_idtd6yb7vr                   FRANCE     25-44
## 2913 tour_idzdl3azfb UNITED STATES OF AMERICA     45-64
## 2914 tour_id5gzj2ae0 UNITED STATES OF AMERICA     45-64
## 2915 tour_idauidrnzk                    ITALY     18-24
## 2917 tour_idb3gyi656           UNITED KINGDOM     18-24
## 2918 tour_id1333nurm                   UGANDA     18-24
## 2919 tour_idff8sdgxm UNITED STATES OF AMERICA     25-44
## 2921 tour_idr9jwdkyh UNITED STATES OF AMERICA       65+
## 2922 tour_idl208prys                   UGANDA     25-44
## 2923 tour_id39bji5my           UNITED KINGDOM     45-64
## 2924 tour_id9l1hwjpe UNITED STATES OF AMERICA       65+
## 2925 tour_idg2mqwk6j                  FINLAND     45-64
## 2926 tour_idpx43kfi4                    KOREA     18-24
## 2927 tour_id1cewxyjt                    ITALY     25-44
## 2928 tour_id67zu88dq UNITED STATES OF AMERICA     25-44
## 2929 tour_id5tw3bczd              NETHERLANDS     45-64
## 2930 tour_idmcefrur5                    ITALY     25-44
## 2932 tour_idup01txsu UNITED STATES OF AMERICA     18-24
## 2934 tour_id0a4jj2cq                   CANADA     45-64
## 2935 tour_idq0tobtp5                    SPAIN       65+
## 2936 tour_idgmkkly7a                   SWEDEN     45-64
## 2937 tour_idxj5qtqbf             SOUTH AFRICA     25-44
## 2938 tour_idw0h3sjbx                    INDIA     25-44
## 2939 tour_id1xqqog69                   FRANCE     45-64
## 2940 tour_id3fyyjdsm                   SWEDEN     25-44
## 2941 tour_idrcocudtc                  GERMANY     45-64
## 2942 tour_id5j92nlvs           UNITED KINGDOM       65+
## 2943 tour_idgvixgs7x UNITED STATES OF AMERICA       65+
## 2944 tour_idel66lo7s                  GERMANY     25-44
## 2945 tour_id6m4ick0f                  GERMANY       65+
## 2946 tour_idlieppa6t                   FRANCE     45-64
## 2947 tour_idw09veiux                    SPAIN     25-44
## 2948 tour_idqu4pfj4w           UNITED KINGDOM     25-44
## 2949 tour_idm9pyjy6s                 ZIMBABWE     25-44
## 2950 tour_id1ja0zcb0 UNITED STATES OF AMERICA     45-64
## 2951 tour_idb7m8dpok                   FRANCE     45-64
## 2952 tour_idbqh4dc1w UNITED STATES OF AMERICA     45-64
## 2953 tour_id3yufov8b                    ITALY     25-44
## 2954 tour_id5b7hmqf5                AUSTRALIA     45-64
## 2955 tour_idz1wnryxe                   COMORO     18-24
## 2956 tour_idh0piiowy                    ITALY     45-64
## 2957 tour_idurtxyjh0             SOUTH AFRICA     45-64
## 2958 tour_idh5jj2php           UNITED KINGDOM     45-64
## 2959 tour_idukrqwjh7           UNITED KINGDOM     45-64
## 2960 tour_id270q509k               SWIZERLAND     25-44
## 2961 tour_idksvwz3xw UNITED STATES OF AMERICA     25-44
## 2962 tour_idg4f4b8gd                  GERMANY     25-44
## 2963 tour_idkrks4lbw                SRI LANKA     45-64
## 2964 tour_idmt8thz7o                 PAKISTAN     25-44
## 2965 tour_id1cchydxe                    ITALY     45-64
## 2966 tour_idv39q98q3                AUSTRALIA     45-64
## 2967 tour_idevsdj0m8 UNITED STATES OF AMERICA     25-44
## 2968 tour_id4lnrxz5c                    ITALY     18-24
## 2969 tour_id98rpkecv                  GERMANY     18-24
## 2971 tour_idscei11d1 UNITED STATES OF AMERICA     45-64
## 2972 tour_idyqwof76q                   ZAMBIA     25-44
## 2973 tour_idqm0b5izk                   UGANDA     25-44
## 2974 tour_idwur8kcm4                    ITALY     45-64
## 2975 tour_id1ym6ayrl                      UAE     45-64
## 2976 tour_idsq5mjwt9 UNITED STATES OF AMERICA     25-44
## 2977 tour_idi0113xr8                    SPAIN     25-44
## 2978 tour_idpbf5le6t UNITED STATES OF AMERICA     45-64
## 2979 tour_ideaplq5xa                  BURUNDI     25-44
## 2980 tour_idt99kn17o                  ROMANIA     25-44
## 2981 tour_id6jsr7jmd                   UGANDA     25-44
## 2982 tour_ide7jk6749                   ZAMBIA     25-44
## 2983 tour_id1rmblrln                     OMAN     25-44
## 2984 tour_idzop115l2                   CANADA     45-64
## 2985 tour_idurj8wcx5             SOUTH AFRICA     25-44
## 2986 tour_idlgl0o6ip                  GERMANY     18-24
## 2987 tour_idc5ki57u1                    ITALY     25-44
## 2988 tour_idiesosf71                   SWEDEN       <18
## 2989 tour_idk9rytthc                    KOREA     25-44
## 2990 tour_id8do3uj6n                    CONGO     25-44
## 2991 tour_idpcjcsnah             SOUTH AFRICA     45-64
## 2993 tour_idk3l564qb                   ZAMBIA     18-24
## 2994 tour_id7ha0c9d5 UNITED STATES OF AMERICA       65+
## 2995 tour_idze4yqx8b                AUSTRALIA     25-44
## 2996 tour_idqpoor6v6           UNITED KINGDOM     18-24
## 2997 tour_idn4drateb                   NORWAY     25-44
## 2998 tour_idesac5hv2                   UGANDA     25-44
## 2999 tour_idpvm9myp3           UNITED KINGDOM     25-44
## 3000 tour_idp7pwcsnz                   FRANCE     25-44
## 3001 tour_idx9nq13q6                  GERMANY     18-24
## 3002 tour_idwsi769ks                 ZIMBABWE     25-44
## 3003 tour_iduq68eou8           UNITED KINGDOM     18-24
## 3004 tour_idvfxitymn                SINGAPORE     25-44
## 3005 tour_idjm6cs7ih           UNITED KINGDOM     45-64
## 3006 tour_idbrk51oxh                    ITALY     25-44
## 3007 tour_idgsn8sb16                   CANADA     25-44
## 3008 tour_idhhe95thd                    ITALY     45-64
## 3010 tour_idh8jdqirg                   UGANDA     25-44
## 3011 tour_id3pa7d7we UNITED STATES OF AMERICA       65+
## 3012 tour_idn6wvnmt2 UNITED STATES OF AMERICA     25-44
## 3013 tour_iddkrc308y                AUSTRALIA     25-44
## 3014 tour_idxfldwbhv UNITED STATES OF AMERICA     45-64
## 3015 tour_idggzej2p7 UNITED STATES OF AMERICA     45-64
## 3016 tour_idmanzrmbq UNITED STATES OF AMERICA     25-44
## 3017 tour_idf8vxb0ew           UNITED KINGDOM     45-64
## 3018 tour_id919n8hi5                    ITALY     45-64
## 3019 tour_id7x9zdubz           UNITED KINGDOM     45-64
## 3020 tour_idayhbfuxq UNITED STATES OF AMERICA     25-44
## 3021 tour_idii62pzaq                 ZIMBABWE     25-44
## 3022 tour_idmp901lzq                 ZIMBABWE     25-44
## 3023 tour_id4dfwc8dd                 ZIMBABWE     25-44
## 3024 tour_idvy8k930v           UNITED KINGDOM     25-44
## 3025 tour_id3uysctm8 UNITED STATES OF AMERICA     25-44
## 3026 tour_idiwen5gjx                  BELGIUM     25-44
## 3027 tour_idxrucmyqx                   ZAMBIA     25-44
## 3028 tour_iddek06orn                 ZIMBABWE     25-44
## 3029 tour_id54zsfrp7                    SPAIN     18-24
## 3030 tour_idf9tnt9j8 UNITED STATES OF AMERICA       65+
## 3031 tour_idsezo5jau                   SWEDEN     25-44
## 3032 tour_idntmq23mz                 ZIMBABWE     45-64
## 3033 tour_id7cqqml6f                   ZAMBIA     45-64
## 3034 tour_id4rqj7o0h                    ITALY     25-44
## 3035 tour_id8j4izir1              NETHERLANDS     45-64
## 3036 tour_idd8tewx0m                    ITALY     25-44
## 3037 tour_idfk2r7amw                   SWEDEN     45-64
## 3038 tour_id8q56wrdq                   ZAMBIA     45-64
## 3040 tour_idjskkczw8                    KENYA     25-44
## 3041 tour_id5ra256dt                   UGANDA     25-44
## 3042 tour_iddb9yvo1z                    ITALY     25-44
## 3043 tour_idf6o7cdgm UNITED STATES OF AMERICA     45-64
## 3044 tour_idddumffw8                 ZIMBABWE     25-44
## 3045 tour_idhflc30gi UNITED STATES OF AMERICA     45-64
## 3046 tour_ideoe7cv00                 ZIMBABWE     25-44
## 3047 tour_idlvxanu4a                    KENYA     25-44
## 3048 tour_id5sgnynmf                   RWANDA     45-64
## 3049 tour_idtodxc7yf             SOUTH AFRICA     25-44
## 3050 tour_idvebc36ba                  URUGUAY     25-44
## 3051 tour_id0udj5a6a UNITED STATES OF AMERICA     45-64
## 3052 tour_id6bv4xni6           CZECH REPUBLIC     25-44
## 3054 tour_idqzyyy4l8                    SPAIN     18-24
## 3055 tour_id1gjy0wyb             SOUTH AFRICA     25-44
## 3057 tour_idd4kjtr7h              NETHERLANDS     25-44
## 3058 tour_idbrspboip UNITED STATES OF AMERICA     25-44
## 3059 tour_id6vbhel6z                  DENMARK     45-64
## 3060 tour_idwqdgfjo9                    ITALY     45-64
## 3061 tour_idhsw7ufl0                  GERMANY     25-44
## 3063 tour_idxsp4pnc4           UNITED KINGDOM     25-44
## 3064 tour_idh9sw6nrh                   POLAND       <18
## 3065 tour_idb2i12eut             SOUTH AFRICA     25-44
## 3066 tour_idulb1wft8                  ALGERIA     45-64
## 3067 tour_ide4dp7flp                 ZIMBABWE     25-44
## 3068 tour_idjdshn7ie                    SPAIN     25-44
## 3069 tour_idzizqnfiy                    SPAIN     25-44
## 3070 tour_ide4hyxo12 UNITED STATES OF AMERICA     45-64
## 3071 tour_idah28g1ww                   ZAMBIA     25-44
## 3072 tour_idmnq4fqw4           UNITED KINGDOM     25-44
## 3073 tour_idh67ay0y8                   FRANCE     25-44
## 3075 tour_idfejas97y             SOUTH AFRICA     18-24
## 3076 tour_idkk227uqs           UNITED KINGDOM     45-64
## 3078 tour_idi066j9cc UNITED STATES OF AMERICA     18-24
## 3079 tour_idm8heeglq UNITED STATES OF AMERICA       65+
## 3080 tour_idxhb59z2z                   FRANCE     25-44
## 3081 tour_idzeceg367 UNITED STATES OF AMERICA     25-44
## 3082 tour_id2n8peqta                    KENYA     25-44
## 3083 tour_id3nz7jwh5                   FRANCE     25-44
## 3084 tour_iddmh11cvn           UNITED KINGDOM       65+
## 3085 tour_idzvdjsfl2 UNITED STATES OF AMERICA     45-64
## 3086 tour_id19wumrms                    ITALY     25-44
## 3087 tour_idzh3w1bh9                      UAE     45-64
## 3088 tour_idrmbsq37k                   NORWAY     45-64
## 3089 tour_id9f12izxf              NETHERLANDS     25-44
## 3090 tour_idg0v5lgb4           UNITED KINGDOM     25-44
## 3091 tour_id2rcw7fdv              NETHERLANDS     25-44
## 3092 tour_idbxcboxrs UNITED STATES OF AMERICA     25-44
## 3093 tour_idhuk0mkve                    ITALY     45-64
## 3094 tour_idsdgrg8mp UNITED STATES OF AMERICA     45-64
## 3095 tour_idtp7ch3wy                   ZAMBIA     25-44
## 3096 tour_id9fqnd7w3                    KENYA     25-44
## 3097 tour_id6ukdnln9           UNITED KINGDOM     25-44
## 3098 tour_idb4g09ciy                  GERMANY     45-64
## 3099 tour_id23b9y6u1 UNITED STATES OF AMERICA     45-64
## 3100 tour_id9ne1zdbf UNITED STATES OF AMERICA     25-44
## 3101 tour_idr0tu2r7r                    ITALY     18-24
## 3102 tour_idu4wmdh1c           UNITED KINGDOM     18-24
## 3103 tour_idee0k4zqm           UNITED KINGDOM     25-44
## 3104 tour_idj5a84dxg                   POLAND     25-44
## 3105 tour_id3s3za18y                    KOREA     25-44
## 3107 tour_idc89zx8pr                    SPAIN     45-64
## 3108 tour_idy670otas                    KENYA     45-64
## 3109 tour_idjgh2dz33                    KENYA     18-24
## 3110 tour_idcckxvibi                  ROMANIA     25-44
## 3111 tour_id4umk5ct1                   CANADA     45-64
## 3112 tour_idx7lvac4b UNITED STATES OF AMERICA     18-24
## 3113 tour_id0rf4j9q7                  GERMANY     25-44
## 3114 tour_idd4t7py8b                    JAPAN     45-64
## 3115 tour_idpe7cykha             SOUTH AFRICA     25-44
## 3116 tour_id5ev12j03                      DRC     18-24
## 3117 tour_idduz65ecr              NETHERLANDS     25-44
## 3118 tour_id8d1muren               SWIZERLAND     25-44
## 3119 tour_idzlcq3qy5              NETHERLANDS     18-24
## 3120 tour_id124izhu2                 ZIMBABWE     25-44
## 3121 tour_idk32jf0ja             SOUTH AFRICA     25-44
## 3122 tour_id4rafsrzt UNITED STATES OF AMERICA     45-64
## 3123 tour_idn29zja3j                 ZIMBABWE     25-44
## 3124 tour_id50y6y4xa                  AUSTRIA     45-64
## 3126 tour_id68uinu95                   FRANCE     45-64
## 3127 tour_idk40mwcp6           UNITED KINGDOM     25-44
## 3128 tour_idwfvmyzjq                 PORTUGAL     18-24
## 3129 tour_idal65j34u UNITED STATES OF AMERICA     45-64
## 3130 tour_id6ow50pm3                   FRANCE     18-24
## 3131 tour_idhcy2390g UNITED STATES OF AMERICA     45-64
## 3132 tour_idxie9g78n                    KENYA     25-44
## 3133 tour_idfi7dqlkw           UNITED KINGDOM     45-64
## 3134 tour_idl3a0ps55           UNITED KINGDOM     25-44
## 3135 tour_idgicdojxr                   CANADA     45-64
## 3136 tour_id21p5jkq7                    INDIA     25-44
## 3137 tour_idz5p01ssu           UNITED KINGDOM     18-24
## 3138 tour_idvdiu716u                  GERMANY     45-64
## 3139 tour_idrawoanik                   UGANDA     45-64
## 3140 tour_idbbrmad85                  DENMARK     45-64
## 3141 tour_id3qw5k0i1 UNITED STATES OF AMERICA       65+
## 3142 tour_idomw5d8cc               SWIZERLAND     25-44
## 3143 tour_idscouqo9c                    KENYA     25-44
## 3144 tour_id4yaoi20u                    KENYA       <18
## 3145 tour_id1b58to0n UNITED STATES OF AMERICA     45-64
## 3146 tour_id4ym7v3mn                AUSTRALIA     45-64
## 3148 tour_idxdepehyi                   FRANCE     45-64
## 3149 tour_idlz5bso67                    SPAIN     45-64
## 3150 tour_id11xy7rsz             SOUTH AFRICA       65+
## 3151 tour_id7yoh61uv                 ZIMBABWE     45-64
## 3152 tour_idfggd0lcc                    KENYA     25-44
## 3153 tour_idpwgirfvt                  GERMANY     45-64
## 3154 tour_id3jxlvxel                  DENMARK     18-24
## 3155 tour_id8o334j8s                   FRANCE     45-64
## 3156 tour_idtezu8fxn                  DJIBOUT     45-64
## 3157 tour_idyyelzjhp           UNITED KINGDOM     45-64
## 3161 tour_id22mcr1ha                   UGANDA     25-44
## 3162 tour_id3e3v1w90              NETHERLANDS     25-44
## 3163 tour_idws8ncbjw              NETHERLANDS     45-64
## 3164 tour_idqhpaexaw                    INDIA     45-64
## 3166 tour_idtzu50e2c                   ZAMBIA     25-44
## 3168 tour_idacgrlmn8                    ITALY     45-64
## 3169 tour_idvxzhg4hn                   CANADA     45-64
## 3170 tour_idi7dqev6m                    ITALY     25-44
## 3172 tour_id4vc42afr                    INDIA     25-44
## 3173 tour_id8jgpcuvi           UNITED KINGDOM     45-64
## 3175 tour_iddpku4717                      UAE     25-44
## 3176 tour_idrz3n7iz8                    SPAIN     45-64
## 3178 tour_iddtsgwfls                      UAE     25-44
## 3179 tour_idirjpk2kp                   NORWAY     18-24
## 3180 tour_idj43ttq3t                  GERMANY     25-44
## 3182 tour_ida620arxn                    SPAIN     25-44
## 3183 tour_idsw4jr64d                   UGANDA     25-44
## 3184 tour_idubyn9hrc                    ITALY     25-44
## 3185 tour_id9bu9oeh2                  GERMANY     45-64
## 3186 tour_idueiv8naf UNITED STATES OF AMERICA     45-64
## 3187 tour_id6ncoy6bc                    KENYA     45-64
## 3188 tour_idfubuwkbh UNITED STATES OF AMERICA     45-64
## 3189 tour_idq8v8md7d                   CANADA       65+
## 3190 tour_idc6ear2n1                 ETHIOPIA     45-64
## 3191 tour_id61fqerxs                AUSTRALIA     45-64
## 3192 tour_idoldmb8ml                  GERMANY     45-64
## 3193 tour_idw82n3lgl UNITED STATES OF AMERICA       65+
## 3194 tour_idz9oq339k                   UGANDA     25-44
## 3197 tour_id4475hmfg                   POLAND     18-24
## 3198 tour_idu8n2v1ri                    ITALY     18-24
## 3199 tour_id8pa2co6o              NETHERLANDS     25-44
## 3200 tour_idyudbnfyk                   ZAMBIA     25-44
## 3201 tour_iddehveekv UNITED STATES OF AMERICA       65+
## 3202 tour_ideuw8ngru                  GERMANY       65+
## 3203 tour_id64bkh957                 ZIMBABWE     45-64
## 3204 tour_idbv9zou37                   ZAMBIA     25-44
## 3205 tour_idomzazc5r                    SPAIN     25-44
## 3206 tour_idxfvkvnlg                   FRANCE     45-64
## 3207 tour_id3mcazh1d                   CANADA     18-24
## 3208 tour_idth3s4b0g UNITED STATES OF AMERICA     25-44
## 3209 tour_id1i9fxtpm                    ITALY     45-64
## 3210 tour_idy4z45m43                 ZIMBABWE     25-44
## 3211 tour_id6ed2r3ob UNITED STATES OF AMERICA     45-64
## 3212 tour_idznxhlfwh                    CHINA     25-44
## 3213 tour_idti8ntp97                  GERMANY     45-64
## 3214 tour_idfnyja19y UNITED STATES OF AMERICA       65+
## 3215 tour_idur6vpogw UNITED STATES OF AMERICA       65+
## 3216 tour_id4t7rxt9x                  GERMANY     25-44
## 3218 tour_id2rqcrp6e UNITED STATES OF AMERICA     25-44
## 3219 tour_id6pokciku             SOUTH AFRICA     45-64
## 3220 tour_idth1nhq1h                   UGANDA     25-44
## 3221 tour_id73r2b5y8 UNITED STATES OF AMERICA     25-44
## 3222 tour_idvywfs4sb UNITED STATES OF AMERICA     25-44
## 3223 tour_idokcrw1uj                AUSTRALIA     25-44
## 3224 tour_idz37mm29n                   ZAMBIA     25-44
## 3225 tour_idk8jwm7lz UNITED STATES OF AMERICA     18-24
## 3226 tour_id0zgt8sqi UNITED STATES OF AMERICA     45-64
## 3227 tour_id5pnd1eqd                AUSTRALIA     45-64
## 3228 tour_idp4xnp9iy                  GERMANY     45-64
## 3229 tour_id00z80cxk             SOUTH AFRICA     25-44
## 3230 tour_idxuohxkbt UNITED STATES OF AMERICA     25-44
## 3231 tour_idz0tib2gu                  BURUNDI     25-44
## 3232 tour_idoli38g6s UNITED STATES OF AMERICA       65+
## 3234 tour_idg3vajx2c                SINGAPORE     25-44
## 3235 tour_id0hirf7tq                    ITALY     45-64
## 3236 tour_idng80tzvt           UNITED KINGDOM     45-64
## 3237 tour_idksme8m5w                   FRANCE     18-24
## 3238 tour_idwtrxti6j                  DENMARK     25-44
## 3239 tour_idndsyia50                  BELGIUM     25-44
## 3240 tour_id5zrasyz6                   NORWAY     45-64
## 3241 tour_ids98b4y4z                   FRANCE     25-44
## 3242 tour_idj33pb7qn UNITED STATES OF AMERICA     18-24
## 3243 tour_idz20duu15                    ITALY     25-44
## 3245 tour_idngip2l5s           UNITED KINGDOM     25-44
## 3246 tour_idcho3hq3i                    INDIA     25-44
## 3248 tour_id1182wd1p                   SWEDEN     45-64
## 3249 tour_idg33l2vrp UNITED STATES OF AMERICA     45-64
## 3251 tour_idg2slcuvn           UNITED KINGDOM     25-44
## 3252 tour_id0rivk5lm                  DENMARK     25-44
## 3253 tour_idlhl6x12l                  AUSTRIA       65+
## 3254 tour_idbxtxvj5s                  GERMANY     18-24
## 3255 tour_idg93zjap4                    KENYA     25-44
## 3256 tour_idftjgs8zo                    ITALY     45-64
## 3258 tour_idi1540z13                      UAE     25-44
## 3259 tour_idguagpoui                  GERMANY     25-44
## 3260 tour_idskewa9um                AUSTRALIA     45-64
## 3262 tour_idtq3ot8s5           UNITED KINGDOM     45-64
## 3263 tour_id6t7qgc1x           UNITED KINGDOM     18-24
## 3264 tour_idk65asp5a                  GERMANY     25-44
## 3265 tour_id55ykqh5z                   RWANDA     45-64
## 3266 tour_idztv1an01                    ITALY     25-44
## 3267 tour_idtui0znxz                   ZAMBIA     25-44
## 3268 tour_id7xw5w0jr                  GERMANY     45-64
## 3269 tour_idlleyaymc                   POLAND     18-24
## 3270 tour_iddpzyffq2           UNITED KINGDOM     18-24
## 3271 tour_id8skr3vlp UNITED STATES OF AMERICA     45-64
## 3272 tour_id7fa363x6                   FRANCE     45-64
## 3273 tour_idbjxext2g UNITED STATES OF AMERICA     45-64
## 3274 tour_idufx32kt6                SINGAPORE     25-44
## 3275 tour_idx1dbjbja           UNITED KINGDOM     18-24
## 3276 tour_id7pel7ys9 UNITED STATES OF AMERICA     25-44
## 3277 tour_idoeyzduli                    KENYA     25-44
## 3278 tour_idn9mtaai3                 ZIMBABWE     18-24
## 3279 tour_idt7mxnfmb                  GERMANY     18-24
## 3280 tour_idb9gsr8hf                   ZAMBIA     25-44
## 3281 tour_iddxdka42w                    ITALY     25-44
## 3282 tour_idbq1vjy9j              NETHERLANDS     45-64
## 3283 tour_id97vnf8xr                 ZIMBABWE     25-44
## 3284 tour_id15cqau2o                    SPAIN     25-44
## 3285 tour_id3l9m78ub                    ITALY     25-44
## 3287 tour_idqks6rjf9                   CANADA     45-64
## 3288 tour_idjq2jf33a              NETHERLANDS     45-64
## 3289 tour_idusid4l9r                    ITALY     25-44
## 3290 tour_idkbed0ea6           UNITED KINGDOM     25-44
## 3291 tour_id2ywwy7qp                AUSTRALIA     45-64
## 3292 tour_id2l7c5eq1                   UGANDA     18-24
## 3293 tour_idau0ek55o           UNITED KINGDOM     18-24
## 3294 tour_idyv5yhjhe UNITED STATES OF AMERICA     45-64
## 3295 tour_idpbhhhtum UNITED STATES OF AMERICA     25-44
## 3296 tour_idaufty0q2               SWIZERLAND     45-64
## 3297 tour_idc7zatzwp           UNITED KINGDOM     45-64
## 3298 tour_idapzxazvv           UNITED KINGDOM     45-64
## 3299 tour_idjsx6st3i           UNITED KINGDOM     45-64
## 3300 tour_idv8dt58rl UNITED STATES OF AMERICA       65+
## 3301 tour_idhyabsdoz                   RUSSIA     25-44
## 3303 tour_idq9hbc3zg UNITED STATES OF AMERICA     45-64
## 3304 tour_idffieu3kq                    ITALY     25-44
## 3305 tour_ida8hi9prn                  DENMARK     18-24
## 3306 tour_idnyo47ge8                   CANADA     18-24
## 3307 tour_id2w8ce7m9                   CANADA     18-24
## 3308 tour_idq5d7fom4           UNITED KINGDOM     45-64
## 3309 tour_idsne0r0vc                  IRELAND     45-64
## 3310 tour_id8vykd08k                  IRELAND     25-44
## 3311 tour_idzbgte88l UNITED STATES OF AMERICA       65+
## 3312 tour_idgycw2p9z                  ROMANIA     45-64
## 3313 tour_id6ea8swde                    ITALY     45-64
## 3314 tour_idljku7lrq                   FRANCE     45-64
## 3315 tour_id6rfl0cx3                  GERMANY     25-44
## 3316 tour_ideioxxa5r           UNITED KINGDOM     18-24
## 3317 tour_ida9wlvf2c             SOUTH AFRICA     25-44
## 3318 tour_idxp574usv                   FRANCE     25-44
## 3320 tour_idielnaoh5           UNITED KINGDOM     25-44
## 3321 tour_idxhk0q0aa             SOUTH AFRICA     45-64
## 3322 tour_idu5co924n             SOUTH AFRICA     25-44
## 3323 tour_idutzpy0o0                    ITALY     25-44
## 3324 tour_idd02izm6s                AUSTRALIA     18-24
## 3325 tour_idg62cybba UNITED STATES OF AMERICA     45-64
## 3326 tour_id5czxpai7                    ITALY     25-44
## 3327 tour_iddk5m62h7 UNITED STATES OF AMERICA     25-44
## 3328 tour_idg0yk6cw4                  GERMANY     25-44
## 3329 tour_id04hc6eij                    CHINA     45-64
## 3330 tour_iduax2f47w                   FRANCE     45-64
## 3331 tour_idhmvzsila                 MALAYSIA     25-44
## 3332 tour_idjy0kohqg                 PORTUGAL     45-64
## 3333 tour_idu3wmdas0           UNITED KINGDOM     25-44
## 3334 tour_idiy17crsk                   ZAMBIA     25-44
## 3335 tour_idu19i127j           UNITED KINGDOM     25-44
## 3336 tour_idzn6sjpeq                  GERMANY     45-64
## 3337 tour_id9oqps1qu UNITED STATES OF AMERICA       65+
## 3338 tour_idlhinc211 UNITED STATES OF AMERICA     45-64
## 3339 tour_id4ag80ym1                   RWANDA     25-44
## 3340 tour_iduj2bdj7y                  GERMANY     18-24
## 3341 tour_idavrg48ox                   SWEDEN     25-44
## 3342 tour_ida8ehbaqg                  GERMANY     25-44
## 3343 tour_id6mirp19c                  GERMANY     45-64
## 3344 tour_idqlajbyri                    ITALY     25-44
## 3345 tour_id6ji2s8mu           UNITED KINGDOM     18-24
## 3346 tour_idv9pciwij                  GERMANY     45-64
## 3347 tour_id47vcje1l           UNITED KINGDOM     25-44
## 3349 tour_id183e9we2                   UGANDA     45-64
## 3350 tour_idik0ze0de UNITED STATES OF AMERICA     45-64
## 3351 tour_id70ogzles UNITED STATES OF AMERICA     25-44
## 3352 tour_idpyq6eycs                   FRANCE     25-44
## 3353 tour_idnee3zaj8                   FRANCE     25-44
## 3354 tour_id6pnf7eqn UNITED STATES OF AMERICA     25-44
## 3355 tour_idraekih6l                    ITALY     25-44
## 3356 tour_id4h5o1u2o                    ITALY       65+
## 3357 tour_idbgg2bd3h                    INDIA     45-64
## 3358 tour_iddv5x79zj                    ITALY     45-64
## 3359 tour_id70ceouen               SWIZERLAND     25-44
## 3360 tour_id6ae0a4f5             SOUTH AFRICA     45-64
## 3361 tour_idyqpjeotq                   SWEDEN     18-24
## 3362 tour_idli0aruzq                      UAE     25-44
## 3363 tour_id7l4u1umw UNITED STATES OF AMERICA     45-64
## 3365 tour_id1qe2zqmm                   ZAMBIA     25-44
## 3366 tour_idobrlsqwq                      UAE     25-44
## 3367 tour_idjr17s4yy                  GERMANY       65+
## 3368 tour_idftn8pmyc                    ITALY     25-44
## 3369 tour_idgako8t4z UNITED STATES OF AMERICA     45-64
## 3370 tour_idwjmkj8t1                    ITALY     25-44
## 3372 tour_idx0nwq2ek                    ITALY     25-44
## 3373 tour_idhl1tcott                   UGANDA     45-64
## 3374 tour_idpkkwtnwq                   CANADA     45-64
## 3375 tour_idcn1069cm                 SCOTLAND     45-64
## 3376 tour_id9khj1fm1                 SLOVAKIA     45-64
## 3377 tour_id29ynyu1l           UNITED KINGDOM     25-44
## 3378 tour_idrz4m00vu                  GERMANY     45-64
## 3379 tour_idfbtu0ds4                AUSTRALIA       65+
## 3380 tour_id23pkms35                   CANADA       65+
## 3381 tour_idqkhbee4h UNITED STATES OF AMERICA       65+
## 3382 tour_ideq0wpuzb                   ZAMBIA     25-44
## 3383 tour_idgk9ocdwo                   UGANDA     25-44
## 3384 tour_idnxp8x8j1                   ZAMBIA     25-44
## 3385 tour_idtloolf76                    KENYA     45-64
## 3386 tour_idd5wfjh8c                    ITALY     45-64
## 3387 tour_id91yxw8oy                    KENYA     25-44
## 3388 tour_idcgy1doh8                    ITALY     25-44
## 3389 tour_idrqb0pbb0                    KENYA     25-44
## 3390 tour_id4d36q8ly               SWIZERLAND     18-24
## 3391 tour_idntzfcpuf           UNITED KINGDOM     45-64
## 3392 tour_id4meexadk                   ISRAEL     25-44
## 3393 tour_idhmu63w6s                   ZAMBIA       <18
## 3394 tour_idzb30kzcl UNITED STATES OF AMERICA       65+
## 3395 tour_id93tiu9eh                    ITALY     25-44
## 3396 tour_idzhu9w04r                    SPAIN     25-44
## 3397 tour_idsbbo9dc6                    ITALY     45-64
## 3398 tour_idhwt6f3st                   FRANCE     25-44
## 3399 tour_iddbg8cicz           UNITED KINGDOM     45-64
## 3400 tour_ids129i8hd UNITED STATES OF AMERICA     25-44
## 3402 tour_id8rzrieo2                   FRANCE     25-44
## 3404 tour_idi8euzikv           UNITED KINGDOM     25-44
## 3405 tour_idg38r13ng UNITED STATES OF AMERICA     45-64
## 3406 tour_idcrz873v2             SOUTH AFRICA     25-44
## 3407 tour_id0le83zu7 UNITED STATES OF AMERICA     45-64
## 3408 tour_idhag13p8w                 ZIMBABWE     25-44
## 3409 tour_idp0zc3dyy                    KENYA     25-44
## 3410 tour_id3u79ftdp UNITED STATES OF AMERICA     25-44
## 3411 tour_idz4biun8p           UNITED KINGDOM     25-44
## 3412 tour_idts4fwj6j                   CANADA     25-44
## 3413 tour_id60ck183c                    KENYA     25-44
## 3414 tour_idumhx8r1i                    JAPAN     25-44
## 3415 tour_id4gb7f0qm                    JAPAN     25-44
## 3416 tour_idvvbrvica                AUSTRALIA     45-64
## 3417 tour_id4sjqml4g UNITED STATES OF AMERICA     45-64
## 3418 tour_idrj4v9rct UNITED STATES OF AMERICA     25-44
## 3419 tour_idifz8l2v3                  GERMANY     25-44
## 3420 tour_idj8wbyne9                  GERMANY     25-44
## 3421 tour_idqhuxqbvt                    ITALY     25-44
## 3422 tour_id6zn5ghpd                   CANADA     25-44
## 3423 tour_idhzci0vvx                  FINLAND     18-24
## 3424 tour_idt5yk8tm3 UNITED STATES OF AMERICA     25-44
## 3425 tour_id8xto27tm UNITED STATES OF AMERICA       65+
## 3426 tour_idmjbr7tc5                    ITALY     25-44
## 3427 tour_idl0j9yfmn                   GREECE     45-64
## 3428 tour_idzrnxnz6r           UNITED KINGDOM     25-44
## 3429 tour_ide0ykwy9m              NETHERLANDS     25-44
## 3430 tour_id0kyxrk1g           UNITED KINGDOM     45-64
## 3431 tour_idw8durvuk                   FRANCE     45-64
## 3432 tour_id3oe7aga3                   ZAMBIA     25-44
## 3433 tour_idkx4o7ezd                  GERMANY     25-44
## 3434 tour_idh5y9t8j6                    ITALY     25-44
## 3436 tour_idqbzvj6u6                    ITALY     25-44
## 3437 tour_idc6omb3qv                    ITALY     25-44
## 3438 tour_idhiijys3t                  BELGIUM     18-24
## 3439 tour_idozf66d3x UNITED STATES OF AMERICA       65+
## 3440 tour_idrstka97f                    ITALY     45-64
## 3441 tour_idhg9dsjjz                  IRELAND     25-44
## 3442 tour_idtg7xfvx9                   ZAMBIA     25-44
## 3443 tour_idr9ssrrq6 UNITED STATES OF AMERICA     45-64
## 3444 tour_idtq0yflx6             SOUTH AFRICA     25-44
## 3445 tour_id4zn0duio UNITED STATES OF AMERICA     25-44
## 3446 tour_idlol817ts                   FRANCE     18-24
## 3447 tour_id647zogxu           UNITED KINGDOM     45-64
## 3448 tour_id13bbtyyw                  GERMANY     25-44
## 3449 tour_idgjvcnr17              NEW ZEALAND     45-64
## 3450 tour_idpeh2zio2             SOUTH AFRICA     25-44
## 3451 tour_id75fw3ekq                    INDIA     45-64
## 3452 tour_idg0785ufj                    ITALY       65+
## 3453 tour_id2j7j6f1b                   CANADA     45-64
## 3454 tour_idbeq9hs3r                   UGANDA     25-44
## 3455 tour_idndecf981 UNITED STATES OF AMERICA     18-24
## 3456 tour_iddei2342b                    KENYA     25-44
## 3457 tour_idbto83ju5                  DENMARK     45-64
## 3458 tour_id244kgkum UNITED STATES OF AMERICA     45-64
## 3459 tour_idyesywfwi UNITED STATES OF AMERICA       65+
## 3460 tour_iduuu9h4kr                   BRAZIL     45-64
## 3461 tour_idtm3zkywq           CZECH REPUBLIC     25-44
## 3462 tour_idbkriu58o                    ITALY     45-64
## 3463 tour_id2c01wz1t                    ITALY     25-44
## 3464 tour_idbhzbsour                   UGANDA     25-44
## 3465 tour_idbc4tybfr                    ITALY     25-44
## 3466 tour_idocrs0rcx           UNITED KINGDOM     45-64
## 3467 tour_id0nzz9vmf                    ITALY     25-44
## 3468 tour_id5hhaw5ib                    ITALY     45-64
## 3469 tour_iddz9414wi                  IRELAND     18-24
## 3470 tour_idduna7rsw                   FRANCE     25-44
## 3471 tour_idii8vfinc                   UGANDA       65+
## 3472 tour_idf2lohgld                   FRANCE     25-44
## 3473 tour_idsw6p65wt                   CANADA     18-24
## 3474 tour_id265rzpvs           UNITED KINGDOM     45-64
## 3476 tour_idl0ofvi0l              NETHERLANDS     25-44
## 3477 tour_id710zozi8           UNITED KINGDOM     25-44
## 3478 tour_idl53ms7i6                   CANADA     45-64
## 3479 tour_idpryobtz2                    KENYA     45-64
## 3480 tour_idqfnimt3w                    KENYA     25-44
## 3481 tour_id5u1jr0po           UNITED KINGDOM     45-64
## 3482 tour_idzh7j294q           UNITED KINGDOM     18-24
## 3484 tour_idd2fov2iv UNITED STATES OF AMERICA     45-64
## 3485 tour_idpm2dvj2b                   ZAMBIA     45-64
## 3486 tour_idex4i7i4m                  GERMANY     25-44
## 3487 tour_idik8kjz7o                  GERMANY     18-24
## 3488 tour_idb0ibt8xm UNITED STATES OF AMERICA     45-64
## 3489 tour_idrwzniqvo                    ITALY     25-44
## 3490 tour_idi5v4j5hv                SWAZILAND     25-44
## 3491 tour_idhplet2mb UNITED STATES OF AMERICA     25-44
## 3492 tour_id7t5hay4l           UNITED KINGDOM     25-44
## 3493 tour_id9pop06de                    ITALY     45-64
## 3494 tour_idcwlpuats                  BURUNDI     18-24
## 3495 tour_idi7fjtf9u               BANGLADESH     25-44
## 3496 tour_ided6lsia1                    ITALY     25-44
## 3497 tour_idk8bveuuh UNITED STATES OF AMERICA     25-44
## 3498 tour_id33h4v0pr                  BELGIUM       65+
## 3499 tour_idwiu44rhg              NETHERLANDS     45-64
## 3500 tour_id20okcpzm                    INDIA     45-64
## 3501 tour_idpat3sbyi                      UAE     25-44
## 3502 tour_idxeydepjy                    ITALY     45-64
## 3503 tour_idk0wqelyg                    ITALY     25-44
## 3504 tour_idfd6gkdyb                    INDIA     25-44
## 3505 tour_id46urpfuw UNITED STATES OF AMERICA     18-24
## 3506 tour_iduxgmqe6g           UNITED KINGDOM     18-24
## 3508 tour_idzzis5mx0                AUSTRALIA       65+
## 3509 tour_idi71ep291                   FRANCE     18-24
## 3510 tour_idxw3wjcyo UNITED STATES OF AMERICA     45-64
## 3511 tour_iditldzxrj                   RWANDA     18-24
## 3512 tour_idpmbwh8h4           UNITED KINGDOM     45-64
## 3513 tour_id73fr2ypy                      UAE     25-44
## 3514 tour_id0u0861vg                  AUSTRIA     25-44
## 3515 tour_idfrprb7pi UNITED STATES OF AMERICA     45-64
## 3516 tour_idpdf9n9c7 UNITED STATES OF AMERICA     18-24
## 3517 tour_idg0yjaotb UNITED STATES OF AMERICA     25-44
## 3518 tour_idv6p41msi           UNITED KINGDOM     45-64
## 3519 tour_idfodtsov1                   CANADA     45-64
## 3520 tour_idis0ajhsp                    CHINA     25-44
## 3521 tour_idomp7db77                   ZAMBIA     25-44
## 3522 tour_idkkldilgh                    ITALY     45-64
## 3523 tour_idna9aeaxa                   FRANCE     45-64
## 3524 tour_ids7bt5se2           UNITED KINGDOM     45-64
## 3525 tour_id7buood5u                   CANADA     45-64
## 3526 tour_idk743je3h                   FRANCE     25-44
## 3527 tour_id0ondywi2                   ZAMBIA     25-44
## 3528 tour_idf9i2r3ko                   CANADA     25-44
## 3530 tour_idmrc4ois5           UNITED KINGDOM       65+
## 3531 tour_idvwffr53v              SAUD ARABIA     25-44
## 3532 tour_idbq66r3fz                    CHINA     45-64
## 3533 tour_idxl0imcn5                   FRANCE     25-44
## 3535 tour_id2svk4oyd UNITED STATES OF AMERICA     45-64
## 3536 tour_id7hdq749e UNITED STATES OF AMERICA     45-64
## 3537 tour_idpl2ypwq1                  AUSTRIA     45-64
## 3538 tour_idy0osq4e9                     OMAN     25-44
## 3539 tour_idvwt67frm UNITED STATES OF AMERICA       65+
## 3540 tour_id5tuwvbe3 UNITED STATES OF AMERICA       65+
## 3541 tour_id39u1uofj                  GERMANY     45-64
## 3542 tour_idkyjzf8n6                    ITALY     45-64
## 3543 tour_id1tgvj1u7             SOUTH AFRICA     25-44
## 3545 tour_id1ck8cp65                   UGANDA     25-44
## 3546 tour_id48ydm23v UNITED STATES OF AMERICA     45-64
## 3547 tour_id2kouhey1                   FRANCE     45-64
## 3548 tour_idovalvqrk             SOUTH AFRICA     45-64
## 3549 tour_id0jwoa5h1           UNITED KINGDOM     45-64
## 3550 tour_idflmuxcu9 UNITED STATES OF AMERICA     45-64
## 3551 tour_idd6su9yrl           UNITED KINGDOM     18-24
## 3552 tour_idg3l98as7                   CANADA     45-64
## 3553 tour_idfbbpjos9                  IRELAND     25-44
## 3554 tour_id7ea16ogn           UNITED KINGDOM     18-24
## 3555 tour_idmn3i0wkp                    ITALY     25-44
## 3556 tour_idmbay17mt                   UGANDA     25-44
## 3557 tour_iduof7a1d3                AUSTRALIA     25-44
## 3558 tour_id3uz9pdbo                    ITALY     45-64
## 3559 tour_idv9cfbte2             SOUTH AFRICA     45-64
## 3560 tour_id4tq66pof              NETHERLANDS     25-44
## 3561 tour_id6ubrd1qr                   FRANCE     25-44
## 3562 tour_idje7dgdyu                    KENYA     45-64
## 3563 tour_id14u099az                AUSTRALIA     25-44
## 3564 tour_idepbl6dcl                    ITALY     45-64
## 3566 tour_idrivot2ww             SOUTH AFRICA     25-44
## 3567 tour_id1o0si3g3 UNITED STATES OF AMERICA     25-44
## 3568 tour_idlx3m31aw                   SWEDEN     25-44
## 3570 tour_id19e0tvt8                   FRANCE     25-44
## 3573 tour_idtnqb6hg3 UNITED STATES OF AMERICA     45-64
## 3574 tour_idcwo6nwey               SWIZERLAND     25-44
## 3576 tour_id5n6py82l                   FRANCE     25-44
## 3577 tour_idgnrrvzac                 ZIMBABWE     25-44
## 3578 tour_ideffuyobw                  GERMANY       65+
## 3579 tour_idqcyobbes UNITED STATES OF AMERICA     45-64
## 3580 tour_id1759909r                 ZIMBABWE     25-44
## 3581 tour_id1dbuof6x           UNITED KINGDOM     25-44
## 3582 tour_iduqwp2l81 UNITED STATES OF AMERICA     18-24
## 3583 tour_id3cpihl3e                    INDIA     25-44
## 3584 tour_idnseb5to0                    CHINA     25-44
## 3585 tour_idc476yk95                  BELGIUM     45-64
## 3586 tour_idg1lpe8yd UNITED STATES OF AMERICA     45-64
## 3587 tour_idqlx8ea5t                    ITALY     25-44
## 3588 tour_id4xllrgim                  GERMANY     25-44
## 3589 tour_idab14yeir                   FRANCE     45-64
## 3591 tour_id8etq8zo8                    SPAIN     45-64
## 3592 tour_idgf89szbc                   FRANCE     25-44
## 3593 tour_id8h3dfd6r                   ZAMBIA     25-44
## 3594 tour_id7y3y7myw                    ITALY     25-44
## 3595 tour_id1f1rvzqq                  LEBANON     45-64
## 3596 tour_idplxsze77                    ITALY       65+
## 3597 tour_idbmuy8pw4                    ITALY     45-64
## 3598 tour_idhk4u0qsj                   CANADA     45-64
## 3599 tour_idz5o0d7s2                    SPAIN     45-64
## 3600 tour_id8stx9aq6                   CANADA       65+
## 3601 tour_idcx3l8n4j                    ITALY     45-64
## 3602 tour_idlygzmx2c             SOUTH AFRICA     45-64
## 3603 tour_idpkuu247m                   FRANCE     45-64
## 3605 tour_idipi9l3aw                    ITALY     45-64
## 3606 tour_idnvgxi5jb                    ITALY     18-24
## 3608 tour_id3roxkiuh                AUSTRALIA     25-44
## 3609 tour_idbsxf4ikk                   ZAMBIA     18-24
## 3610 tour_iddnihbj4i                    INDIA     25-44
## 3611 tour_id1kq8b25x UNITED STATES OF AMERICA       65+
## 3612 tour_id3zhdyfvj           UNITED KINGDOM       65+
## 3613 tour_id5vmgcr7n                  AUSTRIA     45-64
## 3614 tour_idny0vc4n3           UNITED KINGDOM     18-24
## 3615 tour_id6hmwgfq4 UNITED STATES OF AMERICA     45-64
## 3616 tour_idzgekbyas UNITED STATES OF AMERICA       65+
## 3617 tour_idlxsjx2lx                    ITALY     45-64
## 3618 tour_id4ury33mc                AUSTRALIA     45-64
## 3619 tour_idirywr43i                    INDIA     25-44
## 3620 tour_id514ia4yq                    GHANA     25-44
## 3621 tour_idmv3opu5e                  GERMANY     25-44
## 3622 tour_id08aakccy                  GERMANY     45-64
## 3623 tour_idryxbgece                  BURUNDI     18-24
## 3624 tour_idz9qc5rhx           UNITED KINGDOM     18-24
## 3625 tour_id11u81wiz UNITED STATES OF AMERICA       65+
## 3626 tour_id16hsycb1                   FRANCE     25-44
## 3627 tour_idr4anx6ix                   FRANCE     25-44
## 3628 tour_iddy815yos                   UGANDA     25-44
## 3629 tour_idb4z3knry               SWIZERLAND     18-24
## 3630 tour_idgrrubvfk                  GERMANY     25-44
## 3632 tour_idb900o2ct                    SPAIN     45-64
## 3633 tour_idq1byn5k1                    KENYA     18-24
## 3634 tour_idg1h0gsem                  GERMANY     25-44
## 3635 tour_id389o0204              NETHERLANDS     25-44
## 3636 tour_idzaqubhq6                   CANADA     25-44
## 3637 tour_idh6urnqmg UNITED STATES OF AMERICA     25-44
## 3638 tour_idqr0g5mq4                 ZIMBABWE     25-44
## 3639 tour_idpwou5c1r                    JAPAN     25-44
## 3640 tour_idy32d06k9             SOUTH AFRICA     45-64
## 3641 tour_idqpwb7mqf           UNITED KINGDOM     25-44
## 3642 tour_iddfxhbeod                    KENYA     45-64
## 3643 tour_idi7iruqrb                    KENYA     45-64
## 3644 tour_idkjd3nqqq                 ZIMBABWE     25-44
## 3645 tour_idfqnp3df9                    INDIA     45-64
## 3646 tour_idhx6g6g8x                    INDIA     18-24
## 3647 tour_idiey4n7b2             SOUTH AFRICA     45-64
## 3648 tour_id8f9na6rd                  GERMANY     25-44
## 3649 tour_ide04w2ztz                 MALAYSIA     25-44
## 3651 tour_idbu3w1h27                   CANADA     45-64
## 3652 tour_idfbxxwhl5 UNITED STATES OF AMERICA       65+
## 3653 tour_idkfbiq0b2             SOUTH AFRICA     25-44
## 3654 tour_idnbeuox8h                  GERMANY     45-64
## 3655 tour_idrks1z03j                    SPAIN     25-44
## 3656 tour_idua9tcz6m                   FRANCE     25-44
## 3657 tour_idtfij7q25           UNITED KINGDOM     25-44
## 3658 tour_idqtnz2t14             SOUTH AFRICA     25-44
## 3659 tour_idf81sj862           UNITED KINGDOM     45-64
## 3660 tour_idxrswxp58                SRI LANKA       65+
## 3661 tour_idev2xtakq           UNITED KINGDOM     45-64
## 3662 tour_idz1hztxs2                   NORWAY     45-64
## 3663 tour_idtk3tsdwa                  IRELAND       <18
## 3664 tour_idxbzzohzm                   ZAMBIA     25-44
## 3665 tour_idx20fkddu                  URUGUAY     18-24
## 3666 tour_idc2qtp1kv                AUSTRALIA     45-64
## 3667 tour_idq97d135s UNITED STATES OF AMERICA       65+
## 3668 tour_idygmen4nt             SOUTH AFRICA     45-64
## 3669 tour_idk0ktbzav                   FRANCE     25-44
## 3671 tour_idsvzilot1               SWIZERLAND       65+
## 3672 tour_ido5op046t                    SPAIN     25-44
## 3673 tour_idjyq1w5el             SOUTH AFRICA     25-44
## 3675 tour_idtncnf74w                    KENYA     25-44
## 3676 tour_idttbpfcii                   NORWAY     25-44
## 3677 tour_idpq99na22           UNITED KINGDOM     25-44
## 3678 tour_id7s5tpujx     UNITED ARAB EMIRATES     18-24
## 3679 tour_ida4oeft5y                    SPAIN     45-64
## 3680 tour_idjzp5zcb3 UNITED STATES OF AMERICA     45-64
## 3681 tour_id20cswf5m UNITED STATES OF AMERICA     18-24
## 3682 tour_id1r1yaimc                    SPAIN     25-44
## 3683 tour_id19yoeuzm                   NORWAY     45-64
## 3684 tour_idpqw55xnz             SOUTH AFRICA     25-44
## 3685 tour_idz5yzpnqo                  BELGIUM     25-44
## 3686 tour_id8h9c4j7d                     MALT     45-64
## 3687 tour_idb2vncmw5 UNITED STATES OF AMERICA       65+
## 3688 tour_idenvrubws                   UGANDA     25-44
## 3689 tour_idorj1ihxe UNITED STATES OF AMERICA     45-64
## 3690 tour_id4n3wf5dc                    ITALY     25-44
## 3691 tour_idofef27iz                   CANADA     45-64
## 3692 tour_idyolusxkg             SOUTH AFRICA     45-64
## 3693 tour_idzr7iu8e0 UNITED STATES OF AMERICA       65+
## 3694 tour_idez11lafp                    KENYA     25-44
## 3695 tour_id8qowzxfc                  GERMANY       65+
## 3696 tour_id80vvsqet                    ITALY     25-44
## 3697 tour_id7ykw68m0                   FRANCE     25-44
## 3698 tour_idunl2r0e2                  AUSTRIA     45-64
## 3699 tour_id81k54ftz                AUSTRALIA     45-64
## 3700 tour_idvn6jrco0                    CHINA     45-64
## 3701 tour_id1ltqfi1m           UNITED KINGDOM     45-64
## 3702 tour_idopeqedp0                  IRELAND     45-64
## 3703 tour_id4cwxgz20              NEW ZEALAND     25-44
## 3704 tour_id2jq17een                   CANADA     25-44
## 3705 tour_idg27xi5iy                 BOTSWANA     45-64
## 3706 tour_ids7v0et02                  IRELAND     25-44
## 3707 tour_id0k51w0va UNITED STATES OF AMERICA     25-44
## 3708 tour_idc3ybr7mn                   CANADA     45-64
## 3709 tour_id7dyai7ix                 ETHIOPIA     45-64
## 3710 tour_idfd35trfc                    ITALY     45-64
## 3711 tour_id2vsvd60b                   FRANCE     45-64
## 3712 tour_idwwoclpha           UNITED KINGDOM     45-64
## 3713 tour_id8w5k5ky2                    KENYA     25-44
## 3714 tour_idv2irnx9u                    KENYA     45-64
## 3715 tour_id7disr2ub                   ZAMBIA     45-64
## 3716 tour_ide9hvjr1j           UNITED KINGDOM     25-44
## 3717 tour_idruhjezgl                    ITALY     25-44
## 3718 tour_idedz5hlxn                    INDIA     18-24
## 3719 tour_idcfe5gsn5                    INDIA     45-64
## 3720 tour_id0m5t4q5v UNITED STATES OF AMERICA     25-44
## 3721 tour_idf2arb652                 ZIMBABWE     25-44
## 3722 tour_id1w9ed0qq           UNITED KINGDOM     18-24
## 3723 tour_idxktciz32                    ITALY     45-64
## 3724 tour_idxptye6zg           UNITED KINGDOM     18-24
## 3725 tour_id6tmwiomt                AUSTRALIA     25-44
## 3726 tour_idk8hzn9ig                    ITALY     25-44
## 3727 tour_idjxkp7ipc           UNITED KINGDOM     25-44
## 3728 tour_iddnxjk630                AUSTRALIA     45-64
## 3729 tour_idkbug3ib9                   UGANDA     25-44
## 3730 tour_id804lmzh1                   FRANCE     45-64
## 3731 tour_id50p9jsb3              NETHERLANDS     25-44
## 3732 tour_id150k4jr4               MOZAMBIQUE     25-44
## 3733 tour_idajorpnv7           UNITED KINGDOM     25-44
## 3734 tour_idvuzfdjv6                   UGANDA     25-44
## 3735 tour_idxil1mwda                    SPAIN     18-24
## 3736 tour_id2xg32ohh           UNITED KINGDOM     45-64
## 3737 tour_id6az2a7qg                AUSTRALIA     45-64
## 3738 tour_id92mc8jne                 MALAYSIA     25-44
## 3739 tour_idl7yrvo83                    ITALY     18-24
## 3740 tour_idruzr18nw UNITED STATES OF AMERICA     25-44
## 3741 tour_ido17dm9n9                   COMORO     25-44
## 3742 tour_idw7cg2tfd                AUSTRALIA     45-64
## 3743 tour_idv0joj31z                   FRANCE     25-44
## 3744 tour_idh0ivk1wt             SOUTH AFRICA     25-44
## 3745 tour_idbs6aqlyn           UNITED KINGDOM     25-44
## 3746 tour_id0mjfklrz                   FRANCE     45-64
## 3747 tour_idxysnr6c9                  GERMANY     18-24
## 3748 tour_idam87o1lm           CZECH REPUBLIC     25-44
## 3749 tour_idgj73jo9m                AUSTRALIA     45-64
## 3750 tour_idob1izu51           UNITED KINGDOM     45-64
## 3751 tour_idfpqt3aap                  GERMANY     18-24
## 3752 tour_idyxnrgwdx                AUSTRALIA     45-64
## 3753 tour_idfqdtzl2e                  BURUNDI     25-44
## 3754 tour_idp8yc7ilt                    ITALY     25-44
## 3755 tour_id5e2sdlwz UNITED STATES OF AMERICA     45-64
## 3756 tour_idxgzum7v2                   CANADA     45-64
## 3757 tour_idgkvvs54k                   UGANDA     25-44
## 3758 tour_id90j178ri                   NORWAY     45-64
## 3759 tour_idsb1rrx8y                AUSTRALIA     45-64
## 3760 tour_idhf3fgwd7               MOZAMBIQUE     25-44
## 3761 tour_id64sanyau                   UGANDA     25-44
## 3762 tour_idwjric8v2                  GERMANY     25-44
## 3763 tour_idlmrjztca                   SWEDEN     18-24
## 3764 tour_iduj66olc4                  GERMANY     25-44
## 3765 tour_iddhb9567z             SOUTH AFRICA     25-44
## 3766 tour_idfpuzugfk                 ZIMBABWE     25-44
## 3767 tour_idw6xyvjva                AUSTRALIA     25-44
## 3769 tour_idhhqyfoev                   CANADA     25-44
## 3770 tour_idh8lsiru5                  GERMANY     45-64
## 3771 tour_iduk24j86d                  GERMANY       65+
## 3772 tour_id1icpddsh                    JAPAN     25-44
## 3773 tour_id4e356g86 UNITED STATES OF AMERICA     45-64
## 3774 tour_idh4vt77xc                   FRANCE     45-64
## 3775 tour_idc7tng0vr           UNITED KINGDOM     25-44
## 3776 tour_idayc73gfn                   CANADA     45-64
## 3777 tour_idjji4t4qa                  BURUNDI     25-44
## 3778 tour_id91id2lt2                    CONGO     25-44
## 3779 tour_id0ynj6dd7              NETHERLANDS     25-44
## 3780 tour_idl8mwg466                    ITALY     25-44
## 3781 tour_id8y6b0moc                    CHINA     18-24
## 3782 tour_idsq6ksae8                    GHANA     25-44
## 3783 tour_ids1ccty58           UNITED KINGDOM     25-44
## 3785 tour_iduw1f04l7 UNITED STATES OF AMERICA     45-64
## 3786 tour_idv6fkt2hg           UNITED KINGDOM     18-24
## 3787 tour_idmsdxwsyl                   RWANDA     18-24
## 3788 tour_id6eok7zm1 UNITED STATES OF AMERICA       65+
## 3789 tour_ide0244ab5           UNITED KINGDOM     45-64
## 3790 tour_idqlwku163                  BELGIUM     18-24
## 3791 tour_id55ijhmbx                  GERMANY     25-44
## 3792 tour_id1d32mufl UNITED STATES OF AMERICA     25-44
## 3793 tour_idmqd3ivpo                      UAE     45-64
## 3794 tour_idd40th36x                    CHINA     45-64
## 3795 tour_id405fnc24                   ZAMBIA     45-64
## 3796 tour_idxsjin5o9                   ZAMBIA     45-64
## 3797 tour_idmn9g86nq                    ITALY     25-44
## 3798 tour_id5h570vhy                   FRANCE     18-24
## 3799 tour_idxixyiz3v                AUSTRALIA     25-44
## 3800 tour_idmhp70l6e                  DENMARK     25-44
## 3801 tour_idx3vlgl6q UNITED STATES OF AMERICA       65+
## 3802 tour_idlx9sl9rk           UNITED KINGDOM     45-64
## 3803 tour_idfo02nucl                   FRANCE     25-44
## 3805 tour_idt4lpum5w                  BELGIUM     25-44
## 3806 tour_idl2j4u3uk                   ZAMBIA     25-44
## 3807 tour_idvyzu5747                    INDIA     25-44
## 3808 tour_idjxn0qgbx                    ITALY     45-64
## 3809 tour_idhoo2z6q4 UNITED STATES OF AMERICA     25-44
## 3810 tour_idn26v1l5w                  BURUNDI     25-44
## 3811 tour_id1gghytnm           CZECH REPUBLIC     25-44
## 3812 tour_idb8cxjd0t           UNITED KINGDOM     18-24
## 3813 tour_id83ohfe6n                LITHUANIA     25-44
## 3814 tour_idsdeg98mu           UNITED KINGDOM     25-44
## 3815 tour_idzvn0qznu                    ITALY     25-44
## 3816 tour_idrnz69cbu UNITED STATES OF AMERICA     45-64
## 3817 tour_id9nnir6wq                    KOREA     45-64
## 3818 tour_id2qyu5zu0                  GERMANY     45-64
## 3819 tour_idof6fuf5f                   ZAMBIA     25-44
## 3820 tour_idfrfq22vn                   CANADA     18-24
## 3821 tour_idwwtf7z2l           UNITED KINGDOM     18-24
## 3822 tour_id6m70f6eq           UNITED KINGDOM     18-24
## 3823 tour_idqviotlkd                  GERMANY     45-64
## 3824 tour_id1k61uug8                    INDIA     45-64
## 3825 tour_ida1x8o52b                    KENYA       65+
## 3826 tour_ids33sl8gu                   FRANCE     25-44
## 3827 tour_idhb3w8hnl                    ITALY     25-44
## 3828 tour_idcl72kcdr             SOUTH AFRICA     25-44
## 3829 tour_idyzf4d2yf UNITED STATES OF AMERICA     45-64
## 3830 tour_id0rx2u7fo                   UGANDA     25-44
## 3831 tour_idghl4j7vb                   FRANCE     25-44
## 3832 tour_id78ap58kb                    ITALY     25-44
## 3833 tour_idvvs01qbe                  GERMANY     45-64
## 3834 tour_idoxcwrcm4 UNITED STATES OF AMERICA     45-64
## 3835 tour_idlgyxs670 UNITED STATES OF AMERICA       65+
## 3836 tour_idhtsi0is4                    ITALY     25-44
## 3837 tour_idqm9tv7uc                    INDIA     45-64
## 3838 tour_idklye61z5 UNITED STATES OF AMERICA     25-44
## 3839 tour_idacxr9igz                   UGANDA     25-44
## 3840 tour_idpxzf45g1                  BELGIUM     45-64
## 3841 tour_idieedvepj                 ZIMBABWE     25-44
## 3842 tour_id1zvse85e                SINGAPORE     25-44
## 3843 tour_id2wt01nmu UNITED STATES OF AMERICA     45-64
## 3844 tour_idr6xzkxfk           UNITED KINGDOM     25-44
## 3845 tour_id4r5a0k2h                    INDIA     25-44
## 3847 tour_id8ki1sfg8                AUSTRALIA     18-24
## 3848 tour_idcvzw4g01                  GERMANY     45-64
## 3849 tour_ide2irl4g1                  GERMANY     25-44
## 3850 tour_idk5nnx1ns                   ZAMBIA     25-44
## 3851 tour_idtmakchus                    KENYA     45-64
## 3852 tour_idnspoxh01           UNITED KINGDOM     18-24
## 3853 tour_idqa6uy264                   MEXICO     25-44
## 3855 tour_idd86sb550                    ITALY     25-44
## 3856 tour_iddsp4jr9v                   JORDAN     25-44
## 3857 tour_idlj6gqqci                 ZIMBABWE     25-44
## 3858 tour_id3sq6hast           UNITED KINGDOM     25-44
## 3859 tour_iddo9xf9zt                   RUSSIA     25-44
## 3860 tour_idjiuz4b22                    SPAIN     25-44
## 3863 tour_id5592aetb               LUXEMBOURG     25-44
## 3864 tour_idb4cfnb77                    INDIA     25-44
## 3865 tour_idcnmebdik                  BELGIUM     25-44
## 3866 tour_ida2p7ozab                   ZAMBIA     25-44
## 3867 tour_idd3pqfs92                   NORWAY     18-24
## 3868 tour_idzrcjfgkv                   SWEDEN     25-44
## 3869 tour_idcaxmy2x6                   ZAMBIA     25-44
## 3870 tour_idwegpsjhv                    ITALY     25-44
## 3871 tour_idohktewdp                   FRANCE     25-44
## 3872 tour_idr712dv4a                 ZIMBABWE     25-44
## 3873 tour_iduuounrlo           UNITED KINGDOM     18-24
## 3874 tour_idud5u35hq                   NORWAY       65+
## 3875 tour_ida7kjvsfr                  AUSTRIA     18-24
## 3876 tour_idix922lqs                   UGANDA     25-44
## 3877 tour_id8t46w5dn                    ITALY     45-64
## 3878 tour_idrcdxunzq                  BURUNDI     18-24
## 3879 tour_id9qln6r4m UNITED STATES OF AMERICA     18-24
## 3880 tour_idjjput3fy                    KOREA     25-44
## 3882 tour_id1cajz02r           UNITED KINGDOM     45-64
## 3883 tour_idwpv826qo                    INDIA     25-44
## 3884 tour_idzloklhcb UNITED STATES OF AMERICA       65+
## 3885 tour_idip5hm855 UNITED STATES OF AMERICA     25-44
## 3886 tour_id1x22gslz                  BELGIUM     25-44
## 3887 tour_idnzqar04t                   ZAMBIA     25-44
## 3888 tour_idbg4we2df                  DENMARK     18-24
## 3889 tour_idukgh8chh UNITED STATES OF AMERICA     25-44
## 3891 tour_id8hm6hyek                   CANADA       65+
## 3892 tour_idcqqrlzw6                    SPAIN     25-44
## 3893 tour_id7wqgnxho           UNITED KINGDOM     18-24
## 3894 tour_idf0n7hrmb                   SWEDEN     25-44
## 3895 tour_id10j6fuws           UNITED KINGDOM     25-44
## 3896 tour_idymzp746z                   FRANCE     25-44
## 3897 tour_id1re6g3bh           UNITED KINGDOM     25-44
## 3898 tour_idjqc9ec1i           UNITED KINGDOM       65+
## 3900 tour_id63p782ok                    KENYA     45-64
## 3901 tour_idykp4z1mv           UNITED KINGDOM     25-44
## 3902 tour_id53k7f8u3                      UAE     45-64
## 3903 tour_ido5pwh25e                  GERMANY     25-44
## 3905 tour_id3h1q5l95           UNITED KINGDOM     25-44
## 3906 tour_id45v3y64m                AUSTRALIA     25-44
## 3907 tour_id75anxr50             SOUTH AFRICA     45-64
## 3908 tour_id584fr4x3           UNITED KINGDOM     45-64
## 3909 tour_idddmkh6xu                      DRC     25-44
## 3910 tour_idzj12cjc1           UNITED KINGDOM     25-44
## 3911 tour_id9fcryrno                    KENYA     45-64
## 3912 tour_idbb5vq3cs                   ZAMBIA     25-44
## 3913 tour_idu45di0ax           UNITED KINGDOM     25-44
## 3914 tour_iddiwkr9ay                   ZAMBIA     25-44
## 3915 tour_idy9aio9ft UNITED STATES OF AMERICA     45-64
## 3916 tour_idj6ll9gh5                 ZIMBABWE     25-44
## 3917 tour_id20mwgtye                    SPAIN     25-44
## 3918 tour_idcg79rld2                    KOREA     45-64
## 3919 tour_idt39caaf7                   ZAMBIA     25-44
## 3920 tour_idoiqtas7f                   ZAMBIA     25-44
## 3921 tour_id7ohp40up                    ITALY     25-44
## 3922 tour_idc6mx3fjf UNITED STATES OF AMERICA       65+
## 3923 tour_idl6gasu9s                    ITALY     25-44
## 3924 tour_idpf1qc6e7                  BURUNDI     18-24
## 3925 tour_id7ey4c0kf                  BELGIUM     18-24
## 3926 tour_id5e3zkdnw           UNITED KINGDOM     25-44
## 3927 tour_ido95ulnt8                 ZIMBABWE     25-44
## 3928 tour_idl0z2sfe4                 ZIMBABWE     25-44
## 3929 tour_idp98oohjc UNITED STATES OF AMERICA       65+
## 3930 tour_idstg1e3as                AUSTRALIA     45-64
## 3931 tour_idujqadaly                AUSTRALIA     45-64
## 3932 tour_idh2r9id5x             SOUTH AFRICA     25-44
## 3934 tour_idbm1xspy3                    KENYA     25-44
## 3935 tour_idqpekwyvd                    JAPAN     25-44
## 3936 tour_idphmsvcrf                   FRANCE     25-44
## 3937 tour_idvm0ygixp                    SPAIN     25-44
## 3938 tour_idgrjzzu1z                   FRANCE     25-44
## 3939 tour_idf6euqbda UNITED STATES OF AMERICA     25-44
## 3940 tour_idkampcsmu UNITED STATES OF AMERICA     45-64
## 3941 tour_idi57e82z7                   UGANDA     25-44
## 3942 tour_idgckleqto                   CANADA     45-64
## 3943 tour_ido17fkmbb                    CONGO     18-24
## 3944 tour_id6np7s17b                    KENYA     45-64
## 3945 tour_idz104pb2b                 ZIMBABWE     25-44
## 3946 tour_idrwoa8tjx           UNITED KINGDOM     25-44
## 3947 tour_ida3r02pbs                AUSTRALIA       65+
## 3948 tour_idsp72zguc UNITED STATES OF AMERICA     45-64
## 3949 tour_id964rpwh5                 ZIMBABWE     25-44
## 3951 tour_id93pdvm0h                 ZIMBABWE     45-64
## 3952 tour_id7a0ynkhe                    CHINA     25-44
## 3953 tour_id6e0on5hn                     OMAN     25-44
## 3954 tour_idqflf8l5i                   SWEDEN       65+
## 3955 tour_id3g7q7pxm                    ITALY     25-44
## 3956 tour_idcf54m30v                   SOMALI     25-44
## 3957 tour_idxy43prz5                  DENMARK     25-44
## 3958 tour_id9u0t2340                    SPAIN     25-44
## 3959 tour_idp371tm7g UNITED STATES OF AMERICA     45-64
## 3960 tour_id8onl8o00                   FRANCE     25-44
## 3961 tour_id7l9elrnm UNITED STATES OF AMERICA     45-64
## 3963 tour_idqazzbdnn                   FRANCE     18-24
## 3964 tour_idoyalcwp4                   FRANCE     25-44
## 3966 tour_idkf5qy47n           UNITED KINGDOM     25-44
## 3967 tour_idrzmltduj               SWIZERLAND     25-44
## 3969 tour_id3legrbmr                    SPAIN     45-64
## 3970 tour_idxw9m3mjz UNITED STATES OF AMERICA     45-64
## 3971 tour_id6g4cgyum                  BURUNDI     18-24
## 3972 tour_idl6b7h5k2                   ZAMBIA     25-44
## 3973 tour_id0c3ruc50                   ZAMBIA     25-44
## 3974 tour_id8c56n2h9                      UAE     25-44
## 3975 tour_idsor07kvo                    KENYA       65+
## 3976 tour_idbrwftz87 UNITED STATES OF AMERICA     45-64
## 3977 tour_idbuykouam UNITED STATES OF AMERICA     25-44
## 3978 tour_idb401buee                    ITALY     25-44
## 3979 tour_idf6xnmdq2 UNITED STATES OF AMERICA       65+
## 3980 tour_id6ft6qces           UNITED KINGDOM     25-44
## 3981 tour_iddqg1kf5m                    CHINA     18-24
## 3982 tour_id502641ir           UNITED KINGDOM     25-44
## 3983 tour_idiorrk4ox                   FRANCE     45-64
## 3984 tour_id8xt0lbod             SOUTH AFRICA     25-44
## 3985 tour_idqgv1kgrm                   ZAMBIA     25-44
## 3986 tour_id36w93r5n             SOUTH AFRICA     25-44
## 3987 tour_idajftvbcw                  GERMANY     45-64
## 3988 tour_idt04bv1b6                   FRANCE     45-64
## 3989 tour_id868l0sox                    ITALY     25-44
## 3990 tour_idjll2oqsn                     OMAN     45-64
## 3991 tour_idu8gw173n                    ITALY     45-64
## 3992 tour_id88bok6im                AUSTRALIA     25-44
## 3993 tour_id1adc1038                   UGANDA     25-44
## 3994 tour_id7bthjnz6           UNITED KINGDOM     25-44
## 3995 tour_iddltjvbgs                  GERMANY     25-44
## 3996 tour_id67kc9ss6                  BURUNDI     25-44
## 3997 tour_id9zdf6xoo                   SWEDEN     25-44
## 3998 tour_id6kyzsxan                    ITALY     25-44
## 3999 tour_idhn83tcw8                   FRANCE       65+
## 4000 tour_idpl4l6ink                   POLAND     25-44
## 4001 tour_id0h6eiowt              NETHERLANDS     25-44
## 4002 tour_id5ip828kg                 ZIMBABWE     25-44
## 4003 tour_idpb0197tu UNITED STATES OF AMERICA     45-64
## 4004 tour_idpmmxb6k2                AUSTRALIA     45-64
## 4007 tour_id2ot50hpc               SWIZERLAND     45-64
## 4008 tour_id1mm6cbrs UNITED STATES OF AMERICA     25-44
## 4009 tour_idt8n6hkn3                    KENYA     25-44
## 4010 tour_idqyky7aib                 ETHIOPIA     25-44
## 4012 tour_idpgaitxnq                   UGANDA     18-24
## 4013 tour_idub0zkwk4           UNITED KINGDOM     18-24
## 4014 tour_id0io8frh1                  DENMARK     25-44
## 4015 tour_ideal6wj3u UNITED STATES OF AMERICA     25-44
## 4016 tour_idmlw51hc6                   SWEDEN     25-44
## 4017 tour_id83giz2xe           UNITED KINGDOM     45-64
## 4018 tour_idp5673c1a                    INDIA     45-64
## 4019 tour_idr0q0d5uv                    KENYA     45-64
## 4020 tour_idt1yuqrzk                    SPAIN     45-64
## 4021 tour_id5gzk2oyg                    KENYA     25-44
## 4022 tour_idsr7gu7xx                   NORWAY     45-64
## 4023 tour_id7svv1ufy                    ITALY     25-44
## 4025 tour_idzjtarmpk                   UGANDA     18-24
## 4027 tour_idtxw543i9 UNITED STATES OF AMERICA     45-64
## 4028 tour_idumy9qcdt                   SERBIA     45-64
## 4029 tour_idxrtb0wjq                    JAPAN     45-64
## 4030 tour_id61q46ja3                    CHINA     25-44
## 4031 tour_idsd4m0jzj UNITED STATES OF AMERICA       65+
## 4032 tour_idgjl7d5vo UNITED STATES OF AMERICA     45-64
## 4033 tour_ideskdcrf1                  BURUNDI     25-44
## 4034 tour_idfx27uouj                    CHINA     18-24
## 4035 tour_idz6jgs2k7                    INDIA     25-44
## 4036 tour_idx5bwek1c           UNITED KINGDOM     45-64
## 4037 tour_idxfinl1cp                      UAE     45-64
## 4038 tour_id94dxq2qj                      UAE     25-44
## 4039 tour_idqdqeo9m4                   CANADA     18-24
## 4040 tour_id138xss1v UNITED STATES OF AMERICA     45-64
## 4041 tour_idfghuk348              NETHERLANDS     45-64
## 4042 tour_id0hbtypwh                AUSTRALIA     45-64
## 4043 tour_idpukf3g7h                    KENYA     25-44
## 4044 tour_idmz63fznt             SOUTH AFRICA     25-44
## 4045 tour_idlzw1roj1                    KENYA     25-44
## 4046 tour_idt2ugna9y                 ZIMBABWE     25-44
## 4047 tour_iddxpg2cea                   BRAZIL     25-44
## 4048 tour_id8pfd9km1                  GERMANY     45-64
## 4049 tour_id0pn2njje                 ZIMBABWE     25-44
## 4050 tour_id09xaivry             SOUTH AFRICA     25-44
## 4051 tour_idhpe9v4p7                    ITALY     25-44
## 4052 tour_idir3s7qln                    ITALY     25-44
## 4053 tour_idyiq16rl9                    INDIA     25-44
## 4054 tour_id500kus4z UNITED STATES OF AMERICA       65+
## 4055 tour_idid9m59oi                      DRC     25-44
## 4056 tour_id8uti6c35                 ZIMBABWE     25-44
## 4057 tour_idt5q79pvv     UNITED ARAB EMIRATES     25-44
## 4058 tour_idve8d1pt9                  DENMARK     25-44
## 4059 tour_idq9bxti6x                    CHINA     25-44
## 4060 tour_id0jn6oviu UNITED STATES OF AMERICA     25-44
## 4061 tour_idn2zmzaaj                  GERMANY     25-44
## 4062 tour_idw4t2kmdz UNITED STATES OF AMERICA     25-44
## 4063 tour_idxvg0f45i                AUSTRALIA     45-64
## 4064 tour_idr2nee2oy                  VIETNAM     45-64
## 4065 tour_id4mhy6r6a                    INDIA     25-44
## 4066 tour_idnmhwip32                    KENYA     25-44
## 4067 tour_idwyq56ird             SOUTH AFRICA     45-64
## 4068 tour_ideb1u6l2v                  GERMANY     45-64
## 4069 tour_idoqk3ro35                   CANADA     25-44
## 4070 tour_idzhe3uu2l             SOUTH AFRICA     45-64
## 4071 tour_idlnl1a2ps                   UGANDA     25-44
## 4072 tour_idc4qymh5o UNITED STATES OF AMERICA     18-24
## 4073 tour_id02uzidx3                  BELGIUM     25-44
## 4075 tour_idxqb334cx           UNITED KINGDOM     25-44
## 4076 tour_id7gskwww4                    ITALY     25-44
## 4077 tour_idleczejxz                 ZIMBABWE     25-44
## 4078 tour_idppty9l9e                   UGANDA     25-44
## 4079 tour_idpvzs8e90                  BURUNDI     25-44
## 4080 tour_id4ka0d7sg                  GERMANY     45-64
## 4081 tour_idwthcfnki               SWIZERLAND     25-44
## 4082 tour_idqma108p7                AUSTRALIA       65+
## 4083 tour_idvpfl2ftd UNITED STATES OF AMERICA     45-64
## 4084 tour_idg06pt4bx                  GERMANY     45-64
## 4085 tour_idw757han4                   FRANCE       65+
## 4086 tour_idrdy07h4k                    KENYA     25-44
## 4088 tour_idpqn067sn           UNITED KINGDOM     18-24
## 4089 tour_idoirkn7qn                    ITALY     45-64
## 4090 tour_id2iuv9vp4                   ZAMBIA     25-44
## 4091 tour_idq58nisjq                    SPAIN     25-44
## 4092 tour_idja5qxjzr                  GERMANY     45-64
## 4093 tour_ide94zmz6e UNITED STATES OF AMERICA       65+
## 4094 tour_idqkkk1ur4                   CANADA     45-64
## 4095 tour_idli4rtrjn UNITED STATES OF AMERICA     45-64
## 4096 tour_id3pcy51yu                    ITALY     25-44
## 4097 tour_id0msidfm9                    CONGO     18-24
## 4098 tour_idl11nvx5o                AUSTRALIA     45-64
## 4099 tour_id41sh980v UNITED STATES OF AMERICA     25-44
## 4100 tour_id8rt7xdw7                    KENYA     25-44
## 4102 tour_ider4sv9vq                 ZIMBABWE     25-44
## 4103 tour_idvkxl4vh7           UNITED KINGDOM     25-44
## 4104 tour_id1bu5dlyg                    ITALY     45-64
## 4105 tour_idhr1z6v29 UNITED STATES OF AMERICA     25-44
## 4106 tour_idjzrohhwo UNITED STATES OF AMERICA       65+
## 4107 tour_id9wcewx7c           UNITED KINGDOM     25-44
## 4108 tour_idbz5zaayk                    CHINA     18-24
## 4109 tour_idsgzqthf5             SOUTH AFRICA     25-44
## 4111 tour_idjo7oc3io UNITED STATES OF AMERICA       65+
## 4112 tour_idpnkfthbd                    ITALY     25-44
## 4113 tour_idsbtjonsy                   FRANCE     18-24
## 4114 tour_id91idyi68 UNITED STATES OF AMERICA     25-44
## 4115 tour_idshffgsmf                    KENYA     18-24
## 4116 tour_idmb22w9hf             SOUTH AFRICA     45-64
## 4117 tour_id6bd35k23                  GERMANY     25-44
## 4118 tour_idgdr5olb9                    JAPAN     25-44
## 4119 tour_id1hl9w50y                 ZIMBABWE     25-44
## 4120 tour_idfmcgad1i                AUSTRALIA       65+
## 4122 tour_idjsl5z1ol                   CANADA     18-24
## 4123 tour_id3juzwlql              NEW ZEALAND     18-24
## 4124 tour_idlvwq23r6                  GERMANY     18-24
## 4125 tour_id1rkjef98                 ZIMBABWE     25-44
## 4126 tour_idix28ftwp UNITED STATES OF AMERICA       65+
## 4127 tour_idzp1jfmse                    INDIA     45-64
## 4128 tour_idn88ntxaz                    ITALY     45-64
## 4129 tour_id26mh16rt                    KENYA     45-64
## 4130 tour_idufb37yt5                  GERMANY     18-24
## 4131 tour_idszcdnslh                  GERMANY     18-24
## 4132 tour_idffbujjna                 SCOTLAND     18-24
## 4133 tour_idecbgkx68           UNITED KINGDOM     45-64
## 4134 tour_idvsu96cgd                    KENYA     45-64
## 4135 tour_idqu3tkd4t                   FRANCE     25-44
## 4136 tour_idcno04dkc UNITED STATES OF AMERICA     25-44
## 4137 tour_idb3wkgwqq                AUSTRALIA     45-64
## 4138 tour_iddvk766og                   FRANCE     25-44
## 4139 tour_ids28mxgna                    INDIA     25-44
## 4140 tour_idxpcv583q                  MORROCO     45-64
## 4141 tour_id5l9brqn7                    KENYA     25-44
## 4142 tour_id6fwoqcra             SOUTH AFRICA     45-64
## 4143 tour_idif3cbdvh                SINGAPORE     25-44
## 4144 tour_idfjwwit7x                   RUSSIA     25-44
## 4145 tour_idyqqmkeqd                   ZAMBIA     25-44
## 4146 tour_id95ubuodh                   CANADA     25-44
## 4147 tour_id4dongtij                AUSTRALIA     25-44
## 4148 tour_idwpsgyjro                   ZAMBIA     25-44
## 4149 tour_idokya81c4                    KENYA     45-64
## 4150 tour_idl1ojyp6m                LITHUANIA     25-44
## 4151 tour_idt3sz5aga                   FRANCE     25-44
## 4152 tour_id3ilh1hcs UNITED STATES OF AMERICA     25-44
## 4153 tour_id05mg0ri2                 ZIMBABWE     25-44
## 4154 tour_id3utv1js1           UNITED KINGDOM     25-44
## 4155 tour_id40kcvvp9                  GERMANY       65+
## 4156 tour_idyeze0lha                   ISRAEL     25-44
## 4157 tour_idlz0ia52t UNITED STATES OF AMERICA     45-64
## 4159 tour_idfw7v31yq                   FRANCE     25-44
## 4160 tour_id106xjd70                    INDIA     45-64
## 4161 tour_id2hbbjke2                    SPAIN     25-44
## 4162 tour_id31je7nvb             SOUTH AFRICA     25-44
## 4163 tour_idteqsrg5p                   MALAWI     25-44
## 4164 tour_iddahkajhm UNITED STATES OF AMERICA     45-64
## 4165 tour_idv8q9jkdw           UNITED KINGDOM     18-24
## 4166 tour_id78t3v901           UNITED KINGDOM     25-44
## 4167 tour_id1c7w15fw                   ZAMBIA     45-64
## 4168 tour_idze0g8yve                    INDIA     45-64
## 4169 tour_idchpgkv94                   FRANCE     25-44
## 4170 tour_id3pre4rs0                   CANADA     45-64
## 4171 tour_idl4ck3aet                   CANADA     45-64
## 4172 tour_idxam0jyia                   UGANDA     18-24
## 4173 tour_id6h9seay5 UNITED STATES OF AMERICA     45-64
## 4174 tour_id3ao6yqmw                   SWEDEN     45-64
## 4175 tour_idkq6gn0wu                   UGANDA     45-64
## 4176 tour_idgos22rtq             SOUTH AFRICA     45-64
## 4177 tour_id644hxekg              NETHERLANDS     45-64
## 4178 tour_idgfd6bu4z                    KENYA     45-64
## 4179 tour_idmqd7o6ju UNITED STATES OF AMERICA     45-64
## 4180 tour_idbmkl9bcx               SWIZERLAND     45-64
## 4181 tour_idjfwlym1v                    KENYA     25-44
## 4182 tour_idlsyx7g7d                   CANADA       65+
## 4183 tour_idy98k5tpd                    KENYA     25-44
## 4184 tour_id9l0vtk3u                   FRANCE     25-44
## 4185 tour_id7e2dt4es UNITED STATES OF AMERICA       65+
## 4186 tour_idxw9z8bfj UNITED STATES OF AMERICA     25-44
## 4187 tour_idtszovf41           CZECH REPUBLIC     25-44
## 4188 tour_id1nzbcrcd           UNITED KINGDOM     18-24
## 4189 tour_id206a93zr UNITED STATES OF AMERICA     45-64
## 4190 tour_id3byp341b                 SCOTLAND     25-44
## 4191 tour_idnrt5quui                   ZAMBIA     25-44
## 4192 tour_ide1059e4g           UNITED KINGDOM       <18
## 4193 tour_id91jdmr19 UNITED STATES OF AMERICA     45-64
## 4194 tour_idhi0y04hz                    INDIA     45-64
## 4195 tour_idjvjbhvcv                  GERMANY     25-44
## 4196 tour_idijui1dqp                  GERMANY     45-64
## 4197 tour_idp8810w20                    SPAIN     45-64
## 4198 tour_idsa20t7eb                    SPAIN     25-44
## 4199 tour_idtfyjf1q2 UNITED STATES OF AMERICA     25-44
## 4200 tour_iddqr0fong                  GERMANY     45-64
## 4201 tour_id0quwv8lv                  DENMARK     25-44
## 4202 tour_iddvncopxs                    ITALY     25-44
## 4203 tour_idp1n18gxu           UNITED KINGDOM     25-44
## 4204 tour_id88j343a6              NETHERLANDS     25-44
## 4205 tour_idil3ol9f3                    ITALY     25-44
## 4206 tour_idyok2nz61                    ITALY     25-44
## 4207 tour_idswgp0t0t           UNITED KINGDOM     25-44
## 4208 tour_idyb28o8ko UNITED STATES OF AMERICA     25-44
## 4209 tour_id5jkw7lbn                   RWANDA     18-24
## 4210 tour_id39jrnd2c                    ITALY     25-44
## 4211 tour_idym6kiy47                    JAPAN     25-44
## 4212 tour_idyiv7d9zz                    ITALY     25-44
## 4213 tour_idllimxc54                    KOREA     25-44
## 4214 tour_idcmgxf1ur                   CANADA     25-44
## 4215 tour_idxu2ovby4                    ITALY     25-44
## 4216 tour_id2mw89fpy                  GERMANY     25-44
## 4218 tour_idmc5n9jp1                  BURUNDI     18-24
## 4219 tour_id1br81q4y                AUSTRALIA     45-64
## 4220 tour_id2dlhsegg                    CHINA     45-64
## 4221 tour_idk3a41gl2                AUSTRALIA     25-44
## 4222 tour_idpos2y97a                  BELGIUM     18-24
## 4223 tour_id5rafz2o9 UNITED STATES OF AMERICA     25-44
## 4224 tour_idx9qv87ax                   FRANCE     25-44
## 4225 tour_ide1sqzdpd UNITED STATES OF AMERICA       65+
## 4226 tour_idgpkgh2hp              NETHERLANDS     25-44
## 4227 tour_idyqx6eka0               SWIZERLAND     25-44
## 4228 tour_id7ale36r2           UNITED KINGDOM     25-44
## 4229 tour_idqiwli6hc           UNITED KINGDOM     45-64
## 4230 tour_iduz7k0x7b                  IRELAND     25-44
## 4231 tour_idovjbj3ob                  BELGIUM     25-44
## 4232 tour_id78a75zjq           UNITED KINGDOM     18-24
## 4233 tour_id6bbvyyyf                    SPAIN     25-44
## 4234 tour_idowt5kkuz                   FRANCE     18-24
## 4235 tour_id7ouasi8t                    SUDAN     25-44
## 4236 tour_idnkculipt                   CANADA     45-64
## 4238 tour_idk8emg590                      UAE     18-24
## 4239 tour_idi95ialve                   SWEDEN     25-44
## 4240 tour_idq7hb47xc                   UGANDA     25-44
## 4241 tour_idrvnmmv3l           UNITED KINGDOM     25-44
## 4242 tour_idztri0ebz           UNITED KINGDOM     45-64
## 4243 tour_id425gih7x                    ITALY     45-64
## 4244 tour_idvp55l9w8           UNITED KINGDOM     45-64
## 4245 tour_idr8kixddx                   RUSSIA     25-44
## 4246 tour_idpccb3j10           UNITED KINGDOM     18-24
## 4247 tour_idlez0ib5g UNITED STATES OF AMERICA     25-44
## 4248 tour_id66um8wbb                    SPAIN     25-44
## 4249 tour_iddfeqcr42                   UGANDA     25-44
## 4250 tour_idly6xsosk UNITED STATES OF AMERICA     25-44
## 4251 tour_idq86l9ag1 UNITED STATES OF AMERICA     25-44
## 4252 tour_idwjlw02ke              NETHERLANDS     45-64
## 4253 tour_id82yoe3h6           UNITED KINGDOM     18-24
## 4254 tour_idni7app8v                  DENMARK     25-44
## 4255 tour_idfp2wjbjo                      UAE     45-64
## 4256 tour_idwjxoq05d UNITED STATES OF AMERICA       65+
## 4257 tour_id7y3hri0h UNITED STATES OF AMERICA       65+
## 4258 tour_id68f2t67o               MADAGASCAR     45-64
## 4259 tour_idgqog5ke0                SINGAPORE     45-64
## 4260 tour_idelep1bgy                    ITALY     18-24
## 4261 tour_idsp7903b6                   POLAND     25-44
## 4262 tour_id6ny5xhil                    ITALY     45-64
## 4263 tour_id4wa8j9m3                   NORWAY     18-24
## 4264 tour_ids8ipqopb           UNITED KINGDOM     18-24
## 4265 tour_id204xgiae                    ITALY     25-44
## 4266 tour_idsyww0bkb                   CANADA     45-64
## 4267 tour_id08ywrret                    ITALY       65+
## 4268 tour_id2eoc8vl4                   SWEDEN     25-44
## 4269 tour_idsdl674il             SOUTH AFRICA     25-44
## 4270 tour_ids23n52wb UNITED STATES OF AMERICA     25-44
## 4271 tour_idt4niwr56                   FRANCE     45-64
## 4272 tour_id80n69fkq                  ESTONIA     25-44
## 4273 tour_id6qxjwq5e             SOUTH AFRICA     25-44
## 4274 tour_idczhs5cit                 ZIMBABWE     45-64
## 4275 tour_idesvokj7z                   UGANDA     25-44
## 4276 tour_idbwrb4cwu                    ITALY     45-64
## 4277 tour_idekhv6j09                  AUSTRIA     25-44
## 4278 tour_idydzgk6e4                AUSTRALIA     45-64
## 4279 tour_ideo72dkzt           UNITED KINGDOM     25-44
## 4280 tour_id8tjnhtnw             SOUTH AFRICA     25-44
## 4281 tour_id0a2u61pl             SOUTH AFRICA     25-44
## 4282 tour_idw6yr1wxt           UNITED KINGDOM     18-24
## 4283 tour_idhjxqh5w2                   ZAMBIA     25-44
## 4284 tour_idj6c680oo                    SPAIN     25-44
## 4285 tour_idpvd27n44                   POLAND     25-44
## 4286 tour_id248caps8                    ITALY     18-24
## 4287 tour_idty2o0ot3                   FRANCE     25-44
## 4288 tour_idnimnfbw1                    KENYA     45-64
## 4289 tour_id7kim7iht                     CHAD     25-44
## 4290 tour_id6654rag1 UNITED STATES OF AMERICA     45-64
## 4291 tour_id3q32tnit           UNITED KINGDOM     45-64
## 4292 tour_idueg7y7nq UNITED STATES OF AMERICA       65+
## 4293 tour_idvoasw5hc                    ITALY     25-44
## 4294 tour_idrpdoe4gf                   CANADA     25-44
## 4295 tour_idwao6eck7           UNITED KINGDOM     45-64
## 4296 tour_id0km0hbhe                    KENYA     18-24
## 4297 tour_idh70sjxby                  GERMANY     45-64
## 4298 tour_idblorgi78                    ITALY     25-44
## 4299 tour_idlifcvtov             SOUTH AFRICA     45-64
## 4300 tour_idv7mi3ff2           UNITED KINGDOM     25-44
## 4301 tour_idx9perd8a           UNITED KINGDOM     18-24
## 4302 tour_idy9u59jf0                      UAE     25-44
## 4303 tour_id03urwqw6             SOUTH AFRICA     25-44
## 4304 tour_idg3k9q538                    ITALY     45-64
## 4305 tour_idub8jvmsv           UNITED KINGDOM     25-44
## 4306 tour_idj7x9fcgi                    SPAIN     45-64
## 4307 tour_idztc1ai9y                    ITALY     25-44
## 4308 tour_id4qz27xhh                 ZIMBABWE     18-24
## 4309 tour_id2qczqbji UNITED STATES OF AMERICA     18-24
## 4310 tour_idtnknwesy                   FRANCE     25-44
## 4311 tour_idqunaj42d                 SCOTLAND     45-64
## 4312 tour_idoelmbwab               SWIZERLAND     18-24
## 4313 tour_id96gj0i8y                    JAPAN     25-44
## 4315 tour_id5me8uou4             SOUTH AFRICA     25-44
## 4316 tour_idli8ooac8           UNITED KINGDOM     25-44
## 4317 tour_idgst0w6yd UNITED STATES OF AMERICA     45-64
## 4318 tour_ideo5b2kin                    ITALY     25-44
## 4319 tour_ide4t0w5qk UNITED STATES OF AMERICA     45-64
## 4320 tour_idje8qprmn UNITED STATES OF AMERICA       65+
## 4321 tour_idta1hyg25                   FRANCE     25-44
## 4323 tour_idy3n9x84s                   FRANCE     25-44
## 4324 tour_idprmaq9sf                   ZAMBIA     25-44
## 4325 tour_id7e1sedcc                  GERMANY     25-44
## 4326 tour_idvglryzbo               CAPE VERDE     45-64
## 4327 tour_id3z5mu6o9                    ITALY     25-44
## 4328 tour_id6tp5c0kv UNITED STATES OF AMERICA     25-44
## 4329 tour_id77nc6fvl             SOUTH AFRICA     45-64
## 4330 tour_id61h8cfsb           UNITED KINGDOM     25-44
## 4331 tour_id9r8vxqgb           UNITED KINGDOM     25-44
## 4332 tour_id18gihvrh                   ZAMBIA     45-64
## 4333 tour_idmyzkwv6u UNITED STATES OF AMERICA     25-44
## 4335 tour_id3t18wd31                  IRELAND     25-44
## 4336 tour_idozaypxoh                    GHANA     45-64
## 4337 tour_idti0no2yw                   FRANCE     25-44
## 4338 tour_idlgtrp4aq                    SPAIN     25-44
## 4341 tour_idl9xt1b17                   FRANCE     25-44
## 4342 tour_idyuihzb5j                AUSTRALIA     25-44
## 4343 tour_idrsthqfc8                    KENYA     25-44
## 4344 tour_id9pt9pc2e UNITED STATES OF AMERICA     25-44
## 4345 tour_idf6bl4lu4 UNITED STATES OF AMERICA       65+
## 4346 tour_idg1qb8av2     UNITED ARAB EMIRATES     25-44
## 4347 tour_idk2hqma48 UNITED STATES OF AMERICA     18-24
## 4348 tour_idnqn72ver                      DRC     18-24
## 4349 tour_iduh4dxuvj               SWIZERLAND     25-44
## 4350 tour_idpy54hxv5                  IRELAND     25-44
## 4351 tour_id1968uj5p UNITED STATES OF AMERICA     25-44
## 4352 tour_idynjdm6hr                     OMAN     25-44
## 4353 tour_idbowkmks3             SOUTH AFRICA     45-64
## 4354 tour_idh67drhts                   CANADA     25-44
## 4355 tour_idf76juxcr UNITED STATES OF AMERICA     45-64
## 4356 tour_idivkc988n                   UGANDA     25-44
## 4357 tour_idwlk3vzsu                AUSTRALIA     45-64
## 4358 tour_id080vh0j8             SOUTH AFRICA     25-44
## 4359 tour_id5u3himb9             SOUTH AFRICA       65+
## 4360 tour_id5lj4b6c4                  BURUNDI     18-24
## 4361 tour_idinis8l5v                  GERMANY     45-64
## 4362 tour_idipq5nzzh UNITED STATES OF AMERICA     25-44
## 4364 tour_id83bmbhbb                  BURUNDI     18-24
## 4365 tour_idsdsdtyon                  BURUNDI     25-44
## 4366 tour_id96rvb750                  IRELAND       <18
## 4367 tour_idw18kvfn5                    ITALY     45-64
## 4368 tour_idp2jnazsi                 ZIMBABWE     25-44
## 4369 tour_idroyeveu2                 ZIMBABWE       65+
## 4370 tour_idqsh8h6c5                   UGANDA     25-44
## 4371 tour_idtih0hd9s                   UGANDA     25-44
## 4372 tour_id1bgoy5b0                  GERMANY     25-44
## 4373 tour_idmw3tawxi                   FRANCE     25-44
## 4374 tour_idjcls6dno                  GERMANY     45-64
## 4376 tour_idd8jnpgwf                  IRELAND     18-24
## 4377 tour_id7n0dvhlw                    INDIA     25-44
## 4378 tour_id390dsjkm           UNITED KINGDOM     25-44
## 4379 tour_idtw4thbfs                  BURUNDI     25-44
## 4380 tour_idtkkimz8h                 ZIMBABWE     45-64
## 4381 tour_idk0x1f3i8                    KENYA     45-64
## 4382 tour_idz2ao4jp2                    ITALY     25-44
## 4383 tour_idcp1996rj UNITED STATES OF AMERICA     45-64
## 4384 tour_id4qt8qqb9           UNITED KINGDOM     18-24
## 4385 tour_idjsuygf9t           UNITED KINGDOM     18-24
## 4386 tour_idk2430wd4                   FRANCE     25-44
## 4387 tour_iderpghls6                      DRC     18-24
## 4388 tour_ido5gb6dzm                    JAPAN     18-24
## 4389 tour_idhawt1ei4                 ZIMBABWE     25-44
## 4390 tour_id2pc5mdg6                  CROATIA     45-64
## 4391 tour_id7f7aw3zz                    ITALY     25-44
## 4392 tour_iduztj0ly3              NETHERLANDS     25-44
## 4393 tour_idiweslt1v UNITED STATES OF AMERICA     45-64
## 4394 tour_id98jsqqb9                AUSTRALIA     25-44
## 4395 tour_iduok7nd0v           UNITED KINGDOM     45-64
## 4396 tour_idmah4h2bo                  GERMANY     25-44
## 4397 tour_id3mt9z4bz                    ITALY     25-44
## 4398 tour_idaq6f59cm                   FRANCE     18-24
## 4400 tour_idxjx7jhcc                   UGANDA       65+
## 4401 tour_idohvx1w76                 MALAYSIA     45-64
## 4403 tour_ido6epp2u9 UNITED STATES OF AMERICA     45-64
## 4404 tour_id03ieftjb             SOUTH AFRICA     45-64
## 4405 tour_id7j1sx7yd                AUSTRALIA     45-64
## 4406 tour_id9xa560xv UNITED STATES OF AMERICA     25-44
## 4407 tour_id41sy29b3           UNITED KINGDOM     25-44
## 4408 tour_idg8ddguh6                    ITALY     45-64
## 4409 tour_idsz7zinn9                   CANADA       65+
## 4410 tour_idjt3867at                  DENMARK     18-24
## 4411 tour_id43q5lhgv UNITED STATES OF AMERICA     45-64
## 4412 tour_idpv9sn4p5                AUSTRALIA       65+
## 4413 tour_idi5iqvz29                 ZIMBABWE     25-44
## 4414 tour_idvomm9vwo UNITED STATES OF AMERICA     18-24
## 4415 tour_id3x0lzyfk UNITED STATES OF AMERICA     25-44
## 4416 tour_idnpcai7d2                  GERMANY     25-44
## 4417 tour_idh1pco727           UNITED KINGDOM     18-24
## 4418 tour_id57l5yeqa                  GERMANY     45-64
## 4419 tour_idjtzjgeny                   UGANDA     45-64
## 4420 tour_idpwoqay23           UNITED KINGDOM     45-64
## 4421 tour_id07lz875w                   RWANDA     45-64
## 4423 tour_id4axpp2he                 ZIMBABWE     25-44
## 4424 tour_idqk4lxjkk              EL SALVADOR     45-64
## 4425 tour_idazyjm6iv           UNITED KINGDOM     45-64
## 4426 tour_id4lf4nhyx                   ZAMBIA     25-44
## 4427 tour_id2212ozt8           UNITED KINGDOM     25-44
## 4428 tour_idmwss41un              NETHERLANDS       65+
## 4429 tour_idtt6zwrvu           UNITED KINGDOM     25-44
## 4430 tour_id6ykcvubt                 MALAYSIA     45-64
## 4431 tour_idhpi7mt4z                    ITALY     18-24
## 4432 tour_id9dy6coyr                   FRANCE     25-44
## 4433 tour_idhikozqf5 UNITED STATES OF AMERICA     45-64
## 4434 tour_id8imp8kzo                  BURUNDI     18-24
## 4435 tour_ida6vvddgn UNITED STATES OF AMERICA     45-64
## 4436 tour_id640yirwu           UNITED KINGDOM     25-44
## 4437 tour_idlq0zczsu                   CANADA       65+
## 4438 tour_idhaa87dp8                    ITALY     45-64
## 4439 tour_id7lah425i                AUSTRALIA     25-44
## 4440 tour_idgv46kazq           UNITED KINGDOM     25-44
## 4441 tour_idq40c6409           UNITED KINGDOM     18-24
## 4442 tour_idimg7htp3                    ITALY     18-24
## 4443 tour_idxtf3634r                  GERMANY     18-24
## 4444 tour_idxmnpx6sm             SOUTH AFRICA     25-44
## 4445 tour_idxzhg3vmd                    NEPAL     45-64
## 4447 tour_idj7soe9xl                  GERMANY     25-44
## 4448 tour_ids6bemxv6                AUSTRALIA     45-64
## 4450 tour_id6nn5er8w                  GERMANY     25-44
## 4451 tour_ido6q3t3ek                   FRANCE     45-64
## 4452 tour_id1bwoxy84                    ITALY     25-44
## 4453 tour_idhk91t9hb UNITED STATES OF AMERICA     25-44
## 4454 tour_idhlsj0fbe                    ITALY     25-44
## 4455 tour_id5c5fpnhm     UNITED ARAB EMIRATES     45-64
## 4456 tour_id9ox0pzly                   ZAMBIA     45-64
## 4457 tour_idtgf2ee2o                    CHINA     25-44
## 4458 tour_idxr9ahm0v                  GERMANY     25-44
## 4459 tour_id97ztw7cs                   CANADA     45-64
## 4460 tour_idn573nm92                    ITALY     18-24
## 4461 tour_id7p9ektu5           UNITED KINGDOM     25-44
## 4463 tour_idbm5rmkom           UNITED KINGDOM     25-44
## 4464 tour_idh8tt2v6g           UNITED KINGDOM     45-64
## 4465 tour_idkejpjtxq                 ZIMBABWE     25-44
## 4466 tour_idz7j01nij                   FRANCE     25-44
## 4467 tour_id7mpwykrn                    INDIA     25-44
## 4468 tour_idgt71sinz                   FRANCE     45-64
## 4469 tour_idyvjrkkjq             SOUTH AFRICA     25-44
## 4470 tour_idrar3a673                   FRANCE     45-64
## 4471 tour_idfrgi3128                   MEXICO     45-64
## 4472 tour_id9faobn5k                    ITALY     25-44
## 4473 tour_id7b9w73zi UNITED STATES OF AMERICA     25-44
## 4474 tour_idsx12weal                    ITALY     45-64
## 4475 tour_id2l6zbs9q           UNITED KINGDOM     25-44
## 4476 tour_idg19eg0r6                  GERMANY     45-64
## 4477 tour_idbj6iudb6                LITHUANIA     25-44
## 4478 tour_iddit39bxv                   ZAMBIA     25-44
## 4479 tour_idpmhp8alf                    ITALY     45-64
## 4480 tour_idduz3ww20                    SPAIN     45-64
## 4481 tour_idx4y3b127                    KENYA     45-64
## 4482 tour_idyjw6fi2c             SOUTH AFRICA     25-44
## 4483 tour_id9ntjo1np                   FRANCE     45-64
## 4484 tour_idq2jvmnq1                      UAE     45-64
## 4485 tour_idivloprhc UNITED STATES OF AMERICA     45-64
## 4486 tour_idcrj4ephy           UNITED KINGDOM     25-44
## 4487 tour_id7sbe3uty             SOUTH AFRICA     25-44
## 4488 tour_idf7hidxqa                    ITALY     25-44
## 4489 tour_id1g66l86d              NETHERLANDS     45-64
## 4490 tour_idviaiwl6i                    KENYA     45-64
## 4491 tour_id5yp0ruiq                    KENYA     45-64
## 4492 tour_idxcydw5d1                  GERMANY     45-64
## 4493 tour_idqb1cdj0r                 MALAYSIA     25-44
## 4494 tour_idfsnbkeg5                    INDIA     45-64
## 4495 tour_idnp4kcify                    KENYA     25-44
## 4496 tour_idsvpoovep UNITED STATES OF AMERICA     25-44
## 4497 tour_idwgieanrh UNITED STATES OF AMERICA     45-64
## 4498 tour_idpt3bkbpo               SWIZERLAND     18-24
## 4499 tour_idgogjqktz                    SPAIN     45-64
## 4500 tour_idr7lr3lxh UNITED STATES OF AMERICA     45-64
## 4501 tour_idiyk51jyq                    SPAIN     25-44
## 4502 tour_idajzdrpz3                   KUWAIT     25-44
## 4503 tour_id9ba213x1           UNITED KINGDOM     25-44
## 4504 tour_id3a202vyb UNITED STATES OF AMERICA       65+
## 4505 tour_iduqsibxro           UNITED KINGDOM     25-44
## 4506 tour_idc9001nup                    SPAIN     45-64
## 4507 tour_id0b53av75                  FINLAND     18-24
## 4508 tour_iddnab5xu3                  IRELAND     25-44
## 4509 tour_id3fm8c0dx                    ITALY     25-44
## 4510 tour_idgturlvdd                    INDIA     18-24
## 4511 tour_idgcyg9tl7             SOUTH AFRICA       65+
## 4512 tour_idanwdf1pd           UNITED KINGDOM     18-24
## 4513 tour_id7fsaixva                    JAPAN     25-44
## 4514 tour_idjp206gfc                    KENYA     25-44
## 4515 tour_idd14ov7jm                  DENMARK     45-64
## 4516 tour_id01f39mo0                      UAE     25-44
## 4517 tour_idsqfa8uji                 ZIMBABWE     45-64
## 4518 tour_id6nr70zlc           UNITED KINGDOM       <18
## 4519 tour_id29k60etw                   RWANDA     18-24
## 4520 tour_id74iy6g3u           UNITED KINGDOM     18-24
## 4521 tour_idkn4071ne                  GERMANY     45-64
## 4522 tour_id0mkccykw              NETHERLANDS     25-44
## 4523 tour_id12tprcwk                   UGANDA     18-24
## 4524 tour_idrnncyrti                  DENMARK     25-44
## 4525 tour_idacj1pj9v                   SWEDEN     25-44
## 4526 tour_idgmllbqea           UNITED KINGDOM     18-24
## 4527 tour_id8m8f06vj             SOUTH AFRICA     45-64
## 4528 tour_id5zle9kn2                   ZAMBIA     25-44
## 4529 tour_idk31un8r7                    KENYA     25-44
## 4530 tour_idpuawisl1              NETHERLANDS       65+
## 4531 tour_idplr6jduq              NETHERLANDS     45-64
## 4532 tour_idpc9uuz8c UNITED STATES OF AMERICA     25-44
## 4533 tour_idpjg46c3s             SOUTH AFRICA     25-44
## 4534 tour_idjpq4bs9z                   FRANCE     25-44
## 4536 tour_idwvu1j702                    ITALY     18-24
## 4537 tour_idf891poq7                    HAITI     25-44
## 4538 tour_id2zwwrm9f                      UAE     25-44
## 4539 tour_idacq00w8g               SWIZERLAND     25-44
## 4540 tour_id1kfqlmus              NETHERLANDS     25-44
## 4541 tour_id1xk9ex4m                  GERMANY     25-44
## 4542 tour_idkfqomx81                   SWEDEN     45-64
## 4543 tour_idchufirg6                    INDIA     25-44
## 4544 tour_idlhlkldg6                    ITALY     25-44
## 4545 tour_iddorjxy2d                    KOREA     25-44
## 4546 tour_idt14vjzph                   ZAMBIA     25-44
## 4547 tour_idhck5phia                   FRANCE     25-44
## 4548 tour_id6j5qv62k                   FRANCE     25-44
## 4549 tour_idas3lu0i7             SOUTH AFRICA     45-64
## 4551 tour_idhs440p39                    ITALY     18-24
## 4552 tour_idcskcjwj9                   ZAMBIA     25-44
## 4553 tour_idqtc9uqsz                    SPAIN     45-64
## 4554 tour_idck84q7tp UNITED STATES OF AMERICA     25-44
## 4555 tour_ida22rh7zi                   CANADA     45-64
## 4557 tour_idscqp99s2                  BELGIUM     45-64
## 4558 tour_id6n5nmu6f                 MALAYSIA     25-44
## 4559 tour_id7iacb9a9                  BURUNDI       <18
## 4560 tour_idxlji0c0q                    INDIA     45-64
## 4561 tour_ideeitqeye                    ITALY     25-44
## 4562 tour_idarvmssoi           UNITED KINGDOM     18-24
## 4563 tour_idjmtup8g6 UNITED STATES OF AMERICA     25-44
## 4564 tour_id8vemkrsp UNITED STATES OF AMERICA     25-44
## 4565 tour_iduxfvnh6s UNITED STATES OF AMERICA     45-64
## 4566 tour_id9b5q04pr                    KENYA     25-44
## 4567 tour_idcssp5ohw                    ITALY     25-44
## 4568 tour_ida4y40o4t                   BRAZIL     25-44
## 4569 tour_ideao8uy9a                    ITALY     45-64
## 4570 tour_idhhwq8qfl                    ITALY     25-44
## 4572 tour_idp979unjm                    INDIA     25-44
## 4573 tour_idqyv5l27t                    JAPAN     45-64
## 4574 tour_idndrj3ag7                    JAPAN     18-24
## 4575 tour_idvux1p3ok                      DRC     18-24
## 4576 tour_id30ossozm                    KENYA     25-44
## 4577 tour_id3a4a4mos                    SPAIN     45-64
## 4578 tour_id6j88o2w5                    EGYPT     25-44
## 4579 tour_id8oj2knsd                SINGAPORE     45-64
## 4581 tour_idw0bbdipj                    KENYA     45-64
## 4582 tour_id7katmkds                   SWEDEN     45-64
## 4583 tour_id9ka65h0t           UNITED KINGDOM     45-64
## 4584 tour_idgp5fos3f                AUSTRALIA       65+
## 4585 tour_idg9vqr3op UNITED STATES OF AMERICA     25-44
## 4586 tour_id5b051n7b                   CANADA     45-64
## 4587 tour_idu1v3eap2 UNITED STATES OF AMERICA     25-44
## 4588 tour_id9j1scbp1                  GERMANY     25-44
## 4589 tour_idodm5e4d9                    CHINA     45-64
## 4590 tour_id1z6fau8r UNITED STATES OF AMERICA     45-64
## 4591 tour_idjca1p0vk UNITED STATES OF AMERICA     25-44
## 4592 tour_id2f6nar9i UNITED STATES OF AMERICA       65+
## 4594 tour_id3ftl3kd9                  HUNGARY     45-64
## 4595 tour_id7h0dbjy6                    ITALY     18-24
## 4596 tour_idhtf3h9dy                  AUSTRIA     25-44
## 4597 tour_idcof79ry2                  GERMANY     45-64
## 4598 tour_id733e5v7k                  IRELAND     45-64
## 4599 tour_idoi7lophy                   ZAMBIA     25-44
## 4600 tour_id248g99pn                   NORWAY     25-44
## 4601 tour_id9co45w08                    ITALY     45-64
## 4602 tour_idmks20l5i                      UAE     45-64
## 4603 tour_id4cg286yj                   FRANCE     45-64
## 4604 tour_idyv9wf23p             SOUTH AFRICA     25-44
## 4605 tour_idpk5ny74a                   UGANDA     25-44
## 4606 tour_idmkfgn9i9                  GERMANY     25-44
## 4608 tour_idlrh2lro6                   FRANCE     25-44
## 4609 tour_idpb47xe0m                  IRELAND     45-64
## 4610 tour_id2ziuxbl2                  BURUNDI     25-44
## 4611 tour_ida92x072g                    ITALY     25-44
## 4612 tour_idyrar94yf             SOUTH AFRICA     45-64
## 4613 tour_id08uvrock              NEW ZEALAND     18-24
## 4614 tour_idrs22krka UNITED STATES OF AMERICA       65+
## 4616 tour_id3epjdz6j                    ITALY     25-44
## 4617 tour_idv4ga7aab               SWIZERLAND       65+
## 4618 tour_idkneg6lpa UNITED STATES OF AMERICA     45-64
## 4619 tour_idymdbpiow                   FRANCE     45-64
## 4620 tour_idnu6i0304           UNITED KINGDOM     45-64
## 4621 tour_idf73i1clt                   FRANCE     25-44
## 4622 tour_iduf5qdelb             SOUTH AFRICA     45-64
## 4623 tour_idakx0dycq                 ZIMBABWE     25-44
## 4624 tour_id68d46itn             SOUTH AFRICA     45-64
## 4625 tour_idwu3tr0ob                   CANADA     25-44
## 4626 tour_idvfml9aan           UNITED KINGDOM     18-24
## 4627 tour_idc54q85i5                   ZAMBIA     45-64
## 4628 tour_id5i1daqyf           UNITED KINGDOM     45-64
## 4630 tour_idhz5oer11                   FRANCE     25-44
## 4631 tour_idrqn5xl7y                    CHINA     45-64
## 4632 tour_idxhs2tse2                    KENYA     25-44
## 4633 tour_idu698qheh                   ZAMBIA     25-44
## 4634 tour_id7rmd1653           UNITED KINGDOM     45-64
## 4635 tour_id0c3nfngt                    KENYA     25-44
## 4636 tour_id9aoqocq6 UNITED STATES OF AMERICA     25-44
## 4637 tour_idspik76xo           UNITED KINGDOM     25-44
## 4638 tour_idtinirn98                    ITALY     25-44
## 4639 tour_idhfdjwu4r                    SPAIN     25-44
## 4640 tour_idmofd9s9s                    ITALY     45-64
## 4641 tour_idj30yyvzn                    ITALY     45-64
## 4642 tour_idegwmk7ms                   CANADA       65+
## 4643 tour_id8fun3dft                   CANADA     18-24
## 4645 tour_idys7o1xrg           UNITED KINGDOM     45-64
## 4646 tour_idzqh9kdf5                 MALAYSIA     25-44
## 4647 tour_idzj7gq4rk                AUSTRALIA     25-44
## 4648 tour_id5xcott56 UNITED STATES OF AMERICA     45-64
## 4649 tour_idct4l51wp                    CHINA     25-44
## 4650 tour_idmv9lk82u                  GERMANY     45-64
## 4651 tour_idg07je3sn UNITED STATES OF AMERICA     18-24
## 4652 tour_id3isq5jto                      UAE       65+
## 4654 tour_id3x47qu59             SOUTH AFRICA     25-44
## 4655 tour_idfsy2bt2s           UNITED KINGDOM     25-44
## 4656 tour_idic9fokz7 UNITED STATES OF AMERICA       65+
## 4658 tour_idb0r71so0                    KENYA     45-64
## 4659 tour_idnaigytfh                    SPAIN     25-44
## 4660 tour_id9wtf8fvc                   CANADA     25-44
## 4661 tour_idgo6mp2xd UNITED STATES OF AMERICA       65+
## 4662 tour_idaxhlzcvc                   SWEDEN       65+
## 4663 tour_idw02b8r9e                    ITALY     25-44
## 4664 tour_id72rt6xkd                    ITALY     25-44
## 4665 tour_id6bw7fi4o             SOUTH AFRICA     18-24
## 4666 tour_id9449nqd5           UNITED KINGDOM     45-64
## 4667 tour_id0p3tqizi                     OMAN     25-44
## 4668 tour_idkrc58zgp                    SPAIN     45-64
## 4669 tour_idwch2v2h4                   NORWAY     25-44
## 4670 tour_id0av9afnh                 ZIMBABWE     45-64
## 4671 tour_id1gdn8oft                      UAE     45-64
## 4672 tour_idmqdhp5r0                    KENYA     25-44
## 4673 tour_idypz4twci UNITED STATES OF AMERICA     45-64
## 4674 tour_id44y5bkro                   UGANDA     45-64
## 4675 tour_idywmv304s                   POLAND     25-44
## 4676 tour_idtb1692y7                AUSTRALIA     45-64
## 4677 tour_idxf39ruvu UNITED STATES OF AMERICA     25-44
## 4678 tour_idlocoyyq8             SOUTH AFRICA     45-64
## 4679 tour_id9hk1kcq2               SWIZERLAND     45-64
## 4680 tour_idkypwmq2y UNITED STATES OF AMERICA     25-44
## 4681 tour_id9kz3qwfu                SRI LANKA     25-44
## 4682 tour_id7xt0ctty                    QATAR     25-44
## 4683 tour_idazoeg10n           UNITED KINGDOM     25-44
## 4684 tour_idmk595u89               SWIZERLAND     45-64
## 4685 tour_id8rh2c7ce                    ITALY     25-44
## 4686 tour_id9nxp78bt                 ZIMBABWE     25-44
## 4687 tour_id8j4155uy UNITED STATES OF AMERICA     25-44
## 4688 tour_id9u3x4fq0                   ZAMBIA     25-44
## 4689 tour_id0mjp13ci                AUSTRALIA     45-64
## 4690 tour_ida4r673vv                 ZIMBABWE     25-44
## 4691 tour_id89ey9ahz                    ITALY     18-24
## 4692 tour_idqrn9r0cg                    SUDAN     45-64
## 4693 tour_idt9ngv2ay                    CONGO     25-44
## 4694 tour_iddirypiq7           UNITED KINGDOM     25-44
## 4695 tour_id94rypyv6           UNITED KINGDOM     45-64
## 4696 tour_id7mepqp3b                   ZAMBIA     25-44
## 4697 tour_idvf5hc3rh UNITED STATES OF AMERICA     25-44
## 4698 tour_idwjhjfpt6 UNITED STATES OF AMERICA     45-64
## 4699 tour_idc6maay9a                    KENYA     25-44
## 4700 tour_id1akfzctl UNITED STATES OF AMERICA       65+
## 4701 tour_idxfe7yd52                    KENYA     45-64
## 4702 tour_idubr2g2bc           UNITED KINGDOM     45-64
## 4703 tour_id6yltgqye                    KENYA     25-44
## 4704 tour_iddh3ymy6x              NETHERLANDS     25-44
## 4705 tour_id2qcjvm7s                   FRANCE     45-64
## 4706 tour_idsua9ldpc UNITED STATES OF AMERICA     45-64
## 4707 tour_idfrsw04tv                   UGANDA     25-44
## 4708 tour_id57dsylix                   ZAMBIA     25-44
## 4709 tour_id7pma7quc UNITED STATES OF AMERICA     25-44
## 4711 tour_idxf3ocv4h                  DENMARK     18-24
## 4712 tour_idlmtgv502                   ZAMBIA     25-44
## 4713 tour_idu5yzuzvo             SOUTH AFRICA     25-44
## 4714 tour_id66nxorjq                AUSTRALIA     45-64
## 4715 tour_idjntsj72r                  GERMANY     25-44
## 4717 tour_idj7lhihp0                    INDIA     25-44
## 4718 tour_id2diacuyc           UNITED KINGDOM     45-64
## 4719 tour_idip7fgody           UNITED KINGDOM     25-44
## 4720 tour_idycojb4du                   UGANDA     25-44
## 4721 tour_idx7ojvkbr                  DENMARK     25-44
## 4722 tour_idcebopv76                  HUNGARY     45-64
## 4723 tour_idm0dm3a7w             SOUTH AFRICA     25-44
## 4724 tour_idq8gyx2z6              NETHERLANDS     25-44
## 4725 tour_idrap95gya                   FRANCE     18-24
## 4726 tour_id3dbg1127                   KUWAIT     45-64
## 4727 tour_idao7dqxth                    INDIA     25-44
## 4728 tour_idsyv5cfjz                    KENYA     45-64
## 4729 tour_idzf95oyrk                  GERMANY     25-44
## 4730 tour_idbf3pduoy                    ITALY     25-44
## 4731 tour_id0anfsc0m UNITED STATES OF AMERICA     45-64
## 4732 tour_idki651a7u                    CHINA     25-44
## 4733 tour_idiqsctz7h                   ZAMBIA     25-44
## 4734 tour_idrcd8ryyr                   CANADA     45-64
## 4735 tour_idm1ezox3r               MADAGASCAR     25-44
## 4736 tour_idofw6m9fn                   CANADA     25-44
## 4737 tour_idajofnlea                 PORTUGAL     45-64
## 4738 tour_idb1924o7u                   BRAZIL     25-44
## 4739 tour_idhg1g9d6i           UNITED KINGDOM     18-24
## 4740 tour_idpruj59vi                 ZIMBABWE     25-44
## 4741 tour_idsag08q3a                    ITALY     25-44
## 4742 tour_id7fdou62a                   RWANDA     18-24
## 4743 tour_id4pgieptp                    KENYA     45-64
## 4744 tour_id2bxqlya5                AUSTRALIA     45-64
## 4745 tour_id2rhldeer                 ZIMBABWE     18-24
## 4746 tour_idpjcdbsdu                   SWEDEN     25-44
## 4747 tour_idpyee68nm              NETHERLANDS     45-64
## 4748 tour_idshuxosf5 UNITED STATES OF AMERICA       65+
## 4749 tour_idc0zff95d UNITED STATES OF AMERICA     25-44
## 4750 tour_idl824jiih                    SPAIN     18-24
## 4751 tour_id3hdtkzjh                    ITALY     25-44
## 4752 tour_idi0quw5nf UNITED STATES OF AMERICA       65+
## 4753 tour_iddiu4t7pa UNITED STATES OF AMERICA     25-44
## 4754 tour_id9pfw44v7           UNITED KINGDOM     25-44
## 4755 tour_idjqfy6snz                   CANADA     25-44
## 4756 tour_id3mdopvla                   FRANCE     25-44
## 4757 tour_idwts99l4l                 THAILAND     25-44
## 4758 tour_idei64s1d3           UNITED KINGDOM     45-64
## 4759 tour_idvr94x2xt UNITED STATES OF AMERICA       65+
## 4760 tour_id4xyo3wj9                    KOREA     25-44
## 4761 tour_idzi90rlii                    ITALY     45-64
## 4762 tour_iddbhznc4e                   RUSSIA     25-44
## 4763 tour_idwppyiw2j                   FRANCE     25-44
## 4764 tour_idqzp061ak           UNITED KINGDOM     25-44
## 4765 tour_idtrpxa2sb UNITED STATES OF AMERICA       65+
## 4766 tour_idqyk7ws53           UNITED KINGDOM     25-44
## 4767 tour_idiyqlb5vv                 ZIMBABWE     25-44
## 4768 tour_idtzrqz80a           UNITED KINGDOM     25-44
## 4769 tour_idrvx8wkc0                      DRC     18-24
## 4770 tour_ide5ue6n2i           UNITED KINGDOM     25-44
## 4771 tour_id9yialixx UNITED STATES OF AMERICA     25-44
## 4772 tour_ide0mb84s1                      DRC     25-44
## 4773 tour_ida5qvm9yk                  BELARUS     25-44
## 4774 tour_id5z8u9r3u                    KOREA     25-44
## 4775 tour_id3i5pxcum                AUSTRALIA     25-44
## 4776 tour_idux0anhoq                  GERMANY     18-24
## 4777 tour_id8hz8f2k8                    SPAIN     45-64
## 4778 tour_id32oh16nx                 SCOTLAND     18-24
## 4780 tour_idvdpomcmr                   FRANCE     45-64
## 4781 tour_idib1btgf3 UNITED STATES OF AMERICA       65+
## 4782 tour_idaxrpkahw UNITED STATES OF AMERICA     45-64
## 4783 tour_id1s6ydkb2 UNITED STATES OF AMERICA     18-24
## 4784 tour_idifynpo0p                AUSTRALIA     45-64
## 4785 tour_idk1o7q68y                   CANADA     45-64
## 4786 tour_idbx3mqgt7                    KENYA     25-44
## 4788 tour_idzwgoojn9 UNITED STATES OF AMERICA       65+
## 4789 tour_idr0y0xt8h                   ZAMBIA     25-44
## 4790 tour_idnwsqqrjq                   UGANDA     25-44
## 4791 tour_idny6in1ba               LUXEMBOURG     25-44
## 4792 tour_idvjeami1r                AUSTRALIA     25-44
## 4793 tour_idrfmss4v1 UNITED STATES OF AMERICA       65+
## 4794 tour_idlxfiu1ld UNITED STATES OF AMERICA     25-44
## 4795 tour_idq4wkfcry           UNITED KINGDOM       65+
## 4796 tour_id3m1366ht                   CANADA     25-44
## 4797 tour_id1jpsqd78 UNITED STATES OF AMERICA     25-44
## 4798 tour_idhatkiq3k                  GERMANY     45-64
## 4799 tour_id3vqv4k0m                   FRANCE     45-64
## 4800 tour_idud0yi9dk UNITED STATES OF AMERICA       65+
## 4801 tour_idv1uocfby                    SPAIN     25-44
## 4802 tour_idvmti0830                  GERMANY       65+
## 4803 tour_idg5xo3u6u                    SPAIN     45-64
## 4804 tour_idb0acc6au                    KENYA     25-44
## 4806 tour_id7zmjhxab                   FRANCE     45-64
## 4808 tour_idv5jvt1xt                    ITALY     25-44
## 4810 tour_id4zx48bi3 UNITED STATES OF AMERICA       65+
## 4811 tour_idmpd23fbf                   ZAMBIA     25-44
## 4812 tour_ide35kmmqh           UNITED KINGDOM     25-44
## 4813 tour_id08is2il9           UNITED KINGDOM     18-24
## 4815 tour_id59ftlxe3 UNITED STATES OF AMERICA     25-44
## 4816 tour_id49apekhg                  GERMANY     25-44
## 4817 tour_idhfpt8uax                   ZAMBIA     25-44
## 4818 tour_idw5pj2rpe                   FRANCE     25-44
## 4819 tour_idwpkuiaqt                 ZIMBABWE     25-44
## 4822 tour_id9e21h0ae                    KENYA     25-44
## 4823 tour_idciqwudwn                    SPAIN     25-44
## 4824 tour_idklkiynvu UNITED STATES OF AMERICA       65+
## 4825 tour_idyobg3yvh                    ITALY     45-64
## 4826 tour_id2sz6qqw0                  BELGIUM     25-44
## 4827 tour_idftt2vn9a                  GERMANY     25-44
## 4828 tour_id2repi8sd                  GERMANY     25-44
## 4829 tour_idjola4xea                    ITALY     25-44
## 4830 tour_id1aalxveh                    KENYA     25-44
## 4831 tour_idweqlbwgh UNITED STATES OF AMERICA     45-64
## 4832 tour_idy7rf1uce           UNITED KINGDOM     25-44
## 4833 tour_idlsvk3d9r UNITED STATES OF AMERICA     45-64
## 4834 tour_idnn1hnkk7                 ZIMBABWE     45-64
## 4835 tour_id7990mhqs                    SUDAN     25-44
## 4836 tour_idvvnd6n06             SOUTH AFRICA     45-64
## 4837 tour_idw7yvd2qf UNITED STATES OF AMERICA       <18
## 4838 tour_idnirttviu                    KENYA     25-44
## 4839 tour_id034vtyt9                   JORDAN     25-44
## 4840 tour_idsoxl9qfu UNITED STATES OF AMERICA     45-64
## 4842 tour_idea9vrrdj                   POLAND     45-64
## 4843 tour_idp5b441oz                  GERMANY       65+
## 4844 tour_id2ubfepzp UNITED STATES OF AMERICA     45-64
## 4845 tour_id2li5oz12                   ZAMBIA     25-44
## 4846 tour_idrv9f6yd8                   BRAZIL     25-44
## 4847 tour_idql8jlgxa                    CHINA     25-44
## 4848 tour_idh6ztah4f                    ITALY     25-44
## 4849 tour_idm2htv156                  BURUNDI     18-24
## 4850 tour_id7yq2haru             SOUTH AFRICA     25-44
## 4851 tour_idtxv2ifo4             SOUTH AFRICA     25-44
## 4852 tour_idh970ujtj                    SPAIN     25-44
## 4853 tour_ido0ait93z                   ZAMBIA     18-24
## 4854 tour_idt4mtjt38                AUSTRALIA     25-44
## 4855 tour_id817e7236                    ITALY       65+
## 4856 tour_id9n66q359                   CANADA     45-64
## 4857 tour_idt12b9iii                 ZIMBABWE     18-24
## 4858 tour_id4bhdvds9                    ITALY     45-64
## 4859 tour_idp8mb7fj5                    INDIA     45-64
## 4860 tour_idxyajb9g5                   ZAMBIA     25-44
## 4861 tour_idg00ui72c                   FRANCE     25-44
## 4862 tour_idqbamukgg                    ITALY     45-64
## 4863 tour_idpbbjfz19                   FRANCE     25-44
## 4865 tour_idk8ah6oui                    ITALY     25-44
## 4866 tour_ide6i93z20                   RWANDA     18-24
## 4867 tour_id4gjdw28y                  ESTONIA     25-44
## 4868 tour_idaockybgs                   FRANCE     25-44
## 4869 tour_idf2kenuim                  DENMARK     45-64
## 4870 tour_idb5ffclv0                   SWEDEN     18-24
## 4871 tour_idgoekbb9p           UNITED KINGDOM     45-64
## 4872 tour_id1pej83ju                   TAIWAN     45-64
## 4874 tour_idr7pqtqu7                  GERMANY     25-44
## 4875 tour_idvr9514sr                AUSTRALIA     25-44
## 4876 tour_idmg0jpz4t                  GERMANY     45-64
## 4877 tour_id585ci6i9                  GERMANY     25-44
## 4878 tour_idexnqykrg                 ZIMBABWE     25-44
## 4879 tour_ide883aqd0                AUSTRALIA     25-44
## 4880 tour_idlsuegzqz                   ZAMBIA     25-44
## 4881 tour_id72oi3dxl                    SPAIN     25-44
## 4882 tour_id0esq0njb                AUSTRALIA     45-64
## 4883 tour_id5qiver6k                    ITALY     45-64
## 4884 tour_id3b7me8gk                  GERMANY     25-44
## 4885 tour_id4galk7a1 UNITED STATES OF AMERICA     25-44
## 4886 tour_idgz4a83gs UNITED STATES OF AMERICA     18-24
## 4887 tour_id7f5a79dx                    ITALY     18-24
## 4888 tour_id5bgq3xpl           UNITED KINGDOM     45-64
## 4889 tour_idadds37tr UNITED STATES OF AMERICA     45-64
## 4890 tour_id6q09r497                    ITALY     25-44
## 4891 tour_idlhqlmwu8                  GERMANY     25-44
## 4892 tour_idhlhk701o                AUSTRALIA     45-64
## 4893 tour_ida500moh2                   ZAMBIA     45-64
## 4894 tour_idwc4234om                    ITALY     18-24
## 4896 tour_id6mfdqd9n UNITED STATES OF AMERICA     45-64
## 4897 tour_idiay1n4lr                   FRANCE       65+
## 4898 tour_id81b3k43g                AUSTRALIA       65+
## 4899 tour_id90yz9o55                    KENYA     18-24
## 4900 tour_id6y8ih5gj UNITED STATES OF AMERICA     25-44
## 4901 tour_idoylxa8x1           UNITED KINGDOM     45-64
## 4902 tour_idviwx3gqr                AUSTRALIA     45-64
## 4903 tour_idgx159frq UNITED STATES OF AMERICA     25-44
## 4904 tour_idc3n6rzjy                  GERMANY     18-24
## 4905 tour_idmhcvhar5                  BURUNDI     18-24
## 4906 tour_id1r84hjcj             SOUTH AFRICA     25-44
## 4907 tour_idyai8q03k                   ZAMBIA     45-64
## 4908 tour_idcw5oqwjj                    KENYA     25-44
## 4909 tour_id22yjr8rz UNITED STATES OF AMERICA     25-44
## 4910 tour_idhk8j0sap                    ITALY     25-44
## 4911 tour_idtm7pcs92             SOUTH AFRICA     25-44
## 4912 tour_idtxrcvvym                AUSTRALIA     25-44
## 4913 tour_idd2xkmqcw                    CHINA     18-24
## 4914 tour_idd9hykscm                   CANADA       65+
## 4916 tour_idggnzu2l7           UNITED KINGDOM     25-44
## 4917 tour_idlk1bxqjj                 PAKISTAN     45-64
## 4918 tour_id83vu1hnq UNITED STATES OF AMERICA     45-64
## 4919 tour_idkxvvady3                  DENMARK     25-44
## 4920 tour_ides59jtzk                    KENYA     45-64
## 4921 tour_idehy9won8               SWIZERLAND     25-44
## 4922 tour_idqp344sa2                    ITALY     25-44
## 4923 tour_idkd1fn4y8                   ISRAEL     45-64
## 4924 tour_idvdmyt361 UNITED STATES OF AMERICA     45-64
## 4925 tour_idvmb0dydb           CZECH REPUBLIC     25-44
## 4926 tour_id7chv3v2n           UNITED KINGDOM     18-24
## 4927 tour_idxceq479h                  GERMANY     25-44
## 4928 tour_idfqv4fwdh                 ZIMBABWE     25-44
## 4929 tour_ids95rhj8x                    KENYA     25-44
## 4930 tour_idc55zxk5s               PHILIPINES     25-44
## 4931 tour_idlolzq7rm                    ITALY     25-44
## 4932 tour_idt5c4axz0                    ITALY       65+
## 4933 tour_idw1y71q9k           UNITED KINGDOM     18-24
## 4934 tour_idsuelk1s9                   CANADA     25-44
## 4936 tour_idy7uf823s UNITED STATES OF AMERICA     45-64
## 4937 tour_idwv0ptmmb UNITED STATES OF AMERICA     45-64
## 4938 tour_idaw7k3chi                  GERMANY     45-64
## 4939 tour_idi6djasjx                 ZIMBABWE     25-44
## 4940 tour_id7777873b                 ZIMBABWE     25-44
## 4941 tour_idt4ymuyya UNITED STATES OF AMERICA     45-64
## 4942 tour_idpirqoksd                   RUSSIA     25-44
## 4944 tour_idp76msp5d UNITED STATES OF AMERICA     45-64
## 4945 tour_id690ba4cp                 ZIMBABWE     45-64
## 4946 tour_id03gths0j                    CHINA       65+
## 4947 tour_idmedgmxn5                   FRANCE     25-44
## 4948 tour_idk82vb0xc                  GERMANY       65+
## 4949 tour_idcj44qu5x                    INDIA     25-44
## 4950 tour_idt03llkx9 UNITED STATES OF AMERICA     25-44
## 4951 tour_idetfgz1jd UNITED STATES OF AMERICA     45-64
## 4952 tour_idfsflrlyd                    ITALY     25-44
## 4953 tour_idyrqee47y                    ITALY       65+
## 4954 tour_idph1djpo7 UNITED STATES OF AMERICA     25-44
## 4956 tour_idr8nl4kom                  GERMANY     45-64
## 4957 tour_idkvlzfu1j                    SPAIN     25-44
## 4959 tour_idqtl1zjv3 UNITED STATES OF AMERICA     25-44
## 4960 tour_id0vuw72ha UNITED STATES OF AMERICA     25-44
## 4961 tour_idrcr1trfv                    KENYA     25-44
## 4962 tour_id22admzun                   RUSSIA     25-44
## 4963 tour_idrwme6iyw           UNITED KINGDOM     18-24
## 4964 tour_id3m6cr6h1                  IRELAND       <18
## 4965 tour_ide7u4tjhc                 ZIMBABWE     25-44
## 4966 tour_idbnwuewwj              NETHERLANDS     45-64
## 4967 tour_id25ko17ay UNITED STATES OF AMERICA     45-64
## 4968 tour_id5fvcnuo9                   FRANCE     45-64
## 4969 tour_idjr8ycmlh             SOUTH AFRICA     45-64
## 4970 tour_id1ewxe8yy           UNITED KINGDOM     45-64
## 4972 tour_idxxroissm           UNITED KINGDOM     18-24
## 4973 tour_idylosa6c1                      UAE     25-44
## 4974 tour_idd5eqdbm9 UNITED STATES OF AMERICA     25-44
## 4975 tour_id77h9h07l             SOUTH AFRICA     25-44
## 4976 tour_id8zhff32z                  GERMANY     25-44
## 4977 tour_idakpbhypu                AUSTRALIA       65+
## 4978 tour_idh2fvyef8                   UGANDA     25-44
## 4979 tour_idbmhidfqt                   UGANDA     18-24
## 4980 tour_idgexksqc7                    INDIA       65+
## 4981 tour_idzn9d0qrw                   FRANCE     25-44
## 4982 tour_idnl67c22e                    INDIA     25-44
## 4983 tour_id7pl3d62v                AUSTRALIA     25-44
## 4984 tour_id584sjfkz UNITED STATES OF AMERICA       65+
## 4985 tour_id6hxiqpg3           UNITED KINGDOM     25-44
## 4986 tour_idsqnh5k2v                  DENMARK     25-44
## 4987 tour_id6kxmnhu0                    KENYA     45-64
## 4988 tour_id8s7dkd1j UNITED STATES OF AMERICA     45-64
## 4989 tour_idnq1ip8af                    ITALY     25-44
## 4990 tour_idrwx25ojs           UNITED KINGDOM     45-64
## 4991 tour_idmh2xk2lc                      UAE     25-44
## 4993 tour_id8rl09scw                   UGANDA     25-44
## 4994 tour_idtrbp7t0y             SOUTH AFRICA     25-44
## 4995 tour_idfrz9y5bu                  FINLAND       65+
## 4996 tour_id6z7zl3aa                   NORWAY     45-64
## 4997 tour_idvu03rj70                    ITALY     45-64
## 4998 tour_idryr3z8cx                    CHINA     18-24
## 4999 tour_id4b76sohk                    KENYA     45-64
## 5000 tour_id1p6fcfgv                    SPAIN       65+
## 5001 tour_idrw9czj39             SOUTH AFRICA     25-44
## 5002 tour_idn2o8nnda                    KENYA     25-44
## 5003 tour_idn6ibcd5v UNITED STATES OF AMERICA     18-24
## 5004 tour_iditgs7h49             SOUTH AFRICA     45-64
## 5005 tour_idgp6arssx UNITED STATES OF AMERICA     18-24
## 5006 tour_id9uor1szv                   ZAMBIA     25-44
## 5007 tour_idckybg674 UNITED STATES OF AMERICA     25-44
## 5008 tour_idf74hitir UNITED STATES OF AMERICA     18-24
## 5009 tour_idqlhy8sa6                   FRANCE     45-64
## 5010 tour_idn8z7sdso                    ITALY     45-64
## 5011 tour_idw4m28811 UNITED STATES OF AMERICA     25-44
## 5012 tour_id950d40cs                  LEBANON     25-44
## 5013 tour_idv4rzekuh              NETHERLANDS     25-44
## 5014 tour_idqhisn8a8                AUSTRALIA     45-64
## 5017 tour_idyy608awf                  DENMARK       65+
## 5018 tour_idcsybhgma                    KENYA     25-44
## 5019 tour_idme595h33             SOUTH AFRICA     45-64
## 5021 tour_ido4cw9phn           CZECH REPUBLIC     25-44
## 5022 tour_idetvjnjjm                   CYPRUS     25-44
## 5023 tour_idk0axc55n                   FRANCE     25-44
## 5024 tour_id3smzjk0v             SOUTH AFRICA     45-64
## 5025 tour_idmeuohg3z UNITED STATES OF AMERICA       <18
## 5026 tour_id6f9dj0cu                    KENYA     45-64
## 5027 tour_id2eihh7z6                    ITALY       65+
## 5028 tour_idi0a1fle7                  IRELAND     45-64
## 5029 tour_idkr1nagc6                   SWEDEN     25-44
## 5030 tour_ida0n2n6pa             SOUTH AFRICA     45-64
## 5031 tour_id1nf7889q UNITED STATES OF AMERICA       65+
## 5032 tour_idm2bepwoe     UNITED ARAB EMIRATES     25-44
## 5033 tour_id75kyd4l4                    CHINA     25-44
## 5034 tour_idk81v31l8                    CHINA     25-44
## 5035 tour_ideqzgjcy0                 ZIMBABWE     25-44
## 5036 tour_idgepe3sm0                    SPAIN       65+
## 5037 tour_idveaef82c                    EGYPT     25-44
## 5038 tour_id93c4p6sg                   ZAMBIA     25-44
## 5039 tour_idtbkrafjj UNITED STATES OF AMERICA     25-44
## 5040 tour_idq3lapnho                AUSTRALIA     25-44
## 5041 tour_id4xhfzffu                   CANADA     25-44
## 5042 tour_id1h2jjnzi                 PORTUGAL     45-64
## 5043 tour_idbtcb5wv7                   FRANCE     25-44
## 5044 tour_idsqm0vbcb                   FRANCE     45-64
## 5045 tour_idfmyedht6                   FRANCE     18-24
## 5046 tour_id9dmw6f70                   CANADA     45-64
## 5047 tour_id953so14u             SOUTH AFRICA     45-64
## 5048 tour_idkcnhna53 UNITED STATES OF AMERICA     45-64
## 5049 tour_idei3oqg60                 ZIMBABWE     25-44
## 5050 tour_id2qcrqj96                    ITALY     25-44
## 5051 tour_idw64m7a29             SOUTH AFRICA       <18
## 5052 tour_iddlrv47od               SWIZERLAND     25-44
## 5053 tour_idy8jx27xk                 ZIMBABWE     25-44
## 5054 tour_idp5n4b2d1                    ITALY     25-44
## 5055 tour_idu1fgvno2                   TURKEY     25-44
## 5056 tour_id1c6184b3                    ITALY     45-64
## 5057 tour_idh3u5wono             SOUTH AFRICA     25-44
## 5058 tour_idzsanqqj1                    CHINA     18-24
## 5059 tour_id40kluimu              NETHERLANDS     25-44
## 5060 tour_id7uesxrmz                    CHINA     45-64
## 5061 tour_idfsz93mli                    ITALY     25-44
## 5062 tour_idwukif444 UNITED STATES OF AMERICA       65+
## 5063 tour_iddnxv6ay9                    SPAIN     25-44
## 5064 tour_id2l6syrmm                    INDIA     45-64
## 5065 tour_idyr6ecne1                   FRANCE     25-44
## 5066 tour_idjwf7x9sh                   UGANDA     45-64
## 5067 tour_idptxnau11           UNITED KINGDOM     25-44
## 5068 tour_idtthovw4h           UNITED KINGDOM     18-24
## 5070 tour_iduqo3nkgi                AUSTRALIA     25-44
## 5071 tour_idme0irrlp UNITED STATES OF AMERICA     45-64
## 5072 tour_id53zqp5h9                    KENYA     45-64
## 5073 tour_idtg9l2bid UNITED STATES OF AMERICA     25-44
## 5074 tour_id3e61i4j6               MOZAMBIQUE     25-44
## 5075 tour_idtxt8q90a                     OMAN     25-44
## 5076 tour_id2oux1ne1                   UGANDA     25-44
## 5077 tour_idp9076u28                  BERMUDA     25-44
## 5078 tour_iddcns83nb                   FRANCE     25-44
## 5079 tour_ids31vvan8                   ZAMBIA     45-64
## 5080 tour_idhnaqnzha                    ITALY     45-64
## 5081 tour_iddork6b2j                  GERMANY     25-44
## 5082 tour_idas08zyqg              NETHERLANDS     45-64
## 5083 tour_id8qiw07py                   CANADA     18-24
## 5085 tour_idaq81vbr0 UNITED STATES OF AMERICA       65+
## 5086 tour_idcw1jfqfs                    JAPAN     45-64
## 5087 tour_idmt4gyfs4                    KENYA     18-24
## 5088 tour_idgb67ed82                  GERMANY       65+
## 5089 tour_idxmu7gh8j                   UGANDA     18-24
## 5090 tour_id7o09beed           UNITED KINGDOM       65+
## 5091 tour_idry80hecr             SOUTH AFRICA     45-64
## 5092 tour_id7a5pysdp                AUSTRALIA     45-64
## 5093 tour_idme6fkil2                 PORTUGAL     25-44
## 5094 tour_idn4etxzoy UNITED STATES OF AMERICA     25-44
## 5095 tour_id1ze6ixbb                  GERMANY     25-44
## 5096 tour_idesspf0bv UNITED STATES OF AMERICA       65+
## 5097 tour_id8bps1m0o                  BURUNDI     18-24
## 5098 tour_id2rl5jbi5           UNITED KINGDOM     18-24
## 5099 tour_idu526q8vd UNITED STATES OF AMERICA     18-24
## 5100 tour_idar8hdopn                   BRAZIL     25-44
## 5101 tour_idyyhbxgor                  AUSTRIA     45-64
##                       travel_with total_female total_male
## 1                           Alone            0          1
## 2                   With Children            1          1
## 3                     With Spouse            1          1
## 4                           Alone            0          1
## 5                           Alone            0          1
## 6                           Alone            0          1
## 7        With Spouse and Children            1          2
## 8                           Alone            0          1
## 9                     With Spouse            1          1
## 10                          Alone            0          1
## 11       With Spouse and Children            4          2
## 12                          Alone            0          1
## 13                    With Spouse            1          1
## 14                  With Children            1          1
## 16                          Alone            0          1
## 17                    With Spouse            1          1
## 18                          Alone            0          1
## 19                    With Spouse            1          1
## 20   With Other Friends/Relatives            1          1
## 21                          Alone            0          1
## 22                          Alone            0          1
## 23                          Alone            1          0
## 24   With Other Friends/Relatives            2          1
## 25                          Alone            0          1
## 26                          Alone            0          1
## 27                    With Spouse            1          1
## 28                          Alone            1          0
## 29                          Alone            1          0
## 30                          Alone            0          1
## 31                          Alone            0          1
## 32   With Other Friends/Relatives            0          2
## 33   With Other Friends/Relatives            2          0
## 34                    With Spouse            1          1
## 35   With Other Friends/Relatives            1          1
## 36                          Alone            1          0
## 37                    With Spouse            1          0
## 38   With Other Friends/Relatives            2          1
## 39                          Alone            0          1
## 40   With Other Friends/Relatives            4          2
## 41                    With Spouse            1          1
## 43                    With Spouse            1          1
## 44       With Spouse and Children            3          1
## 45       With Spouse and Children            1          2
## 46                  With Children            1          1
## 47   With Other Friends/Relatives            2          0
## 48                          Alone            1          0
## 49                          Alone            0          1
## 50                          Alone            0          1
## 51                    With Spouse            1          1
## 52       With Spouse and Children            1          2
## 53   With Other Friends/Relatives            2          2
## 54                    With Spouse            1          0
## 55                  With Children            0          2
## 56                    With Spouse            1          1
## 57       With Spouse and Children            2          2
## 58                          Alone            1          0
## 59                  With Children            1          1
## 60   With Other Friends/Relatives            4          0
## 61                    With Spouse            1          1
## 62                          Alone            0          1
## 63   With Other Friends/Relatives            1          1
## 64                          Alone            0          1
## 65                          Alone            0          1
## 66                          Alone            0          1
## 67                          Alone            1          0
## 68                          Alone            2          1
## 69                    With Spouse            1          0
## 70   With Other Friends/Relatives            1          1
## 71       With Spouse and Children            4          1
## 72                          Alone            1          0
## 74                          Alone            0          1
## 75   With Other Friends/Relatives            2          0
## 76                          Alone            0          1
## 77                          Alone            1          0
## 78                          Alone            0          1
## 79                          Alone            0          1
## 80                          Alone            0          1
## 81                          Alone            0          1
## 82                          Alone            0          1
## 83                          Alone            0          1
## 84                          Alone            1          0
## 85                    With Spouse            1          1
## 86                    With Spouse            1          1
## 87                    With Spouse            1          1
## 88                  With Children            3          2
## 89                          Alone            0          1
## 90                    With Spouse            1          1
## 92                          Alone            0          1
## 93                          Alone            0          1
## 94                    With Spouse            1          1
## 96                    With Spouse            1          1
## 97   With Other Friends/Relatives            1          2
## 98                          Alone            0          1
## 99                          Alone            1          0
## 100                   With Spouse            1          1
## 101                   With Spouse            1          1
## 102                   With Spouse            1          1
## 103                         Alone            0          1
## 104  With Other Friends/Relatives            0          3
## 105                   With Spouse            1          1
## 106                   With Spouse            1          1
## 107                         Alone            1          1
## 109                   With Spouse            1          1
## 110                   With Spouse            1          1
## 112                         Alone            0          1
## 113                         Alone            0          1
## 114                   With Spouse            1          1
## 115                   With Spouse            1          1
## 116                   With Spouse            1          1
## 117                   With Spouse            2          1
## 118                         Alone            1          0
## 119                         Alone            1          0
## 120                         Alone            1          0
## 121  With Other Friends/Relatives            1          0
## 122                   With Spouse            1          1
## 123                   With Spouse            1          1
## 124                 With Children            1          1
## 125                   With Spouse            1          1
## 126                   With Spouse            1          1
## 127  With Other Friends/Relatives            1          2
## 128  With Other Friends/Relatives            3          1
## 129                   With Spouse            1          1
## 130      With Spouse and Children            2          4
## 131  With Other Friends/Relatives            1          2
## 132                   With Spouse            1          1
## 133                   With Spouse            1          1
## 134                         Alone            0          1
## 135                   With Spouse            1          1
## 136                   With Spouse            1          1
## 137                   With Spouse            1          1
## 138                 With Children            1          1
## 139                   With Spouse            1          1
## 140                         Alone            1          0
## 141                         Alone            1          0
## 142                   With Spouse            1          1
## 143                   With Spouse            1          1
## 144                   With Spouse            1          1
## 145                 With Children            0          2
## 146  With Other Friends/Relatives            1          4
## 147                   With Spouse            1          1
## 148                   With Spouse            1          1
## 149                         Alone            1          0
## 150                         Alone            0          1
## 151                   With Spouse            1          1
## 152                         Alone            1          0
## 153                   With Spouse            1          1
## 155                   With Spouse            1          1
## 156  With Other Friends/Relatives            2          1
## 157                         Alone            1          0
## 159                   With Spouse            1          1
## 160      With Spouse and Children            2          1
## 161                         Alone            1          0
## 162      With Spouse and Children            2          2
## 163  With Other Friends/Relatives            1          2
## 164                         Alone            0          1
## 165                         Alone            0          1
## 166                   With Spouse            1          1
## 167                         Alone            0          1
## 168                   With Spouse            1          1
## 169                         Alone            1          0
## 170                   With Spouse            1          1
## 171                   With Spouse            0          1
## 172                 With Children            2          0
## 173                   With Spouse            1          1
## 174                         Alone            0          1
## 175                         Alone            1          0
## 176                   With Spouse            1          1
## 177                   With Spouse            1          1
## 178  With Other Friends/Relatives            1          1
## 179                   With Spouse            1          1
## 180  With Other Friends/Relatives            3          0
## 181                         Alone            0          1
## 182                         Alone            1          0
## 183                   With Spouse            1          1
## 185                   With Spouse            1          1
## 186  With Other Friends/Relatives            1          3
## 187                         Alone            1          0
## 188                   With Spouse            1          1
## 189                         Alone            0          1
## 190                   With Spouse            1          1
## 191                   With Spouse            1          1
## 192                         Alone            0          1
## 193                   With Spouse            1          1
## 194      With Spouse and Children            1          4
## 195  With Other Friends/Relatives            0          3
## 196                         Alone            1          0
## 197                   With Spouse            1          1
## 198                         Alone            1          0
## 199                         Alone            0          1
## 201                   With Spouse            1          1
## 202                         Alone            1          0
## 203  With Other Friends/Relatives            4          0
## 204  With Other Friends/Relatives            1          2
## 205                   With Spouse            1          1
## 206  With Other Friends/Relatives            1          3
## 207  With Other Friends/Relatives            4          5
## 208                   With Spouse            1          1
## 209  With Other Friends/Relatives            1          0
## 210                         Alone            1          0
## 211                         Alone            0          1
## 212  With Other Friends/Relatives            2          0
## 215                   With Spouse            1          1
## 216                         Alone            0          1
## 217      With Spouse and Children            1          2
## 218                   With Spouse            1          1
## 219                   With Spouse            1          1
## 220  With Other Friends/Relatives            0          2
## 221                         Alone            1          0
## 222                         Alone            0          1
## 223  With Other Friends/Relatives            2          2
## 224  With Other Friends/Relatives            0          2
## 225                         Alone            0          1
## 226                         Alone            0          1
## 227                         Alone            0          1
## 228                         Alone            1          0
## 229                         Alone            1          0
## 231                         Alone            1          0
## 232  With Other Friends/Relatives            2          0
## 233                         Alone            0          1
## 234                         Alone            0          1
## 235                         Alone            0          1
## 236                   With Spouse            1          1
## 238  With Other Friends/Relatives            0          2
## 239                         Alone            1          0
## 240  With Other Friends/Relatives            2          0
## 242                   With Spouse            1          1
## 244  With Other Friends/Relatives            0          3
## 245      With Spouse and Children            2          2
## 246      With Spouse and Children            2          2
## 247                         Alone            0          1
## 248  With Other Friends/Relatives            3          8
## 249      With Spouse and Children            2          1
## 250  With Other Friends/Relatives            2          1
## 251      With Spouse and Children            3          2
## 252                   With Spouse            1          1
## 253                         Alone            1          0
## 254                   With Spouse            1          1
## 255                         Alone            1          0
## 256                   With Spouse            1          1
## 257                   With Spouse            1          1
## 258                         Alone            0          1
## 259  With Other Friends/Relatives            1          1
## 260                         Alone            0          1
## 262  With Other Friends/Relatives            1          1
## 263                         Alone            1          0
## 264  With Other Friends/Relatives            1          0
## 265                   With Spouse            1          1
## 266                         Alone            1          0
## 267                         Alone            0          1
## 269                         Alone            0          1
## 270                         Alone            0          1
## 271                         Alone            1          0
## 272      With Spouse and Children            2          2
## 273                         Alone            0          1
## 274                         Alone            0          1
## 275                         Alone            0          1
## 277                   With Spouse            1          1
## 278                         Alone            1          0
## 279                   With Spouse            1          0
## 280  With Other Friends/Relatives            0          2
## 282                         Alone            0          1
## 283  With Other Friends/Relatives            1          1
## 284                         Alone            0          1
## 286                         Alone            0          1
## 287                         Alone            1          0
## 288                   With Spouse            1          1
## 289  With Other Friends/Relatives            0          1
## 290                   With Spouse            1          1
## 291                         Alone            0          1
## 292  With Other Friends/Relatives            1          2
## 293                         Alone            1          0
## 294                   With Spouse            1          1
## 295                         Alone            0          1
## 296                   With Spouse            1          1
## 297                         Alone            1          0
## 298                   With Spouse            1          1
## 299                 With Children            1          1
## 300                   With Spouse            1          1
## 301                   With Spouse            1          1
## 302                         Alone            0          1
## 303      With Spouse and Children            2          1
## 304                   With Spouse            1          1
## 305                         Alone            2          0
## 306  With Other Friends/Relatives            0          2
## 307                         Alone            1          0
## 309                         Alone            0          1
## 310                   With Spouse            1          1
## 311                         Alone            1          0
## 312                         Alone            0          1
## 313                         Alone            1          0
## 314                         Alone            0          1
## 315                         Alone            1          0
## 316  With Other Friends/Relatives            1          1
## 317      With Spouse and Children            4          2
## 318      With Spouse and Children            2          2
## 319                   With Spouse            1          1
## 321                         Alone            0          1
## 322                         Alone            0          1
## 323      With Spouse and Children            2          2
## 324      With Spouse and Children            2          1
## 325                         Alone            0          1
## 326  With Other Friends/Relatives            1          1
## 327                         Alone            1          0
## 328  With Other Friends/Relatives            1          1
## 330  With Other Friends/Relatives            1          1
## 332                         Alone            0          1
## 333                         Alone            0          1
## 334                   With Spouse            1          1
## 335                   With Spouse            1          1
## 336  With Other Friends/Relatives            0          2
## 337      With Spouse and Children            4          1
## 338                   With Spouse            1          1
## 339                         Alone            1          0
## 340                         Alone            1          0
## 341                         Alone            0          1
## 342                   With Spouse            1          1
## 343                   With Spouse            1          1
## 344                         Alone            0          1
## 345                   With Spouse            1          1
## 346                         Alone            0          1
## 347                 With Children            1          1
## 348                         Alone            0          1
## 349                         Alone            1          0
## 350  With Other Friends/Relatives            3          1
## 351                         Alone            0          1
## 352                   With Spouse            1          1
## 353                         Alone            0          1
## 354                   With Spouse            1          1
## 355                         Alone            0          1
## 356  With Other Friends/Relatives            2          2
## 357                         Alone            0          1
## 358                 With Children            3          0
## 359                         Alone            0          1
## 360                   With Spouse            1          1
## 361  With Other Friends/Relatives            2          1
## 362                         Alone            0          1
## 363                         Alone            1          0
## 364                         Alone            0          1
## 365                   With Spouse            1          1
## 366                         Alone            1          0
## 367                   With Spouse            1          1
## 368                         Alone            0          1
## 369                         Alone            1          0
## 370                   With Spouse            1          1
## 371                   With Spouse            1          1
## 372  With Other Friends/Relatives            0          1
## 373                         Alone            1          0
## 374                         Alone            1          0
## 375                   With Spouse            1          1
## 376                   With Spouse            1          1
## 377  With Other Friends/Relatives            1          1
## 378                         Alone            1          0
## 379                         Alone            0          1
## 380                         Alone            1          0
## 381                   With Spouse            1          1
## 382                         Alone            1          0
## 383                         Alone            1          0
## 384                         Alone            1          0
## 385                         Alone            0          1
## 386  With Other Friends/Relatives            0          3
## 388                         Alone            0          1
## 390                   With Spouse            1          1
## 391                         Alone            0          1
## 392                   With Spouse            1          1
## 393                         Alone            1          0
## 394  With Other Friends/Relatives            1          2
## 395                         Alone            0          1
## 396  With Other Friends/Relatives            1          1
## 397                   With Spouse            1          1
## 398  With Other Friends/Relatives            0          2
## 399  With Other Friends/Relatives            0          1
## 400                         Alone            1          0
## 401                         Alone            1          0
## 402  With Other Friends/Relatives            2          0
## 403                   With Spouse            1          1
## 404  With Other Friends/Relatives            4         12
## 405                         Alone            1          0
## 406                   With Spouse            1          1
## 407                   With Spouse            1          1
## 408                 With Children            2          2
## 409  With Other Friends/Relatives            0          2
## 410                         Alone            0          1
## 412                         Alone            0          1
## 413                         Alone            0          1
## 414  With Other Friends/Relatives            2          1
## 415                         Alone            1          0
## 417                   With Spouse            1          1
## 419                   With Spouse            1          1
## 420  With Other Friends/Relatives            1          1
## 421                         Alone            0          1
## 422      With Spouse and Children            2          2
## 423  With Other Friends/Relatives            0          1
## 424      With Spouse and Children            1          2
## 425                   With Spouse            1          1
## 426                   With Spouse            1          1
## 427                   With Spouse            1          1
## 428                   With Spouse            1          1
## 429                         Alone            1          0
## 430      With Spouse and Children            2          2
## 431                         Alone            1          0
## 432  With Other Friends/Relatives            2          1
## 433                   With Spouse            1          1
## 434  With Other Friends/Relatives            4          2
## 435                         Alone            0          1
## 436                   With Spouse            1          1
## 437                         Alone            0          1
## 438  With Other Friends/Relatives            2          2
## 439      With Spouse and Children            2          1
## 440  With Other Friends/Relatives            1          0
## 441                   With Spouse            1          1
## 442                         Alone            0          1
## 443      With Spouse and Children            1          3
## 444                         Alone            1          0
## 446                         Alone            0          1
## 448                   With Spouse            1          1
## 449  With Other Friends/Relatives            1          2
## 450  With Other Friends/Relatives            0          2
## 451      With Spouse and Children            1          1
## 452                         Alone            1          0
## 453                   With Spouse            1          1
## 454                   With Spouse            1          1
## 456                         Alone            0          1
## 457                         Alone            0          1
## 458                         Alone            0          1
## 459                         Alone            0          1
## 460                         Alone            1          0
## 461  With Other Friends/Relatives            6          2
## 462                         Alone            0          1
## 463                   With Spouse            1          1
## 464                         Alone            0          1
## 465  With Other Friends/Relatives            4          0
## 466      With Spouse and Children            2          2
## 467                   With Spouse            1          1
## 468                 With Children            1          2
## 469                   With Spouse            1          0
## 470                         Alone            1          0
## 471                   With Spouse            1          1
## 472  With Other Friends/Relatives            1          1
## 473  With Other Friends/Relatives            1          1
## 474                   With Spouse            1          1
## 475                   With Spouse            1          1
## 476                         Alone            1          0
## 477  With Other Friends/Relatives            1          2
## 478                         Alone            0          1
## 479      With Spouse and Children            1          1
## 480  With Other Friends/Relatives            6          2
## 481  With Other Friends/Relatives            1          1
## 482                   With Spouse            1          1
## 483                   With Spouse            1          1
## 484      With Spouse and Children            2          1
## 485                         Alone            0          1
## 486                   With Spouse            1          1
## 487  With Other Friends/Relatives            1          1
## 488  With Other Friends/Relatives            2          2
## 489                   With Spouse            1          1
## 490                         Alone            0          1
## 491      With Spouse and Children            2          1
## 492      With Spouse and Children            3          2
## 493                   With Spouse            1          1
## 494                   With Spouse            1          1
## 495                         Alone            1          0
## 496                         Alone            1          0
## 497                   With Spouse            0          1
## 498                         Alone            0          1
## 499                   With Spouse            1          1
## 500                         Alone            1          0
## 501                         Alone            0          1
## 502                   With Spouse            1          1
## 503      With Spouse and Children            2          1
## 504                         Alone            1          0
## 505      With Spouse and Children            1          3
## 506                         Alone            0          1
## 507                         Alone            0          1
## 508                         Alone            0          1
## 510                   With Spouse            1          1
## 511                         Alone            0          1
## 512                         Alone            0          1
## 513                         Alone            0          1
## 514                 With Children            1          1
## 515                         Alone            0          1
## 516                         Alone            0          1
## 517      With Spouse and Children            3          3
## 518                   With Spouse            1          1
## 519                         Alone            0          1
## 520                         Alone            0          1
## 521  With Other Friends/Relatives            5          5
## 522  With Other Friends/Relatives            1          2
## 523                         Alone            1          0
## 524                         Alone            0          1
## 525                   With Spouse            1          1
## 526                   With Spouse            1          1
## 527      With Spouse and Children            2          2
## 528      With Spouse and Children            3          1
## 529                         Alone            1          0
## 530                         Alone            0          1
## 531                         Alone            0          1
## 532                   With Spouse            1          1
## 533                         Alone            1          0
## 534                   With Spouse            1          1
## 535  With Other Friends/Relatives            2          0
## 536                   With Spouse            1          1
## 537                         Alone            1          0
## 538                         Alone            0          1
## 539                   With Spouse            1          1
## 540                         Alone            0          1
## 541                   With Spouse            1          1
## 542                   With Spouse            1          1
## 544                 With Children            1          2
## 545                         Alone            0          1
## 546                         Alone            0          1
## 547                   With Spouse            1          1
## 548  With Other Friends/Relatives            1          1
## 549                   With Spouse            1          1
## 550                         Alone            0          1
## 551      With Spouse and Children            2          4
## 552                         Alone            0          1
## 553                         Alone            0          1
## 554      With Spouse and Children            2          1
## 555                         Alone            1          0
## 556                         Alone            1          0
## 557                   With Spouse            1          1
## 558                         Alone            1          0
## 559      With Spouse and Children            2          2
## 560                         Alone            0          1
## 561                         Alone            1          0
## 562                         Alone            0          1
## 563                   With Spouse            1          1
## 564                   With Spouse            1          1
## 565                         Alone            1          0
## 566                   With Spouse            1          1
## 567                   With Spouse            1          1
## 568  With Other Friends/Relatives            1          3
## 570  With Other Friends/Relatives            2          0
## 571                   With Spouse            1          1
## 572                         Alone            0          1
## 573                         Alone            0          1
## 574      With Spouse and Children            1          3
## 575                   With Spouse            1          1
## 576                         Alone            0          1
## 577                         Alone            1          1
## 578  With Other Friends/Relatives            3          2
## 579                   With Spouse            1          1
## 580                   With Spouse            1          1
## 581                   With Spouse            1          1
## 582                         Alone            0          1
## 583                   With Spouse            1          1
## 584  With Other Friends/Relatives            2          3
## 585                   With Spouse            1          1
## 586                         Alone            0          1
## 587                   With Spouse            1          1
## 588  With Other Friends/Relatives            2          1
## 589  With Other Friends/Relatives            3          1
## 590                         Alone            0          1
## 591      With Spouse and Children            3          1
## 592                         Alone            0          1
## 593  With Other Friends/Relatives            7          0
## 594                         Alone            1          0
## 595                   With Spouse            1          1
## 596                   With Spouse            1          1
## 597                   With Spouse            1          1
## 598  With Other Friends/Relatives            2          1
## 600                   With Spouse            1          1
## 601                         Alone            0          1
## 602  With Other Friends/Relatives            2          0
## 603                         Alone            0          1
## 604  With Other Friends/Relatives            1          2
## 605                         Alone            1          0
## 606                         Alone            1          0
## 607  With Other Friends/Relatives            4          1
## 608                   With Spouse            1          1
## 609                         Alone            1          0
## 610                   With Spouse            1          1
## 612  With Other Friends/Relatives            0          2
## 613  With Other Friends/Relatives            2          4
## 614      With Spouse and Children            1          3
## 615  With Other Friends/Relatives            5          2
## 616                         Alone            0          1
## 617                         Alone            0          1
## 618                         Alone            0          1
## 620                         Alone            0          1
## 622                   With Spouse            1          1
## 623                   With Spouse            1          1
## 624                   With Spouse            1          1
## 625                         Alone            0          1
## 626                         Alone            1          0
## 627                         Alone            0          1
## 628                         Alone            0          1
## 629  With Other Friends/Relatives            6          6
## 630                         Alone            0          1
## 631                   With Spouse            1          1
## 632                   With Spouse            1          1
## 633                         Alone            0          1
## 634                   With Spouse            1          1
## 635                         Alone            0          1
## 636                         Alone            1          0
## 637                         Alone            0          1
## 638  With Other Friends/Relatives            1          1
## 639                   With Spouse            1          1
## 640                         Alone            1          0
## 641                         Alone            1          0
## 642                   With Spouse            1          1
## 643                   With Spouse            0          3
## 644                   With Spouse            1          1
## 645                         Alone            0          1
## 646                         Alone            0          1
## 647                         Alone            1          0
## 648                         Alone            1          0
## 649                   With Spouse            1          1
## 650                   With Spouse            1          1
## 651  With Other Friends/Relatives            1          1
## 652                         Alone            1          0
## 653                         Alone            1          0
## 655      With Spouse and Children            2          1
## 657                   With Spouse            1          1
## 658                         Alone            1          0
## 659                         Alone            0          1
## 660                         Alone            0          1
## 661                         Alone            1          0
## 662                         Alone            0          1
## 663                 With Children            2          1
## 664                         Alone            0          1
## 665                 With Children            1          1
## 666                   With Spouse            1          1
## 667                         Alone            1          0
## 668                   With Spouse            1          1
## 669      With Spouse and Children            1          4
## 670                         Alone            0          1
## 671                         Alone            1          0
## 672  With Other Friends/Relatives            0          2
## 673                         Alone            0          1
## 674      With Spouse and Children            1          3
## 675                         Alone            0          1
## 676      With Spouse and Children            4          1
## 677  With Other Friends/Relatives            2          2
## 679  With Other Friends/Relatives            1          2
## 680      With Spouse and Children            2          1
## 681  With Other Friends/Relatives            4          2
## 682  With Other Friends/Relatives           15         15
## 683                         Alone            1          0
## 684                   With Spouse            1          1
## 685  With Other Friends/Relatives            2          0
## 687                   With Spouse            1          1
## 688  With Other Friends/Relatives            2          0
## 689                         Alone            1          0
## 690  With Other Friends/Relatives            0          2
## 691                         Alone            1          0
## 692                 With Children            2          2
## 693                         Alone            1          0
## 694                         Alone            0          1
## 696                         Alone            0          1
## 698                   With Spouse            1          1
## 699                   With Spouse            1          1
## 700                   With Spouse            1          1
## 701                         Alone            1          0
## 702  With Other Friends/Relatives            8          6
## 703                         Alone            0          1
## 704                         Alone            1          0
## 706                         Alone            1          0
## 707      With Spouse and Children            3          3
## 708                   With Spouse            1          1
## 709                         Alone            0          1
## 710  With Other Friends/Relatives            1          1
## 711                   With Spouse            1          0
## 712  With Other Friends/Relatives            2          2
## 713                   With Spouse            1          1
## 714                         Alone            1          0
## 715                   With Spouse            1          1
## 716                         Alone            0          1
## 718  With Other Friends/Relatives            5          2
## 719                   With Spouse            1          1
## 720                         Alone            0          1
## 721                         Alone            0          1
## 722                         Alone            0          1
## 723  With Other Friends/Relatives            5          4
## 724                         Alone            0          1
## 725                   With Spouse            1          1
## 727                         Alone            1          0
## 728                   With Spouse            1          1
## 729                         Alone            1          0
## 730                   With Spouse            1          1
## 731                         Alone            1          0
## 732                         Alone            1          0
## 733                   With Spouse            1          1
## 734      With Spouse and Children            2          2
## 735  With Other Friends/Relatives            0          3
## 736  With Other Friends/Relatives            1          1
## 737                   With Spouse            1          1
## 738                   With Spouse            1          0
## 739  With Other Friends/Relatives            1          1
## 740                   With Spouse            1          1
## 741                         Alone            1          0
## 742                   With Spouse            1          1
## 743  With Other Friends/Relatives            3          3
## 744  With Other Friends/Relatives            3          0
## 745  With Other Friends/Relatives            1          1
## 746                   With Spouse            0          1
## 747  With Other Friends/Relatives            0          3
## 748  With Other Friends/Relatives            1          1
## 749  With Other Friends/Relatives            3          2
## 750                   With Spouse            1          1
## 752                         Alone            0          1
## 753                         Alone            0          1
## 754                         Alone            1          0
## 755                         Alone            1          0
## 756                         Alone            1          0
## 758                   With Spouse            1          1
## 759                         Alone            1          0
## 761                         Alone            0          1
## 762                   With Spouse            1          1
## 763                         Alone            0          1
## 764                         Alone            0          1
## 765                         Alone            0          1
## 766  With Other Friends/Relatives            2          8
## 767  With Other Friends/Relatives            2          2
## 769                         Alone            0          1
## 770                         Alone            0          1
## 771  With Other Friends/Relatives            2          1
## 772                 With Children            2          3
## 773                         Alone            1          0
## 774                         Alone            0          1
## 775      With Spouse and Children            3          1
## 776                   With Spouse            1          1
## 777                         Alone            1          0
## 778                         Alone            0          1
## 779                   With Spouse            1          1
## 780                         Alone            0          1
## 781                         Alone            1          0
## 782  With Other Friends/Relatives            3          1
## 783                   With Spouse            1          1
## 784                         Alone            0          1
## 785                         Alone            1          0
## 786      With Spouse and Children            1          2
## 787                         Alone            1          0
## 788  With Other Friends/Relatives            1          1
## 789                         Alone            1          0
## 790                 With Children            1          1
## 791                   With Spouse            1          1
## 792  With Other Friends/Relatives            2          0
## 793                         Alone            0          1
## 795                         Alone            1          1
## 796                   With Spouse            1          1
## 797  With Other Friends/Relatives            1          1
## 798  With Other Friends/Relatives            0          2
## 799                         Alone            0          1
## 800      With Spouse and Children            2          2
## 801                         Alone            0          1
## 802  With Other Friends/Relatives            1          1
## 803                         Alone            0          1
## 804                         Alone            1          0
## 805      With Spouse and Children            2          1
## 806                         Alone            1          0
## 808                   With Spouse            1          1
## 809  With Other Friends/Relatives            4          0
## 810                         Alone            0          1
## 811                         Alone            0          1
## 812      With Spouse and Children            2          2
## 813                         Alone            1          0
## 814                         Alone            0          1
## 815      With Spouse and Children            1          2
## 816                         Alone            0          1
## 817                         Alone            1          0
## 818      With Spouse and Children            2          1
## 820                         Alone            0          1
## 821  With Other Friends/Relatives            1          3
## 822                         Alone            0          1
## 823                   With Spouse            1          1
## 824                         Alone            0          1
## 825  With Other Friends/Relatives            5          1
## 826  With Other Friends/Relatives            2          1
## 827                   With Spouse            1          1
## 828                         Alone            1          0
## 829                   With Spouse            3          2
## 830                   With Spouse            1          1
## 831                   With Spouse            1          1
## 832                         Alone            1          0
## 833                   With Spouse            1          1
## 834  With Other Friends/Relatives            1          1
## 835                         Alone            0          1
## 836      With Spouse and Children            2          2
## 837  With Other Friends/Relatives            0          2
## 838                         Alone            0          1
## 839                         Alone            0          1
## 840                   With Spouse            1          1
## 841                         Alone            1          0
## 842                         Alone            0          1
## 843      With Spouse and Children            2          1
## 844      With Spouse and Children            2          2
## 845      With Spouse and Children            1          2
## 846                   With Spouse            1          1
## 847                 With Children            1          2
## 848                         Alone            0          1
## 849                   With Spouse            1          1
## 851  With Other Friends/Relatives            1          2
## 852  With Other Friends/Relatives            0          2
## 853      With Spouse and Children            3          2
## 854                   With Spouse            1          1
## 855                   With Spouse            1          1
## 856                 With Children            2          0
## 857                         Alone            0          1
## 858                 With Children            2          0
## 859                         Alone            0          1
## 860                         Alone            0          1
## 861                   With Spouse            1          1
## 862  With Other Friends/Relatives            1          1
## 863                         Alone            1          0
## 864                   With Spouse            1          1
## 865                   With Spouse            1          1
## 866                   With Spouse            1          1
## 867                         Alone            1          0
## 869                         Alone            1          0
## 870                   With Spouse            1          1
## 871                   With Spouse            1          1
## 872                         Alone            1          0
## 873                         Alone            0          1
## 874      With Spouse and Children            2          2
## 875  With Other Friends/Relatives            2          1
## 876                   With Spouse            1          1
## 877                         Alone            0          1
## 878                 With Children            2          2
## 880                         Alone            1          0
## 881                   With Spouse            1          1
## 882                   With Spouse            1          1
## 883                         Alone            0          1
## 884  With Other Friends/Relatives            0          3
## 885                         Alone            0          1
## 886                         Alone            1          0
## 887                         Alone            0          1
## 888      With Spouse and Children            3          2
## 889  With Other Friends/Relatives            2          0
## 891  With Other Friends/Relatives            4          0
## 892                         Alone            0          1
## 893                         Alone            0          1
## 894                         Alone            0          1
## 895                         Alone            1          0
## 896  With Other Friends/Relatives            2          1
## 898                 With Children            1          2
## 900                         Alone            1          0
## 901                         Alone            0          1
## 904  With Other Friends/Relatives            2          0
## 905                         Alone            0          1
## 906                 With Children            4          4
## 907                 With Children            1          1
## 908                   With Spouse            1          1
## 909                         Alone            0          1
## 910                         Alone            1          0
## 911                   With Spouse            1          1
## 913                         Alone            0          1
## 914                         Alone            0          1
## 915                         Alone            0          1
## 916                         Alone            1          0
## 917                         Alone            1          0
## 918                   With Spouse            1          1
## 919                   With Spouse            1          1
## 920  With Other Friends/Relatives            1          1
## 921                         Alone            0          1
## 922  With Other Friends/Relatives            0          4
## 923                         Alone            2          2
## 924  With Other Friends/Relatives            2          6
## 925                         Alone            1          0
## 926                         Alone            0          1
## 927  With Other Friends/Relatives           24          1
## 928                         Alone            0          1
## 929                   With Spouse            1          1
## 930                   With Spouse            1          1
## 931                 With Children            0          2
## 932  With Other Friends/Relatives            3          0
## 933                   With Spouse            1          1
## 934                   With Spouse            1          1
## 935                         Alone            0          1
## 937                 With Children            1          1
## 938                         Alone            1          0
## 939                   With Spouse            1          1
## 940      With Spouse and Children            4          2
## 941                         Alone            1          0
## 942                         Alone            0          1
## 943  With Other Friends/Relatives            1          1
## 944                   With Spouse            1          1
## 945  With Other Friends/Relatives            2          0
## 946  With Other Friends/Relatives            2          2
## 947                 With Children            2          1
## 948  With Other Friends/Relatives            1          1
## 949                         Alone            1          0
## 950  With Other Friends/Relatives            1          1
## 951  With Other Friends/Relatives            1          1
## 952                         Alone            0          1
## 953  With Other Friends/Relatives            1          1
## 955                   With Spouse            1          1
## 956  With Other Friends/Relatives            3          1
## 957                   With Spouse            1          1
## 958                   With Spouse            1          1
## 959                         Alone            0          1
## 960                   With Spouse            1          1
## 961                         Alone            1          0
## 962                         Alone            0          1
## 963                   With Spouse            1          1
## 964                   With Spouse            1          1
## 966                   With Spouse            1          1
## 967                   With Spouse            1          1
## 968                         Alone            0          1
## 971                         Alone            0          1
## 972      With Spouse and Children            3          1
## 973      With Spouse and Children            2          1
## 975                         Alone            0          1
## 976                         Alone            0          1
## 977  With Other Friends/Relatives            1          0
## 978                         Alone            0          1
## 979                         Alone            0          1
## 980  With Other Friends/Relatives            1          2
## 981                         Alone            1          0
## 982                   With Spouse            1          1
## 983                   With Spouse            1          1
## 984                         Alone            0          1
## 985                         Alone            0          1
## 986                         Alone            0          1
## 987                   With Spouse            1          1
## 988                   With Spouse            1          1
## 989                         Alone            0          1
## 991                         Alone            1          0
## 992                         Alone            1          0
## 993                         Alone            0          1
## 994                         Alone            0          1
## 995  With Other Friends/Relatives            1          1
## 996                         Alone            1          0
## 997                         Alone            0          1
## 998  With Other Friends/Relatives            1          1
## 999                   With Spouse            1          1
## 1000                  With Spouse            1          1
## 1001                        Alone            1          0
## 1002                        Alone            1          0
## 1003                  With Spouse            1          1
## 1005 With Other Friends/Relatives            0          2
## 1006                  With Spouse            1          1
## 1007                  With Spouse            1          1
## 1008                        Alone            0          1
## 1009                        Alone            1          0
## 1010                  With Spouse            1          1
## 1011                  With Spouse            1          1
## 1012                        Alone            1          0
## 1013                        Alone            0          1
## 1014                  With Spouse            1          1
## 1015                        Alone            0          1
## 1016                        Alone            1          0
## 1017     With Spouse and Children            1          3
## 1018                        Alone            1          0
## 1019                        Alone            0          1
## 1020                        Alone            1          0
## 1021                        Alone            0          1
## 1022                  With Spouse            1          1
## 1023 With Other Friends/Relatives            3          5
## 1024                  With Spouse            1          1
## 1025                        Alone            1          0
## 1026                        Alone            0          1
## 1027                        Alone            1          0
## 1028                        Alone            0          1
## 1029 With Other Friends/Relatives            3          0
## 1030 With Other Friends/Relatives            3          3
## 1031     With Spouse and Children            3          1
## 1032                  With Spouse            1          1
## 1033                  With Spouse            1          1
## 1034                  With Spouse            1          1
## 1035                  With Spouse            1          1
## 1036 With Other Friends/Relatives            3          6
## 1037                        Alone            1          0
## 1038                  With Spouse            1          1
## 1039                  With Spouse            1          1
## 1041                        Alone            1          0
## 1042                  With Spouse            1          1
## 1043                        Alone            1          0
## 1044                        Alone            0          1
## 1045                        Alone            0          1
## 1046                        Alone            0          1
## 1047                        Alone            1          0
## 1048                        Alone            0          1
## 1049                  With Spouse            1          1
## 1050                        Alone            0          1
## 1051                With Children            2          0
## 1052                  With Spouse            2          0
## 1053                        Alone            1          0
## 1055                With Children            2          0
## 1056                  With Spouse            1          1
## 1057                With Children            2          1
## 1058                  With Spouse            1          1
## 1059                        Alone            1          0
## 1060                        Alone            1          0
## 1061     With Spouse and Children            2          2
## 1062                        Alone            0          1
## 1063                  With Spouse            1          1
## 1065                  With Spouse            1          1
## 1066                        Alone            0          1
## 1067                  With Spouse            1          1
## 1068                  With Spouse            1          1
## 1069 With Other Friends/Relatives            1          1
## 1070     With Spouse and Children            2          1
## 1071 With Other Friends/Relatives            2          1
## 1072                        Alone            0          1
## 1073                        Alone            0          1
## 1074 With Other Friends/Relatives            0          2
## 1075                  With Spouse            1          1
## 1077                        Alone            0          1
## 1078                        Alone            0          1
## 1079                  With Spouse            1          1
## 1080                  With Spouse            1          1
## 1081                  With Spouse            1          1
## 1082                        Alone            1          0
## 1083                With Children            1          1
## 1084                        Alone            0          1
## 1086                        Alone            0          1
## 1087                        Alone            0          1
## 1088                        Alone            0          1
## 1089                  With Spouse            1          1
## 1090 With Other Friends/Relatives            3          4
## 1091 With Other Friends/Relatives            0          2
## 1092                        Alone            0          1
## 1093                  With Spouse            1          1
## 1094 With Other Friends/Relatives            3         15
## 1095                  With Spouse            1          1
## 1096                        Alone            0          1
## 1097                        Alone            0          1
## 1098                  With Spouse            1          1
## 1099                        Alone            0          1
## 1100                        Alone            0          1
## 1101                  With Spouse            1          1
## 1102                        Alone            0          1
## 1103                        Alone            0          1
## 1104 With Other Friends/Relatives            2          1
## 1105 With Other Friends/Relatives            0          4
## 1106                        Alone            1          0
## 1107     With Spouse and Children            2          1
## 1108                  With Spouse            1          1
## 1109 With Other Friends/Relatives            3          5
## 1110                        Alone            1          0
## 1111     With Spouse and Children            2          1
## 1112                        Alone            0          1
## 1113                        Alone            0          1
## 1114                  With Spouse            1          1
## 1116     With Spouse and Children            1          2
## 1118 With Other Friends/Relatives            1          1
## 1119                        Alone            0          1
## 1120 With Other Friends/Relatives            2          1
## 1123                  With Spouse            1          1
## 1124                        Alone            0          1
## 1125                        Alone            0          1
## 1126                  With Spouse            1          1
## 1127                  With Spouse            1          1
## 1128                  With Spouse            1          1
## 1129                  With Spouse            1          1
## 1130                        Alone            1          0
## 1131                  With Spouse            1          1
## 1132 With Other Friends/Relatives            1          1
## 1133                        Alone            0          1
## 1135                        Alone            0          1
## 1136                        Alone            0          1
## 1137                  With Spouse            1          1
## 1138                  With Spouse            1          1
## 1139 With Other Friends/Relatives            2          0
## 1140                  With Spouse            1          1
## 1141                        Alone            1          0
## 1142                        Alone            0          1
## 1143 With Other Friends/Relatives            1          5
## 1144                  With Spouse            1          1
## 1145                        Alone            0          1
## 1146                        Alone            0          1
## 1147                  With Spouse            1          1
## 1148                        Alone            0          1
## 1149                  With Spouse            0          1
## 1150     With Spouse and Children            2          3
## 1151                        Alone            1          0
## 1152                        Alone            0          1
## 1153 With Other Friends/Relatives            1          0
## 1154     With Spouse and Children            2          1
## 1155                        Alone            0          1
## 1156                        Alone            1          0
## 1157                        Alone            1          0
## 1158                        Alone            0          1
## 1159                        Alone            0          1
## 1160                  With Spouse            1          1
## 1161                        Alone            0          1
## 1163                        Alone            0          1
## 1164                        Alone            1          0
## 1165                        Alone            0          1
## 1166                        Alone            1          0
## 1167                With Children            1          1
## 1168                  With Spouse            1          1
## 1169     With Spouse and Children            2          2
## 1170                        Alone            1          0
## 1172 With Other Friends/Relatives            0          1
## 1173                        Alone            0          1
## 1174                        Alone            0          1
## 1175                  With Spouse            1          1
## 1176 With Other Friends/Relatives            3          0
## 1177                With Children            0          2
## 1178                  With Spouse            1          1
## 1179 With Other Friends/Relatives            3          0
## 1180                        Alone            0          1
## 1181                  With Spouse            1          1
## 1182                        Alone            1          0
## 1183     With Spouse and Children            1          3
## 1184                        Alone            0          1
## 1185                        Alone            0          1
## 1186 With Other Friends/Relatives            1          1
## 1187                        Alone            0          1
## 1188     With Spouse and Children            3          1
## 1189                        Alone            1          0
## 1190                        Alone            0          1
## 1191                  With Spouse            1          1
## 1192                        Alone            0          1
## 1193                  With Spouse            1          1
## 1194                        Alone            1          0
## 1195 With Other Friends/Relatives            1          1
## 1196                  With Spouse            0          1
## 1197 With Other Friends/Relatives            2          2
## 1198     With Spouse and Children            4          2
## 1199 With Other Friends/Relatives            1          1
## 1200                  With Spouse            1          1
## 1201                  With Spouse            1          1
## 1202                        Alone            1          0
## 1203 With Other Friends/Relatives            1          1
## 1205                        Alone            0          1
## 1206                        Alone            0          1
## 1207                        Alone            0          1
## 1208                  With Spouse            1          1
## 1209 With Other Friends/Relatives            2          2
## 1210                  With Spouse            1          1
## 1211                  With Spouse            1          1
## 1212                  With Spouse            1          1
## 1213 With Other Friends/Relatives            1          1
## 1214     With Spouse and Children            3          1
## 1215                        Alone            1          0
## 1216                  With Spouse            1          1
## 1217 With Other Friends/Relatives            2          0
## 1218 With Other Friends/Relatives            2          2
## 1219                        Alone            1          0
## 1220     With Spouse and Children            2          1
## 1221                  With Spouse            1          1
## 1222 With Other Friends/Relatives            2          1
## 1223                        Alone            0          1
## 1224                        Alone            0          1
## 1225 With Other Friends/Relatives            1          2
## 1227                        Alone            0          1
## 1228                        Alone            1          0
## 1229                  With Spouse            1          1
## 1232                        Alone            0          1
## 1233     With Spouse and Children            0          2
## 1234                        Alone            0          1
## 1235                        Alone            1          0
## 1237                  With Spouse            1          1
## 1238                        Alone            0          1
## 1239                  With Spouse            1          1
## 1240                        Alone            0          1
## 1241 With Other Friends/Relatives            0          2
## 1242     With Spouse and Children            2          1
## 1243                        Alone            1          0
## 1244                        Alone            1          0
## 1245                  With Spouse            1          1
## 1246                  With Spouse            1          1
## 1247                  With Spouse            1          1
## 1248                        Alone            0          1
## 1249 With Other Friends/Relatives            1          2
## 1250                  With Spouse            1          1
## 1251 With Other Friends/Relatives            1          3
## 1252                        Alone            0          1
## 1253                        Alone            1          0
## 1254                With Children            0          2
## 1255                  With Spouse            1          1
## 1256 With Other Friends/Relatives            2          0
## 1257                        Alone            0          1
## 1258                        Alone            1          0
## 1259                  With Spouse            1          1
## 1260     With Spouse and Children            2          2
## 1261                With Children            0          1
## 1262                  With Spouse            1          1
## 1263 With Other Friends/Relatives            0          2
## 1264     With Spouse and Children            2          2
## 1265                        Alone            0          1
## 1266                  With Spouse            1          1
## 1267 With Other Friends/Relatives            2          0
## 1268                  With Spouse            1          1
## 1269                        Alone            1          0
## 1270 With Other Friends/Relatives            0          4
## 1271                        Alone            1          0
## 1272 With Other Friends/Relatives            0          3
## 1274                With Children            2          1
## 1275                        Alone            1          0
## 1276                  With Spouse            1          1
## 1277                        Alone            0          1
## 1278                        Alone            0          1
## 1279                        Alone            0          1
## 1280                        Alone            1          0
## 1281 With Other Friends/Relatives            0          3
## 1282                  With Spouse            1          1
## 1283                        Alone            0          1
## 1284                        Alone            0          1
## 1286                With Children            2          0
## 1287                  With Spouse            1          1
## 1288 With Other Friends/Relatives            2          0
## 1289                        Alone            0          1
## 1290 With Other Friends/Relatives            2          0
## 1291 With Other Friends/Relatives            3          1
## 1292                        Alone            0          1
## 1293                  With Spouse            1          1
## 1294                        Alone            0          1
## 1295                  With Spouse            1          1
## 1296                  With Spouse            1          1
## 1297                        Alone            1          0
## 1298                  With Spouse            1          1
## 1299                  With Spouse            1          1
## 1300                        Alone            1          0
## 1301     With Spouse and Children            2          1
## 1302                        Alone            0          1
## 1303 With Other Friends/Relatives            0          2
## 1304                        Alone            0          1
## 1305                        Alone            0          1
## 1306                        Alone            0          1
## 1307                  With Spouse            1          1
## 1308                        Alone            1          0
## 1309                With Children            3          0
## 1310                  With Spouse            1          1
## 1311 With Other Friends/Relatives            0          2
## 1312                        Alone            1          0
## 1313                  With Spouse            1          1
## 1314                        Alone            0          1
## 1315                        Alone            1          0
## 1316                        Alone            1          0
## 1317                        Alone            0          1
## 1318                        Alone            0          1
## 1320                  With Spouse            1          1
## 1321                  With Spouse            1          1
## 1322                        Alone            0          1
## 1323 With Other Friends/Relatives            2          0
## 1324                        Alone            0          1
## 1325     With Spouse and Children            2          1
## 1326                        Alone            0          1
## 1327                        Alone            0          1
## 1328 With Other Friends/Relatives            1          1
## 1329     With Spouse and Children            3          1
## 1330                        Alone            1          0
## 1331 With Other Friends/Relatives            1          1
## 1332     With Spouse and Children            3          2
## 1333                  With Spouse            2          1
## 1334                        Alone            1          0
## 1335                  With Spouse            1          1
## 1336                        Alone            0          1
## 1337                        Alone            1          0
## 1338 With Other Friends/Relatives            1          1
## 1339 With Other Friends/Relatives            2          2
## 1340                        Alone            0          1
## 1341 With Other Friends/Relatives            1          0
## 1342 With Other Friends/Relatives            1          1
## 1343 With Other Friends/Relatives            2          2
## 1344     With Spouse and Children            3          1
## 1345     With Spouse and Children            3          2
## 1346                  With Spouse            1          1
## 1347                With Children            2          2
## 1348                        Alone            0          1
## 1349                        Alone            0          1
## 1350                        Alone            1          0
## 1351                        Alone            0          1
## 1352                        Alone            1          0
## 1353                        Alone            0          1
## 1354                  With Spouse            1          1
## 1355                        Alone            0          1
## 1356                        Alone            0          1
## 1357                        Alone            1          0
## 1359                        Alone            0          1
## 1361                  With Spouse            1          1
## 1362                        Alone            0          1
## 1363 With Other Friends/Relatives            2          0
## 1365                  With Spouse            1          1
## 1366                  With Spouse            1          1
## 1367                  With Spouse            1          1
## 1368                  With Spouse            1          1
## 1369 With Other Friends/Relatives            2          3
## 1371     With Spouse and Children            4          1
## 1372                        Alone            1          0
## 1373                  With Spouse            1          1
## 1374                  With Spouse            1          1
## 1376 With Other Friends/Relatives            1          1
## 1377 With Other Friends/Relatives            1          3
## 1378                  With Spouse            1          1
## 1379                  With Spouse            1          1
## 1380                        Alone            1          0
## 1381 With Other Friends/Relatives            4          4
## 1383 With Other Friends/Relatives            2          2
## 1384                  With Spouse            1          1
## 1385                  With Spouse            1          1
## 1386 With Other Friends/Relatives            0          2
## 1387                  With Spouse            1          0
## 1388                        Alone            1          0
## 1389                  With Spouse            1          1
## 1390     With Spouse and Children            3          1
## 1391                        Alone            0          1
## 1392                  With Spouse            1          1
## 1393                  With Spouse            1          1
## 1394                        Alone            0          1
## 1395                        Alone            0          1
## 1396                        Alone            0          1
## 1397                        Alone            1          0
## 1398 With Other Friends/Relatives            2          0
## 1399                        Alone            0          1
## 1400                  With Spouse            1          1
## 1401                  With Spouse            0          1
## 1402 With Other Friends/Relatives            3          3
## 1403                        Alone            1          0
## 1404     With Spouse and Children            2          2
## 1405                  With Spouse            1          1
## 1406                  With Spouse            1          1
## 1407                        Alone            1          0
## 1408 With Other Friends/Relatives            1          8
## 1409                  With Spouse            1          1
## 1410                  With Spouse            1          1
## 1411     With Spouse and Children            1          2
## 1412 With Other Friends/Relatives            1          1
## 1413                        Alone            0          1
## 1414                        Alone            1          0
## 1415     With Spouse and Children            2          1
## 1416                  With Spouse            1          1
## 1417                  With Spouse            1          1
## 1418                        Alone            0          1
## 1419                        Alone            0          1
## 1420 With Other Friends/Relatives            2          0
## 1421                        Alone            0          1
## 1422                        Alone            0          1
## 1423                  With Spouse            1          1
## 1425                  With Spouse            1          1
## 1426                        Alone            1          0
## 1427                  With Spouse            1          0
## 1428                  With Spouse            1          1
## 1429                        Alone            0          1
## 1430                        Alone            1          0
## 1431                        Alone            0          1
## 1432                        Alone            0          1
## 1433                With Children            1          1
## 1434                        Alone            0          1
## 1435                        Alone            0          1
## 1437                        Alone            1          0
## 1438                        Alone            1          0
## 1439                        Alone            1          0
## 1440 With Other Friends/Relatives            0          2
## 1441                        Alone            1          0
## 1442                        Alone            0          1
## 1443                  With Spouse            1          1
## 1444                        Alone            1          0
## 1445                With Children            1          1
## 1446                  With Spouse            1          1
## 1447                  With Spouse            1          1
## 1448                        Alone            1          0
## 1449                With Children            2          0
## 1450                  With Spouse            1          1
## 1451     With Spouse and Children            1          2
## 1452                        Alone            1          0
## 1453                        Alone            0          1
## 1454                  With Spouse            1          1
## 1455                        Alone            1          0
## 1456                        Alone            1          0
## 1457                        Alone            0          1
## 1458 With Other Friends/Relatives            2          0
## 1459                  With Spouse            1          1
## 1460                        Alone            0          1
## 1461 With Other Friends/Relatives            4          1
## 1464     With Spouse and Children            1          2
## 1465                  With Spouse            1          1
## 1466                        Alone            1          0
## 1467                        Alone            0          1
## 1468                  With Spouse            1          1
## 1469                  With Spouse            1          1
## 1470                        Alone            0          1
## 1471                  With Spouse            1          1
## 1472                  With Spouse            1          1
## 1473 With Other Friends/Relatives            1          1
## 1474                  With Spouse            1          1
## 1476                  With Spouse            0          1
## 1477                        Alone            0          1
## 1478                  With Spouse            1          1
## 1479                  With Spouse            1          1
## 1480                        Alone            1          0
## 1481     With Spouse and Children            1          3
## 1482                With Children            0          2
## 1483                        Alone            0          1
## 1484 With Other Friends/Relatives            1          1
## 1485                        Alone            1          0
## 1486                        Alone            0          1
## 1487 With Other Friends/Relatives            3          0
## 1488                        Alone            0          1
## 1489                  With Spouse            1          1
## 1490                        Alone            0          1
## 1491                        Alone            1          0
## 1492                        Alone            1          0
## 1493                        Alone            0          1
## 1494                        Alone            0          1
## 1495     With Spouse and Children            1          0
## 1496                        Alone            0          1
## 1497                  With Spouse            1          1
## 1498                        Alone            0          1
## 1499                  With Spouse            1          1
## 1500                        Alone            1          0
## 1501                        Alone            0          1
## 1502                        Alone            1          0
## 1503                        Alone            0          1
## 1504                        Alone            0          1
## 1505 With Other Friends/Relatives           10          1
## 1506                        Alone            1          0
## 1507                  With Spouse            1          1
## 1509 With Other Friends/Relatives            2          2
## 1510                        Alone            1          0
## 1511                  With Spouse            1          1
## 1512                With Children            0          2
## 1514                        Alone            0          1
## 1515                        Alone            0          1
## 1516                        Alone            0          1
## 1517                        Alone            0          1
## 1518                  With Spouse            1          1
## 1519                  With Spouse            1          1
## 1520                        Alone            0          1
## 1521                  With Spouse            1          1
## 1522                  With Spouse            2          0
## 1524                        Alone            0          1
## 1525                With Children            2          0
## 1526                        Alone            0          1
## 1527                        Alone            1          0
## 1528                  With Spouse            1          1
## 1529     With Spouse and Children            3          1
## 1530                        Alone            1          0
## 1531                        Alone            1          0
## 1532                        Alone            0          1
## 1533                        Alone            0          1
## 1534 With Other Friends/Relatives            2          0
## 1535                        Alone            0          1
## 1536                        Alone            1          0
## 1537                        Alone            0          1
## 1538 With Other Friends/Relatives            1          2
## 1539                        Alone            1          1
## 1540 With Other Friends/Relatives            2          0
## 1541                        Alone            0          1
## 1542 With Other Friends/Relatives            0          4
## 1543     With Spouse and Children            3          1
## 1544     With Spouse and Children            2          1
## 1545                  With Spouse            1          1
## 1546                        Alone            0          1
## 1547                  With Spouse            1          1
## 1548                  With Spouse            1          1
## 1549 With Other Friends/Relatives            0          1
## 1550                        Alone            1          0
## 1551                        Alone            0          1
## 1552                        Alone            0          1
## 1553                  With Spouse            1          1
## 1554                  With Spouse            1          1
## 1555                        Alone            0          1
## 1556                  With Spouse            1          1
## 1557                        Alone            0          1
## 1558     With Spouse and Children            2          2
## 1559                        Alone            0          1
## 1560                  With Spouse            1          1
## 1561     With Spouse and Children            3          2
## 1562                        Alone            0          1
## 1563                  With Spouse            1          1
## 1564                        Alone            0          1
## 1565 With Other Friends/Relatives            4          1
## 1566                  With Spouse            1          1
## 1567                  With Spouse            1          1
## 1568                        Alone            0          1
## 1569                  With Spouse            1          1
## 1570                  With Spouse            1          1
## 1571     With Spouse and Children            3          1
## 1572 With Other Friends/Relatives            1         11
## 1573                        Alone            0          1
## 1574                        Alone            0          1
## 1575                        Alone            1          0
## 1576                  With Spouse            2          2
## 1578                        Alone            1          0
## 1579                  With Spouse            1          1
## 1580                        Alone            0          1
## 1581                        Alone            0          1
## 1582                        Alone            1          0
## 1583                  With Spouse            1          1
## 1585 With Other Friends/Relatives            2          2
## 1586                        Alone            1          0
## 1587                  With Spouse            1          1
## 1588 With Other Friends/Relatives            1          0
## 1589                  With Spouse            1          1
## 1590 With Other Friends/Relatives            1          0
## 1591                        Alone            0          1
## 1592                  With Spouse            1          1
## 1593                        Alone            0          1
## 1594                  With Spouse            1          1
## 1595 With Other Friends/Relatives            1          1
## 1596 With Other Friends/Relatives            2          0
## 1597                        Alone            1          0
## 1598                        Alone            1          0
## 1599                        Alone            1          0
## 1600                        Alone            0          1
## 1601 With Other Friends/Relatives            0          6
## 1602                        Alone            0          1
## 1603                        Alone            0          1
## 1605                        Alone            0          1
## 1606     With Spouse and Children            2          3
## 1607                        Alone            0          1
## 1608                  With Spouse            1          1
## 1609                        Alone            0          1
## 1610                  With Spouse            1          1
## 1611                        Alone            0          1
## 1612                        Alone            0          1
## 1613                        Alone            1          0
## 1614                        Alone            0          1
## 1615                        Alone            0          1
## 1616     With Spouse and Children            2          2
## 1617 With Other Friends/Relatives            1          1
## 1618                        Alone            0          1
## 1619                  With Spouse            1          1
## 1620                  With Spouse            1          1
## 1621                With Children            2          0
## 1622                        Alone            0          1
## 1623 With Other Friends/Relatives            1          0
## 1624                        Alone            0          1
## 1625                        Alone            1          0
## 1626                        Alone            1          0
## 1627                  With Spouse            1          1
## 1628                  With Spouse            1          1
## 1629 With Other Friends/Relatives           15         10
## 1630                        Alone            0          1
## 1631                        Alone            1          0
## 1632     With Spouse and Children            1          3
## 1633                        Alone            0          1
## 1634                        Alone            0          1
## 1635                With Children            1          2
## 1636                        Alone            1          0
## 1637                        Alone            0          1
## 1638 With Other Friends/Relatives            7         10
## 1639                  With Spouse            1          1
## 1640                  With Spouse            1          1
## 1641                        Alone            1          0
## 1642 With Other Friends/Relatives            2          0
## 1643     With Spouse and Children            2          1
## 1644                  With Spouse            1          1
## 1645 With Other Friends/Relatives            1          0
## 1646                        Alone            0          1
## 1647                        Alone            1          0
## 1648                        Alone            1          0
## 1649     With Spouse and Children            1          3
## 1650 With Other Friends/Relatives            6          6
## 1651                        Alone            0          1
## 1652                        Alone            1          0
## 1653                  With Spouse            1          1
## 1655     With Spouse and Children            1          2
## 1656                        Alone            1          0
## 1657 With Other Friends/Relatives            0          2
## 1658                  With Spouse            1          1
## 1659 With Other Friends/Relatives            1          0
## 1660                  With Spouse            1          1
## 1661                        Alone            1          0
## 1662                  With Spouse            1          1
## 1663 With Other Friends/Relatives            3          5
## 1664 With Other Friends/Relatives            2          1
## 1665     With Spouse and Children            2          1
## 1666                  With Spouse            1          1
## 1669                        Alone            1          0
## 1670                        Alone            0          1
## 1671 With Other Friends/Relatives            3          3
## 1672                        Alone            1          0
## 1673 With Other Friends/Relatives            2          2
## 1674                        Alone            0          1
## 1675                With Children            0          2
## 1676                        Alone            1          0
## 1677                  With Spouse            1          1
## 1678                        Alone            0          1
## 1679                        Alone            0          1
## 1680 With Other Friends/Relatives            3          0
## 1682                        Alone            1          0
## 1683                  With Spouse            1          1
## 1684                        Alone            1          0
## 1685 With Other Friends/Relatives            0          2
## 1686                        Alone            0          1
## 1687                  With Spouse            1          1
## 1688 With Other Friends/Relatives            1          1
## 1689                        Alone            0          1
## 1690                  With Spouse            1          1
## 1691                  With Spouse            1          1
## 1692                  With Spouse            1          1
## 1693                        Alone            0          1
## 1694                        Alone            0          1
## 1695 With Other Friends/Relatives            0          3
## 1696                        Alone            0          1
## 1697     With Spouse and Children            2          2
## 1698                        Alone            1          0
## 1700                  With Spouse            1          1
## 1701 With Other Friends/Relatives            3          2
## 1702                  With Spouse            1          1
## 1703                  With Spouse            1          1
## 1704                  With Spouse            1          1
## 1705 With Other Friends/Relatives            0          3
## 1706                  With Spouse            1          1
## 1707 With Other Friends/Relatives            1          2
## 1708                  With Spouse            1          1
## 1709                        Alone            1          0
## 1710 With Other Friends/Relatives            0          2
## 1711                        Alone            0          1
## 1712                  With Spouse            1          1
## 1713                        Alone            0          1
## 1714                  With Spouse            1          1
## 1715                        Alone            1          0
## 1716                  With Spouse            1          1
## 1717                  With Spouse            1          1
## 1718 With Other Friends/Relatives            2          0
## 1719                        Alone            1          0
## 1721                  With Spouse            1          1
## 1722                        Alone            1          0
## 1724                  With Spouse            1          1
## 1725                  With Spouse            1          1
## 1726                  With Spouse            0          2
## 1727                        Alone            0          1
## 1728                  With Spouse            1          1
## 1729                        Alone            0          1
## 1730 With Other Friends/Relatives            0          3
## 1731                  With Spouse            1          1
## 1732                        Alone            1          0
## 1733 With Other Friends/Relatives            2          1
## 1734                        Alone            1          0
## 1735                        Alone            1          0
## 1736                        Alone            0          1
## 1737 With Other Friends/Relatives            0          2
## 1738     With Spouse and Children            2          1
## 1739                  With Spouse            1          1
## 1740                        Alone            0          1
## 1741                        Alone            1          0
## 1742                        Alone            0          1
## 1743                        Alone            0          1
## 1744                        Alone            1          0
## 1745 With Other Friends/Relatives            1          1
## 1746 With Other Friends/Relatives            0          4
## 1747                        Alone            0          1
## 1749 With Other Friends/Relatives            2          0
## 1750                        Alone            0          1
## 1751                  With Spouse            1          1
## 1752                        Alone            0          1
## 1753                        Alone            0          1
## 1754                  With Spouse            1          1
## 1755                        Alone            0          1
## 1756                        Alone            1          0
## 1757 With Other Friends/Relatives            2          0
## 1758                        Alone            0          1
## 1759                        Alone            0          1
## 1761                  With Spouse            1          1
## 1762                        Alone            1          0
## 1763                        Alone            0          1
## 1764                        Alone            1          0
## 1765                  With Spouse            1          1
## 1766                  With Spouse            1          1
## 1769                        Alone            0          1
## 1770                  With Spouse            1          1
## 1771                  With Spouse            1          1
## 1773 With Other Friends/Relatives            7          9
## 1774                        Alone            0          1
## 1775                        Alone            0          1
## 1776                  With Spouse            1          1
## 1778                  With Spouse            1          1
## 1779                  With Spouse            1          1
## 1780                        Alone            0          1
## 1781                  With Spouse            1          1
## 1782                  With Spouse            1          1
## 1783                  With Spouse            1          1
## 1784                        Alone            1          0
## 1785     With Spouse and Children            3          1
## 1786 With Other Friends/Relatives            2          0
## 1787                        Alone            0          1
## 1788                  With Spouse            1          1
## 1789                  With Spouse            1          1
## 1790 With Other Friends/Relatives            2          0
## 1791                        Alone            0          1
## 1792                        Alone            0          1
## 1793     With Spouse and Children            2          2
## 1794                  With Spouse            1          1
## 1795                        Alone            0          1
## 1796 With Other Friends/Relatives            3          5
## 1797 With Other Friends/Relatives            2          1
## 1798                        Alone            0          1
## 1799     With Spouse and Children            3          1
## 1800                        Alone            0          1
## 1801 With Other Friends/Relatives            1          1
## 1802 With Other Friends/Relatives            1          2
## 1803                        Alone            1          0
## 1804                  With Spouse            1          1
## 1805                        Alone            0          1
## 1806                        Alone            1          0
## 1807 With Other Friends/Relatives            2          5
## 1808                  With Spouse            1          1
## 1809                        Alone            0          1
## 1810                  With Spouse            1          1
## 1811 With Other Friends/Relatives            1          2
## 1812                  With Spouse            1          1
## 1813                        Alone            0          1
## 1814                        Alone            0          1
## 1815                        Alone            0          1
## 1816                        Alone            0          1
## 1817 With Other Friends/Relatives            1          1
## 1818                        Alone            1          0
## 1819 With Other Friends/Relatives            2          0
## 1820                  With Spouse            1          1
## 1821                  With Spouse            1          1
## 1822                  With Spouse            1          1
## 1823                        Alone            1          0
## 1824                        Alone            1          0
## 1825                        Alone            0          1
## 1826                  With Spouse            1          1
## 1827                  With Spouse            1          1
## 1828                        Alone            1          0
## 1829                        Alone            0          1
## 1830                        Alone            1          0
## 1831                        Alone            0          1
## 1832                  With Spouse            1          1
## 1833                  With Spouse            1          1
## 1834                        Alone            1          0
## 1835                  With Spouse            1          1
## 1836                        Alone            0          1
## 1837                  With Spouse            1          1
## 1838                With Children            2          0
## 1839 With Other Friends/Relatives            6          8
## 1840                  With Spouse            1          1
## 1841                  With Spouse            1          1
## 1842                        Alone            0          1
## 1843                        Alone            1          0
## 1844                With Children            1          1
## 1845                        Alone            0          1
## 1846 With Other Friends/Relatives            0          1
## 1847     With Spouse and Children            1          2
## 1848                        Alone            1          0
## 1849 With Other Friends/Relatives            1          1
## 1850                  With Spouse            3          0
## 1851                        Alone            0          1
## 1852                        Alone            0          1
## 1853                  With Spouse            1          1
## 1854                        Alone            0          1
## 1855                        Alone            1          0
## 1856                        Alone            0          1
## 1857 With Other Friends/Relatives            2          0
## 1858                  With Spouse            1          1
## 1859                        Alone            0          1
## 1860                  With Spouse            1          1
## 1861                        Alone            2          0
## 1862 With Other Friends/Relatives            3          3
## 1863                  With Spouse            1          1
## 1864                        Alone            0          1
## 1865                  With Spouse            4          1
## 1866                        Alone            0          1
## 1868                  With Spouse            1          1
## 1869     With Spouse and Children            1          2
## 1870                        Alone            1          0
## 1871                  With Spouse            1          1
## 1872     With Spouse and Children            4          2
## 1873 With Other Friends/Relatives            2          0
## 1874                        Alone            1          1
## 1875                  With Spouse            1          1
## 1876                  With Spouse            1          1
## 1877                        Alone            0          1
## 1878                With Children            1          1
## 1879                  With Spouse            1          1
## 1880     With Spouse and Children            3          1
## 1881                        Alone            1          0
## 1882                        Alone            0          1
## 1883                        Alone            0          1
## 1884                  With Spouse            1          1
## 1885                  With Spouse            0          1
## 1886                        Alone            1          0
## 1887                        Alone            0          1
## 1888                  With Spouse            1          1
## 1889                With Children            4          2
## 1890                        Alone            0          1
## 1891                        Alone            1          0
## 1892                        Alone            1          0
## 1893                        Alone            1          0
## 1894                        Alone            1          0
## 1895                        Alone            1          0
## 1896 With Other Friends/Relatives            0          7
## 1897                  With Spouse            1          1
## 1898                        Alone            0          1
## 1899                        Alone            0          1
## 1900                        Alone            1          0
## 1901 With Other Friends/Relatives            1          1
## 1902                        Alone            0          1
## 1903 With Other Friends/Relatives            3          2
## 1904                With Children            2          0
## 1906                With Children            0          2
## 1907                  With Spouse            1          1
## 1908                        Alone            0          1
## 1909     With Spouse and Children            1          2
## 1910                  With Spouse            1          1
## 1911                With Children            2          1
## 1912                        Alone            0          1
## 1913                        Alone            0          1
## 1914 With Other Friends/Relatives            0          2
## 1915                        Alone            1          0
## 1916                        Alone            1          0
## 1917 With Other Friends/Relatives            2          2
## 1918                        Alone            0          1
## 1919 With Other Friends/Relatives            1          2
## 1920                        Alone            1          0
## 1921 With Other Friends/Relatives            3          2
## 1922     With Spouse and Children            4          1
## 1923 With Other Friends/Relatives            2          0
## 1924                        Alone            1          0
## 1926                        Alone            1          0
## 1927                        Alone            1          0
## 1928                        Alone            0          1
## 1929                        Alone            1          0
## 1930                  With Spouse            1          1
## 1931                  With Spouse            1          1
## 1932 With Other Friends/Relatives            0          2
## 1933                  With Spouse            1          1
## 1934                  With Spouse            1          1
## 1935                  With Spouse            1          1
## 1936 With Other Friends/Relatives            7          3
## 1937     With Spouse and Children            3          1
## 1938                  With Spouse            1          1
## 1939 With Other Friends/Relatives            0          2
## 1941     With Spouse and Children            3          2
## 1943                        Alone            1          0
## 1944 With Other Friends/Relatives            2          2
## 1945                  With Spouse            1          1
## 1946 With Other Friends/Relatives            1          1
## 1947                With Children            2          1
## 1948                        Alone            0          1
## 1949                        Alone            1          0
## 1950 With Other Friends/Relatives            1          3
## 1951                        Alone            1          0
## 1952     With Spouse and Children            2          1
## 1953 With Other Friends/Relatives            1          1
## 1954                        Alone            1          0
## 1955                  With Spouse            1          1
## 1956                        Alone            1          0
## 1957                        Alone            0          1
## 1958                  With Spouse            2          2
## 1959                        Alone            0          1
## 1960                        Alone            1          0
## 1961                  With Spouse            1          1
## 1962                        Alone            0          1
## 1963                        Alone            1          0
## 1964                        Alone            1          0
## 1965 With Other Friends/Relatives           10          1
## 1966 With Other Friends/Relatives            2          0
## 1967                        Alone            0          1
## 1968 With Other Friends/Relatives            1          1
## 1969                        Alone            1          0
## 1970 With Other Friends/Relatives            1          2
## 1971 With Other Friends/Relatives            1          1
## 1972 With Other Friends/Relatives            2          2
## 1973                        Alone            1          0
## 1974                        Alone            1          0
## 1975                        Alone            1          0
## 1977                  With Spouse            1          1
## 1979     With Spouse and Children            3          2
## 1980 With Other Friends/Relatives            1          3
## 1981                With Children            4          0
## 1982                        Alone            1          0
## 1983                        Alone            0          1
## 1984                        Alone            0          1
## 1985 With Other Friends/Relatives            2          3
## 1986                  With Spouse            1          1
## 1987                  With Spouse            1          1
## 1988                        Alone            0          1
## 1989                        Alone            1          0
## 1990                        Alone            0          1
## 1991                        Alone            1          0
## 1992                  With Spouse            1          1
## 1993                        Alone            1          0
## 1994                With Children            2          1
## 1995                With Children            1          1
## 1996 With Other Friends/Relatives            1          1
## 1997 With Other Friends/Relatives            0          4
## 1998                        Alone            0          1
## 1999 With Other Friends/Relatives            1          1
## 2000                        Alone            0          1
## 2001                        Alone            0          1
## 2002 With Other Friends/Relatives            1          1
## 2003                        Alone            0          1
## 2004                        Alone            1          0
## 2005     With Spouse and Children            1          3
## 2006 With Other Friends/Relatives            1          1
## 2007 With Other Friends/Relatives            1          1
## 2008                        Alone            0          1
## 2009                        Alone            0          1
## 2010                  With Spouse            1          1
## 2011 With Other Friends/Relatives            1          1
## 2013                  With Spouse            1          1
## 2015                        Alone            1          0
## 2016                  With Spouse            1          1
## 2017                        Alone            1          0
## 2018                        Alone            0          1
## 2019 With Other Friends/Relatives            3          3
## 2020 With Other Friends/Relatives            2          2
## 2021                With Children            2          1
## 2022 With Other Friends/Relatives            1          2
## 2023                  With Spouse            1          1
## 2024                        Alone            0          1
## 2025     With Spouse and Children            1          2
## 2026 With Other Friends/Relatives            0          3
## 2027                        Alone            0          1
## 2028     With Spouse and Children            2          1
## 2029                        Alone            1          0
## 2030                        Alone            0          1
## 2031 With Other Friends/Relatives            0          2
## 2032                        Alone            0          1
## 2033                        Alone            0          1
## 2034                        Alone            1          0
## 2035                        Alone            0          1
## 2036 With Other Friends/Relatives            2          2
## 2038 With Other Friends/Relatives            3          0
## 2039 With Other Friends/Relatives            1          1
## 2040                With Children            2          0
## 2041 With Other Friends/Relatives            0          2
## 2042                  With Spouse            1          1
## 2043                  With Spouse            0          1
## 2044                  With Spouse            1          1
## 2045                  With Spouse            1          1
## 2046                With Children            3          2
## 2047                        Alone            0          1
## 2048                  With Spouse            1          1
## 2049                  With Spouse            1          1
## 2050                        Alone            1          0
## 2052 With Other Friends/Relatives            2          1
## 2053 With Other Friends/Relatives            3          2
## 2055                  With Spouse            1          1
## 2056                        Alone            0          1
## 2057     With Spouse and Children            2          1
## 2058                  With Spouse            1          1
## 2059                  With Spouse            1          1
## 2061                        Alone            0          1
## 2062 With Other Friends/Relatives            1          1
## 2063                  With Spouse            1          1
## 2064                  With Spouse            1          1
## 2065                        Alone            0          1
## 2067     With Spouse and Children            2          1
## 2068                        Alone            0          1
## 2069                        Alone            0          1
## 2071                        Alone            0          1
## 2072                        Alone            1          0
## 2073 With Other Friends/Relatives            5          3
## 2074                        Alone            0          1
## 2075 With Other Friends/Relatives            2          0
## 2076 With Other Friends/Relatives            2          1
## 2077                  With Spouse            1          1
## 2078                        Alone            1          0
## 2079                  With Spouse            1          1
## 2080 With Other Friends/Relatives            1          2
## 2081                        Alone            0          1
## 2082                        Alone            1          0
## 2083                  With Spouse            1          1
## 2084                  With Spouse            1          1
## 2085                  With Spouse            1          1
## 2086                  With Spouse            1          1
## 2087                        Alone            0          1
## 2088                        Alone            0          1
## 2089 With Other Friends/Relatives            0          2
## 2090                  With Spouse            1          1
## 2092                        Alone            0          1
## 2094 With Other Friends/Relatives            0          4
## 2095                        Alone            1          0
## 2096                        Alone            1          0
## 2098     With Spouse and Children            2          2
## 2099                  With Spouse            1          1
## 2100                        Alone            1          0
## 2101                        Alone            1          0
## 2102                  With Spouse            1          1
## 2103                        Alone            0          1
## 2104                        Alone            1          0
## 2105                        Alone            1          0
## 2106                        Alone            0          1
## 2107 With Other Friends/Relatives            0          2
## 2108                        Alone            0          1
## 2109                  With Spouse            1          0
## 2110                  With Spouse            1          1
## 2111                        Alone            0          1
## 2112                        Alone            0          1
## 2113 With Other Friends/Relatives            0          1
## 2114                        Alone            0          1
## 2115                With Children            0          2
## 2116                        Alone            0          1
## 2117                  With Spouse            1          1
## 2119                        Alone            0          1
## 2120                  With Spouse            1          1
## 2121                        Alone            1          0
## 2122 With Other Friends/Relatives            1          2
## 2123                        Alone            0          1
## 2126                  With Spouse            1          1
## 2127                        Alone            0          1
## 2128                  With Spouse            1          1
## 2129                        Alone            1          0
## 2130                        Alone            0          1
## 2131 With Other Friends/Relatives            0          4
## 2132                        Alone            1          0
## 2133     With Spouse and Children            2          2
## 2134     With Spouse and Children            2          1
## 2135                        Alone            0          1
## 2136                  With Spouse            1          1
## 2137 With Other Friends/Relatives            0          2
## 2138                        Alone            0          1
## 2140     With Spouse and Children            2          1
## 2141                  With Spouse            1          1
## 2142                  With Spouse            1          1
## 2143                        Alone            1          0
## 2144                  With Spouse            1          1
## 2145 With Other Friends/Relatives            1          1
## 2146                With Children            2          2
## 2147     With Spouse and Children            3          3
## 2148                  With Spouse            1          1
## 2149 With Other Friends/Relatives            0          3
## 2150                        Alone            1          0
## 2151                  With Spouse            1          1
## 2152                  With Spouse            1          1
## 2154                        Alone            0          1
## 2155                  With Spouse            1          1
## 2157                  With Spouse            1          1
## 2158                        Alone            0          1
## 2160                        Alone            1          0
## 2161                        Alone            1          0
## 2163                        Alone            1          0
## 2164                        Alone            0          1
## 2165                        Alone            0          1
## 2166                  With Spouse            1          1
## 2167                        Alone            0          1
## 2169     With Spouse and Children            2          5
## 2170                  With Spouse            1          1
## 2171                        Alone            0          1
## 2172 With Other Friends/Relatives            8          3
## 2174                  With Spouse            1          1
## 2175 With Other Friends/Relatives            3          2
## 2176                        Alone            1          0
## 2177 With Other Friends/Relatives            0          2
## 2178                        Alone            1          0
## 2179                        Alone            0          1
## 2180                  With Spouse            1          1
## 2181                        Alone            1          0
## 2182                        Alone            0          1
## 2183                  With Spouse            1          1
## 2184                        Alone            1          0
## 2185                        Alone            0          1
## 2186 With Other Friends/Relatives            0          2
## 2187     With Spouse and Children            2          1
## 2188                  With Spouse            1          1
## 2189                  With Spouse            1          1
## 2190     With Spouse and Children            2          2
## 2192                        Alone            1          0
## 2193 With Other Friends/Relatives            2          0
## 2194 With Other Friends/Relatives            0          2
## 2195 With Other Friends/Relatives            2          1
## 2196                        Alone            1          0
## 2197 With Other Friends/Relatives            0          1
## 2198                  With Spouse            1          1
## 2199                        Alone            1          0
## 2200     With Spouse and Children            2          2
## 2201                        Alone            0          1
## 2202                        Alone            0          1
## 2203 With Other Friends/Relatives            1          3
## 2204                        Alone            0          1
## 2205                        Alone            0          1
## 2206                  With Spouse            1          1
## 2207                  With Spouse            1          1
## 2208                        Alone            0          1
## 2209                  With Spouse            1          1
## 2210                        Alone            0          1
## 2211                        Alone            0          1
## 2212 With Other Friends/Relatives            1          1
## 2213                        Alone            0          1
## 2214     With Spouse and Children            2          1
## 2215                  With Spouse            1          1
## 2216                  With Spouse            1          1
## 2217 With Other Friends/Relatives            3          0
## 2218                        Alone            1          0
## 2219                        Alone            1          0
## 2220                        Alone            1          0
## 2221                  With Spouse            1          1
## 2222                        Alone            0          1
## 2223                  With Spouse            1          1
## 2224                  With Spouse            1          1
## 2225                        Alone            0          1
## 2226 With Other Friends/Relatives            2          0
## 2227                  With Spouse            1          1
## 2228                        Alone            0          1
## 2229     With Spouse and Children            2          1
## 2230                        Alone            0          1
## 2232                        Alone            1          0
## 2233                        Alone            0          1
## 2234                        Alone            0          1
## 2235                        Alone            0          1
## 2236                        Alone            0          1
## 2237                        Alone            0          1
## 2239                        Alone            1          0
## 2240 With Other Friends/Relatives            3          0
## 2241                        Alone            0          1
## 2242                  With Spouse            1          1
## 2243 With Other Friends/Relatives            4          1
## 2244                  With Spouse            0          2
## 2245                        Alone            0          1
## 2246                  With Spouse            1          1
## 2247                        Alone            1          0
## 2248                  With Spouse            1          1
## 2249                        Alone            0          1
## 2250                  With Spouse            1          1
## 2252                        Alone            0          1
## 2253                  With Spouse            1          1
## 2254     With Spouse and Children            2          0
## 2255                        Alone            1          0
## 2256                  With Spouse            1          1
## 2257                        Alone            1          0
## 2258                  With Spouse            1          1
## 2260 With Other Friends/Relatives            4          0
## 2261                        Alone            0          1
## 2262                        Alone            0          1
## 2263                        Alone            1          0
## 2264                        Alone            0          1
## 2265                        Alone            0          1
## 2266                  With Spouse            1          1
## 2267                        Alone            1          0
## 2268                  With Spouse            1          1
## 2269                  With Spouse            1          1
## 2270     With Spouse and Children            2          1
## 2271 With Other Friends/Relatives            2          0
## 2272 With Other Friends/Relatives            4          5
## 2273                        Alone            1          0
## 2274                  With Spouse            1          1
## 2275                With Children            1          1
## 2276                        Alone            0          1
## 2277 With Other Friends/Relatives            1          1
## 2278                        Alone            1          0
## 2279                        Alone            0          1
## 2280                        Alone            1          0
## 2281                With Children            1          2
## 2282                        Alone            1          0
## 2283                  With Spouse            1          1
## 2284                        Alone            0          1
## 2285                        Alone            1          0
## 2286     With Spouse and Children            3          3
## 2287 With Other Friends/Relatives            2          2
## 2288                  With Spouse            1          1
## 2289                        Alone            0          1
## 2290                        Alone            1          0
## 2291                        Alone            0          1
## 2292 With Other Friends/Relatives            3          3
## 2293                  With Spouse            1          1
## 2294                        Alone            0          1
## 2295 With Other Friends/Relatives            2          0
## 2297                  With Spouse            1          1
## 2298                        Alone            1          0
## 2299                        Alone            0          1
## 2300 With Other Friends/Relatives            1          1
## 2301                  With Spouse            1          1
## 2302                  With Spouse            1          1
## 2303                  With Spouse            1          1
## 2304                  With Spouse            1          1
## 2305     With Spouse and Children            1          2
## 2306     With Spouse and Children            2          1
## 2307                        Alone            0          1
## 2308     With Spouse and Children            2          1
## 2309                        Alone            0          1
## 2310     With Spouse and Children            3          2
## 2311 With Other Friends/Relatives            2          0
## 2312                  With Spouse            1          1
## 2313 With Other Friends/Relatives            3          1
## 2314     With Spouse and Children            2          1
## 2315                  With Spouse            1          1
## 2316     With Spouse and Children            2          1
## 2317                        Alone            0          1
## 2318     With Spouse and Children            1          2
## 2319                  With Spouse            1          1
## 2321                        Alone            0          1
## 2322                        Alone            0          1
## 2323 With Other Friends/Relatives            1          1
## 2324                With Children            3          0
## 2325                        Alone            1          0
## 2326                  With Spouse            1          1
## 2327     With Spouse and Children            3          1
## 2328 With Other Friends/Relatives            1          1
## 2329                  With Spouse            1          1
## 2330                        Alone            1          0
## 2331 With Other Friends/Relatives            2          1
## 2332                  With Spouse            1          1
## 2333 With Other Friends/Relatives            1          1
## 2334                  With Spouse            1          1
## 2336                  With Spouse            1          1
## 2337                  With Spouse            1          1
## 2338                  With Spouse            1          1
## 2339                        Alone            1          0
## 2340                  With Spouse            1          1
## 2341 With Other Friends/Relatives            1          1
## 2342                  With Spouse            1          1
## 2343                        Alone            1          0
## 2344                        Alone            0          1
## 2345                  With Spouse            1          1
## 2346                        Alone            0          1
## 2347                        Alone            1          0
## 2348                  With Spouse            1          1
## 2349                  With Spouse            1          1
## 2350 With Other Friends/Relatives            0          2
## 2351 With Other Friends/Relatives            1          1
## 2352                  With Spouse            1          1
## 2354                        Alone            0          1
## 2355                  With Spouse            1          1
## 2356                        Alone            1          0
## 2357                        Alone            0          1
## 2358                  With Spouse            1          1
## 2359                  With Spouse            1          1
## 2360                  With Spouse            1          1
## 2361                        Alone            0          1
## 2362                  With Spouse            1          1
## 2363                  With Spouse            1          1
## 2364 With Other Friends/Relatives            1          1
## 2365                  With Spouse            1         10
## 2366                  With Spouse            1          1
## 2367 With Other Friends/Relatives            0          2
## 2368                        Alone            1          0
## 2369                        Alone            1          0
## 2370                        Alone            1          0
## 2371                        Alone            1          0
## 2372 With Other Friends/Relatives            1          7
## 2373                        Alone            0          1
## 2374                  With Spouse            1          1
## 2375 With Other Friends/Relatives            2          1
## 2376 With Other Friends/Relatives            1          4
## 2377                  With Spouse            1          1
## 2378                  With Spouse            1          1
## 2379                        Alone            1          0
## 2380 With Other Friends/Relatives            1          4
## 2381                  With Spouse            1          1
## 2382                        Alone            0          1
## 2383                  With Spouse            1          1
## 2384                        Alone            0          1
## 2385 With Other Friends/Relatives            0          3
## 2386                        Alone            1          0
## 2387                        Alone            0          1
## 2388                        Alone            0          1
## 2389                  With Spouse            1          1
## 2390                  With Spouse            1          1
## 2391                        Alone            0          1
## 2392 With Other Friends/Relatives            1          1
## 2393 With Other Friends/Relatives           30         90
## 2394                        Alone            0          1
## 2395     With Spouse and Children            2          1
## 2396 With Other Friends/Relatives            5          6
## 2397                  With Spouse            1          1
## 2398                        Alone            1          0
## 2399     With Spouse and Children            2          3
## 2401                        Alone            0          1
## 2402                        Alone            0          1
## 2403                        Alone            0          1
## 2404                  With Spouse            1          1
## 2405                        Alone            0          1
## 2406                With Children            1          1
## 2407                  With Spouse            1          1
## 2408     With Spouse and Children            2          3
## 2409                        Alone            0          1
## 2410                  With Spouse            1          1
## 2411     With Spouse and Children            4          3
## 2412                        Alone            1          0
## 2413                        Alone            1          0
## 2414     With Spouse and Children            1          2
## 2417 With Other Friends/Relatives            2          0
## 2418 With Other Friends/Relatives            2          0
## 2419                  With Spouse            1          1
## 2420                  With Spouse            1          1
## 2421 With Other Friends/Relatives            3          1
## 2422 With Other Friends/Relatives            2          4
## 2424                        Alone            0          1
## 2425                        Alone            0          1
## 2426                  With Spouse            1          1
## 2427 With Other Friends/Relatives            1          1
## 2428                        Alone            1          0
## 2430                        Alone            1          0
## 2431                        Alone            0          1
## 2432 With Other Friends/Relatives            2          1
## 2433                        Alone            1          0
## 2435     With Spouse and Children            2          3
## 2436                        Alone            1          0
## 2437                        Alone            0          1
## 2438                  With Spouse            1          1
## 2439 With Other Friends/Relatives            1          2
## 2440                  With Spouse            1          1
## 2441                        Alone            0          1
## 2442                  With Spouse            1          1
## 2443                        Alone            0          1
## 2444     With Spouse and Children            2          1
## 2445                        Alone            0          1
## 2446 With Other Friends/Relatives            2          0
## 2447                        Alone            0          1
## 2448                        Alone            0          1
## 2449                        Alone            0          1
## 2450                        Alone            0          1
## 2451                  With Spouse            0          1
## 2452                  With Spouse            1          1
## 2453                        Alone            0          1
## 2454     With Spouse and Children            2          3
## 2455                  With Spouse            1          1
## 2456                        Alone            1          0
## 2457                  With Spouse            1          1
## 2458                        Alone            0          1
## 2459                        Alone            1          0
## 2460                        Alone            1          0
## 2461                  With Spouse            1          1
## 2462                        Alone            1          0
## 2463 With Other Friends/Relatives            1          1
## 2464                        Alone            0          1
## 2465 With Other Friends/Relatives            3          1
## 2467                        Alone            0          1
## 2468                        Alone            1          0
## 2469                        Alone            1          0
## 2470     With Spouse and Children            2          0
## 2471                        Alone            0          1
## 2472     With Spouse and Children            2          1
## 2473                  With Spouse            1          1
## 2474                  With Spouse            1          1
## 2475 With Other Friends/Relatives            3          1
## 2477                        Alone            0          1
## 2478                  With Spouse            1          1
## 2479                  With Spouse            1          1
## 2480 With Other Friends/Relatives            2          0
## 2481                  With Spouse            1          1
## 2482                        Alone            1          0
## 2483                        Alone            0          1
## 2484 With Other Friends/Relatives            1          2
## 2485                        Alone            0          1
## 2486                        Alone            1          0
## 2487                With Children            1          1
## 2488                  With Spouse            1          1
## 2489                        Alone            0          1
## 2490                        Alone            1          0
## 2491                        Alone            0          1
## 2492                        Alone            1          0
## 2493 With Other Friends/Relatives            2          0
## 2494 With Other Friends/Relatives            1          1
## 2495                        Alone            1          0
## 2497                        Alone            0          1
## 2498 With Other Friends/Relatives            1          1
## 2499                With Children            1          1
## 2500                        Alone            1          0
## 2502                  With Spouse            1          1
## 2503                  With Spouse            1          1
## 2504                        Alone            0          1
## 2506                  With Spouse            1          1
## 2507                        Alone            1          0
## 2508     With Spouse and Children            2          1
## 2509                        Alone            0          1
## 2510                  With Spouse            1          1
## 2511                        Alone            0          1
## 2512 With Other Friends/Relatives            3          1
## 2513 With Other Friends/Relatives            3          4
## 2514                With Children            2          2
## 2515                        Alone            0          1
## 2516                        Alone            0          1
## 2517                        Alone            0          1
## 2518                  With Spouse            1          1
## 2519                  With Spouse            1          1
## 2520                  With Spouse            1          1
## 2521                        Alone            0          1
## 2522                  With Spouse            1          1
## 2523                        Alone            1          0
## 2524                        Alone            1          0
## 2525     With Spouse and Children            1          2
## 2526 With Other Friends/Relatives            1          2
## 2527                        Alone            1          0
## 2528                        Alone            1          0
## 2529                  With Spouse            1          1
## 2530 With Other Friends/Relatives            7          1
## 2531                  With Spouse            1          1
## 2532                        Alone            0          1
## 2533                With Children            2          0
## 2534 With Other Friends/Relatives            2          0
## 2535                        Alone            1          0
## 2536                        Alone            0          1
## 2537     With Spouse and Children            3          1
## 2538                  With Spouse            1          1
## 2539                        Alone            0          1
## 2540                  With Spouse            1          1
## 2541                        Alone            0          1
## 2542 With Other Friends/Relatives            0          2
## 2543                        Alone            1          0
## 2544     With Spouse and Children            1          3
## 2545     With Spouse and Children            1          3
## 2546                        Alone            0          1
## 2547                        Alone            0          1
## 2548 With Other Friends/Relatives            2          1
## 2549                        Alone            0          1
## 2550 With Other Friends/Relatives            3          0
## 2551 With Other Friends/Relatives            3          1
## 2552 With Other Friends/Relatives            1          1
## 2553                        Alone            1          0
## 2554                  With Spouse            1          1
## 2555                        Alone            0          1
## 2556                        Alone            1          0
## 2557                        Alone            0          1
## 2558                  With Spouse            1          1
## 2559     With Spouse and Children            2          4
## 2560                  With Spouse            1          1
## 2561                        Alone            0          1
## 2562                        Alone            0          1
## 2563                        Alone            0          1
## 2564     With Spouse and Children            2          2
## 2566     With Spouse and Children            1          2
## 2567                        Alone            1          0
## 2568                  With Spouse            1          1
## 2569                        Alone            0          1
## 2570                        Alone            0          1
## 2571 With Other Friends/Relatives            1          1
## 2572                        Alone            0          1
## 2573                        Alone            0          1
## 2574                        Alone            0          1
## 2576 With Other Friends/Relatives            3          1
## 2577                        Alone            1          0
## 2578                        Alone            0          1
## 2579                        Alone            1          0
## 2580                  With Spouse            1          1
## 2581                        Alone            0          1
## 2582                        Alone            1          0
## 2583                  With Spouse            1          1
## 2584                        Alone            0          1
## 2585                  With Spouse            1          1
## 2586                        Alone            0          1
## 2587 With Other Friends/Relatives            1          2
## 2588 With Other Friends/Relatives            1          1
## 2589                        Alone            0          1
## 2590                        Alone            0          1
## 2591                        Alone            0          1
## 2592                  With Spouse            1          1
## 2593                        Alone            0          1
## 2594     With Spouse and Children            2          5
## 2595                        Alone            1          0
## 2596                  With Spouse            1          1
## 2597                        Alone            0          1
## 2598                        Alone            1          0
## 2599                        Alone            0          1
## 2600                  With Spouse            1          1
## 2601                        Alone            1          0
## 2602                  With Spouse            1          1
## 2603                  With Spouse            1          1
## 2604                        Alone            0          1
## 2605                        Alone            1          0
## 2606                  With Spouse            1          1
## 2607                  With Spouse            1          1
## 2609                        Alone            0          1
## 2610                        Alone            0          1
## 2611                        Alone            0          1
## 2612                        Alone            1          0
## 2613 With Other Friends/Relatives            2          0
## 2614 With Other Friends/Relatives            1          1
## 2615 With Other Friends/Relatives            1          2
## 2616                  With Spouse            1          1
## 2617                        Alone            0          1
## 2618 With Other Friends/Relatives            1          1
## 2620 With Other Friends/Relatives            1          1
## 2621                        Alone            1          0
## 2623                        Alone            1          0
## 2624                  With Spouse            1          1
## 2625                        Alone            0          1
## 2626                        Alone            0          1
## 2627                        Alone            1          0
## 2628                  With Spouse            1          0
## 2629                With Children            1          1
## 2630                  With Spouse            1          1
## 2631                        Alone            0          1
## 2632                        Alone            0          1
## 2633                        Alone            0          1
## 2635                        Alone            1          0
## 2636     With Spouse and Children            1          2
## 2637 With Other Friends/Relatives            1          1
## 2638 With Other Friends/Relatives            2          0
## 2639                  With Spouse            1          1
## 2640 With Other Friends/Relatives            0          1
## 2641                  With Spouse            1          1
## 2642                With Children            0          2
## 2643                        Alone            0          1
## 2645                  With Spouse            2          0
## 2646                  With Spouse            1          1
## 2647                        Alone            0          1
## 2648                  With Spouse            1          1
## 2649     With Spouse and Children            1          3
## 2650                  With Spouse            1          1
## 2651                        Alone            1          0
## 2652 With Other Friends/Relatives            4         12
## 2653     With Spouse and Children            1          3
## 2654                        Alone            1          0
## 2655                        Alone            1          0
## 2656                        Alone            0          1
## 2657                        Alone            1          0
## 2658                        Alone            1          0
## 2659                  With Spouse            1          1
## 2660 With Other Friends/Relatives            1          1
## 2661                        Alone            1          0
## 2662                        Alone            1          0
## 2663                  With Spouse            1          1
## 2664                        Alone            0          1
## 2665                  With Spouse            1          1
## 2666                  With Spouse            1          1
## 2667                        Alone            0          1
## 2668                        Alone            0          1
## 2669                        Alone            0          1
## 2671                  With Spouse            1          1
## 2672                        Alone            0          1
## 2674                        Alone            1          0
## 2675                  With Spouse            1          1
## 2676                        Alone            1          0
## 2677                        Alone            0          1
## 2678                        Alone            0          1
## 2679                        Alone            0          1
## 2680 With Other Friends/Relatives            1          1
## 2681                        Alone            0          1
## 2682                        Alone            0          1
## 2683                        Alone            0          1
## 2684                  With Spouse            1          1
## 2685                        Alone            0          1
## 2686                        Alone            0          1
## 2687                        Alone            0          1
## 2688                        Alone            0          1
## 2689                With Children            1          2
## 2690                  With Spouse            1          1
## 2691     With Spouse and Children            2          3
## 2692                  With Spouse            1          1
## 2693                        Alone            0          1
## 2694                        Alone            0          1
## 2695                        Alone            1          0
## 2696                        Alone            0          1
## 2697                        Alone            0          1
## 2698 With Other Friends/Relatives            1          1
## 2699                        Alone            0          1
## 2700                        Alone            0          1
## 2701 With Other Friends/Relatives            1          1
## 2702                        Alone            0          1
## 2703 With Other Friends/Relatives            2          0
## 2704                        Alone            0          1
## 2705                With Children            1          2
## 2706                  With Spouse            1          1
## 2707                  With Spouse            1          1
## 2708     With Spouse and Children            3          1
## 2709     With Spouse and Children            1          1
## 2711                        Alone            0          1
## 2712 With Other Friends/Relatives            2          0
## 2713                        Alone            0          1
## 2714 With Other Friends/Relatives            1          2
## 2715 With Other Friends/Relatives            2          0
## 2716                        Alone            0          1
## 2717                  With Spouse            1          1
## 2718     With Spouse and Children            3          1
## 2719                        Alone            0          1
## 2720                        Alone            1          0
## 2721                  With Spouse            1          1
## 2723                        Alone            0          1
## 2724 With Other Friends/Relatives            1          1
## 2725                  With Spouse            1          1
## 2726                        Alone            0          1
## 2727                  With Spouse            1          1
## 2728                        Alone            0          1
## 2729                  With Spouse            1          1
## 2730 With Other Friends/Relatives            0          2
## 2731                  With Spouse            1          1
## 2732                        Alone            0          1
## 2733                        Alone            0          1
## 2734     With Spouse and Children            2          1
## 2735     With Spouse and Children            2          1
## 2737                  With Spouse            1          1
## 2738                  With Spouse            1          1
## 2739     With Spouse and Children            2          2
## 2741 With Other Friends/Relatives            2          0
## 2742                With Children            1          3
## 2743 With Other Friends/Relatives            2          2
## 2744                        Alone            1          0
## 2745                        Alone            1          0
## 2746                        Alone            0          1
## 2748                  With Spouse            1          1
## 2749                  With Spouse            1          0
## 2750                        Alone            1          0
## 2751 With Other Friends/Relatives            2          0
## 2752                  With Spouse            1          1
## 2753                  With Spouse            1          1
## 2754                        Alone            0          1
## 2755 With Other Friends/Relatives            1          1
## 2757     With Spouse and Children            1          2
## 2758                        Alone            0          1
## 2759 With Other Friends/Relatives            1          1
## 2760 With Other Friends/Relatives            2          1
## 2761 With Other Friends/Relatives            2          0
## 2762                        Alone            0          1
## 2763                        Alone            1          0
## 2764                  With Spouse            1          1
## 2765                  With Spouse            1          1
## 2766                        Alone            0          1
## 2767                  With Spouse            1          0
## 2768                With Children            0          3
## 2769                        Alone            1          0
## 2770                        Alone            1          0
## 2771                  With Spouse            1          1
## 2772                        Alone            0          1
## 2773 With Other Friends/Relatives            2          0
## 2774                        Alone            0          1
## 2775                        Alone            0          1
## 2776                  With Spouse            1          1
## 2778                  With Spouse            1          1
## 2779                        Alone            0          1
## 2780                  With Spouse            1          1
## 2781                        Alone            0          1
## 2782                        Alone            0          1
## 2783                        Alone            1          0
## 2784                        Alone            0          1
## 2785 With Other Friends/Relatives            2          1
## 2787                        Alone            0          1
## 2788 With Other Friends/Relatives            3          0
## 2789                        Alone            0          1
## 2790                With Children            1          1
## 2791 With Other Friends/Relatives            1          1
## 2792                  With Spouse            1          1
## 2793                  With Spouse            1          1
## 2794                        Alone            0          1
## 2795 With Other Friends/Relatives            2          2
## 2796                With Children            2          0
## 2797     With Spouse and Children            3          2
## 2798 With Other Friends/Relatives            0          2
## 2799 With Other Friends/Relatives            1          1
## 2801                  With Spouse            1          1
## 2802     With Spouse and Children            2          2
## 2803                  With Spouse            1          1
## 2804                  With Spouse            1          1
## 2805                        Alone            0          1
## 2806                  With Spouse            0          1
## 2807                  With Spouse            1          1
## 2808                        Alone            0          1
## 2809                  With Spouse            1          1
## 2810                  With Spouse            1          1
## 2811                        Alone            0          1
## 2812                        Alone            0          1
## 2814 With Other Friends/Relatives            6          0
## 2815                        Alone            0          1
## 2816                  With Spouse            1          1
## 2817                        Alone            1          0
## 2818                        Alone            0          1
## 2819     With Spouse and Children            1          2
## 2820                        Alone            1          0
## 2821                        Alone            0          1
## 2822                  With Spouse            1          1
## 2823                  With Spouse            1          1
## 2825                        Alone            1          1
## 2826                        Alone            1          0
## 2827 With Other Friends/Relatives            4          2
## 2829                        Alone            1          0
## 2830                        Alone            1          0
## 2831 With Other Friends/Relatives            1          1
## 2832                  With Spouse            1          1
## 2834 With Other Friends/Relatives            1          1
## 2835                  With Spouse            1          1
## 2836 With Other Friends/Relatives            3          4
## 2837                  With Spouse            1          1
## 2838                        Alone            1          0
## 2839                  With Spouse            1          1
## 2840                  With Spouse            1          1
## 2841 With Other Friends/Relatives            1          1
## 2842                  With Spouse            1          1
## 2843                  With Spouse            1          1
## 2844                        Alone            0          1
## 2845                        Alone            0          1
## 2846                  With Spouse            1          1
## 2847                  With Spouse            1          1
## 2848 With Other Friends/Relatives            1          1
## 2849 With Other Friends/Relatives            2          2
## 2850 With Other Friends/Relatives            1          1
## 2851                        Alone            0          1
## 2852                        Alone            1          0
## 2853                        Alone            1          1
## 2855                        Alone            1          0
## 2856 With Other Friends/Relatives            0          2
## 2857                        Alone            1          0
## 2858 With Other Friends/Relatives            2          0
## 2859                  With Spouse            2          0
## 2860 With Other Friends/Relatives            5          6
## 2861                With Children            1          1
## 2862 With Other Friends/Relatives            1          1
## 2863                        Alone            1          0
## 2865                  With Spouse            1          1
## 2866                With Children            3          1
## 2867                        Alone            1          0
## 2869 With Other Friends/Relatives            5          5
## 2870                        Alone            0          1
## 2871 With Other Friends/Relatives            2          4
## 2872                  With Spouse            1          1
## 2873                  With Spouse            1          1
## 2874                        Alone            0          1
## 2875     With Spouse and Children            1          3
## 2876                        Alone            1          0
## 2877     With Spouse and Children            2          2
## 2878                        Alone            0          1
## 2879                  With Spouse            1          1
## 2880     With Spouse and Children            2          2
## 2881 With Other Friends/Relatives            0          2
## 2882 With Other Friends/Relatives            1          1
## 2883     With Spouse and Children            1          3
## 2884 With Other Friends/Relatives            2          0
## 2885                        Alone            0          1
## 2886     With Spouse and Children            2          2
## 2887                With Children            2          0
## 2888                        Alone            0          1
## 2889                  With Spouse            1          1
## 2890 With Other Friends/Relatives            2          0
## 2891                  With Spouse            1          1
## 2892                        Alone            0          1
## 2893                        Alone            0          1
## 2894     With Spouse and Children            2          1
## 2895                        Alone            0          1
## 2896 With Other Friends/Relatives            2          0
## 2898                        Alone            0          1
## 2900                  With Spouse            1          1
## 2901                        Alone            0          1
## 2902 With Other Friends/Relatives            2          0
## 2903                        Alone            0          1
## 2904                        Alone            0          1
## 2905                  With Spouse            1          1
## 2906                  With Spouse            1          1
## 2907                        Alone            0          1
## 2908 With Other Friends/Relatives            1          1
## 2909                        Alone            1          0
## 2910 With Other Friends/Relatives            1          1
## 2911                  With Spouse            1          1
## 2912                        Alone            0          1
## 2913                        Alone            0          1
## 2914                  With Spouse            1          1
## 2915 With Other Friends/Relatives            2          0
## 2917                  With Spouse            1          1
## 2918                        Alone            2          1
## 2919                        Alone            1          0
## 2921                  With Spouse            1          1
## 2922                        Alone            1          0
## 2923                  With Spouse            1          1
## 2924                        Alone            0          1
## 2925                        Alone            1          0
## 2926                        Alone            0          1
## 2927                  With Spouse            1          1
## 2928 With Other Friends/Relatives            1          1
## 2929                        Alone            0          1
## 2930     With Spouse and Children            1          2
## 2932                        Alone            1          0
## 2934                        Alone            0          1
## 2935                  With Spouse            1          1
## 2936 With Other Friends/Relatives            2          2
## 2937                        Alone            0          1
## 2938                        Alone            0          1
## 2939                  With Spouse            1          1
## 2940                        Alone            0          1
## 2941                        Alone            1          0
## 2942                  With Spouse            1          1
## 2943                  With Spouse            1          1
## 2944                        Alone            1          0
## 2945                  With Spouse            1          1
## 2946                With Children            0          2
## 2947                  With Spouse            1          1
## 2948                  With Spouse            1          1
## 2949                  With Spouse            0          1
## 2950                  With Spouse            0          2
## 2951     With Spouse and Children            2          1
## 2952                  With Spouse            1          1
## 2953     With Spouse and Children            2          2
## 2954                With Children            2          1
## 2955                        Alone            0          1
## 2956                  With Spouse            1          1
## 2957 With Other Friends/Relatives            1          1
## 2958     With Spouse and Children            0          3
## 2959                  With Spouse            1          1
## 2960                  With Spouse            0          1
## 2961                        Alone            1          0
## 2962                  With Spouse            1          1
## 2963                  With Spouse            1          1
## 2964                        Alone            0          1
## 2965 With Other Friends/Relatives            2          0
## 2966 With Other Friends/Relatives            0          1
## 2967                        Alone            1          0
## 2968                  With Spouse            1          1
## 2969                        Alone            1          0
## 2971     With Spouse and Children            2          3
## 2972                        Alone            0          1
## 2973                        Alone            0          1
## 2974                  With Spouse            1          1
## 2975                        Alone            0          1
## 2976                        Alone            0          1
## 2977                        Alone            1          0
## 2978                  With Spouse            1          1
## 2979                        Alone            1          0
## 2980                  With Spouse            1          1
## 2981 With Other Friends/Relatives            0          1
## 2982                        Alone            0          1
## 2983                        Alone            0          1
## 2984                        Alone            1          0
## 2985                        Alone            0          1
## 2986                        Alone            1          0
## 2987 With Other Friends/Relatives            4          0
## 2988                        Alone            1          0
## 2989                        Alone            1          0
## 2990 With Other Friends/Relatives            0          2
## 2991                        Alone            0          1
## 2993                        Alone            1          0
## 2994                  With Spouse            1          1
## 2995                        Alone            0          1
## 2996 With Other Friends/Relatives            2          0
## 2997     With Spouse and Children            3          2
## 2998                        Alone            0          1
## 2999                  With Spouse            1          1
## 3000                  With Spouse            1          1
## 3001                  With Spouse            1          1
## 3002                        Alone            0          1
## 3003                        Alone            1          0
## 3004                        Alone            0          1
## 3005                        Alone            0          1
## 3006                        Alone            0          1
## 3007                        Alone            1          0
## 3008                  With Spouse            1          1
## 3010                        Alone            0          1
## 3011 With Other Friends/Relatives            4          4
## 3012                  With Spouse            1          1
## 3013 With Other Friends/Relatives            1          1
## 3014                  With Spouse            1          1
## 3015 With Other Friends/Relatives            2          0
## 3016     With Spouse and Children            1          2
## 3017     With Spouse and Children            2          1
## 3018     With Spouse and Children            1          3
## 3019                        Alone            0          1
## 3020                        Alone            0          1
## 3021                        Alone            0          1
## 3022                        Alone            0          1
## 3023 With Other Friends/Relatives            0          2
## 3024                  With Spouse            1          1
## 3025 With Other Friends/Relatives            1          0
## 3026 With Other Friends/Relatives            2          2
## 3027                        Alone            0          1
## 3028                        Alone            0          1
## 3029                With Children            1          1
## 3030                        Alone            1          0
## 3031                  With Spouse            2          1
## 3032                        Alone            0          1
## 3033                        Alone            0          1
## 3034                  With Spouse            1          1
## 3035     With Spouse and Children            2          2
## 3036                  With Spouse            1          1
## 3037     With Spouse and Children            1          1
## 3038                        Alone            0          1
## 3040                With Children            1          1
## 3041                        Alone            0          1
## 3042 With Other Friends/Relatives            2          2
## 3043     With Spouse and Children            2          2
## 3044                        Alone            0          1
## 3045                  With Spouse            1          1
## 3046                        Alone            0          1
## 3047                        Alone            1          0
## 3048                With Children            0          2
## 3049 With Other Friends/Relatives            0          2
## 3050 With Other Friends/Relatives            1          1
## 3051                  With Spouse            1          1
## 3052                  With Spouse            1          1
## 3054 With Other Friends/Relatives            1          2
## 3055                  With Spouse            1          1
## 3057                        Alone            0          1
## 3058 With Other Friends/Relatives            2          0
## 3059     With Spouse and Children            2          2
## 3060     With Spouse and Children            3          1
## 3061                  With Spouse            1          1
## 3063                        Alone            0          1
## 3064 With Other Friends/Relatives            3          1
## 3065 With Other Friends/Relatives            1          1
## 3066                With Children            1          4
## 3067                        Alone            1          0
## 3068                  With Spouse            1          1
## 3069                  With Spouse            1          1
## 3070     With Spouse and Children            3          2
## 3071                        Alone            0          1
## 3072                  With Spouse            1          1
## 3073                  With Spouse            1          1
## 3075                  With Spouse            1          1
## 3076                With Children            1          1
## 3078 With Other Friends/Relatives            2          0
## 3079                  With Spouse            1          1
## 3080                  With Spouse            1          1
## 3081 With Other Friends/Relatives            0          2
## 3082                        Alone            1          0
## 3083                  With Spouse            1          1
## 3084                  With Spouse            1          1
## 3085     With Spouse and Children            2          2
## 3086                  With Spouse            1          1
## 3087                        Alone            0          1
## 3088 With Other Friends/Relatives            3          0
## 3089                  With Spouse            1          1
## 3090                        Alone            1          0
## 3091 With Other Friends/Relatives            2          0
## 3092                        Alone            0          1
## 3093                  With Spouse            1          1
## 3094                  With Spouse            1          1
## 3095                        Alone            1          0
## 3096                        Alone            0          1
## 3097                        Alone            1          0
## 3098     With Spouse and Children            1          3
## 3099     With Spouse and Children            2          2
## 3100                  With Spouse            1          1
## 3101                  With Spouse            1          1
## 3102                        Alone            0          1
## 3103                        Alone            0          1
## 3104                  With Spouse            1          1
## 3105                        Alone            1          0
## 3107     With Spouse and Children            2          2
## 3108                        Alone            0          1
## 3109                        Alone            1          0
## 3110 With Other Friends/Relatives            0          2
## 3111                        Alone            0          1
## 3112                        Alone            0          1
## 3113                  With Spouse            1          1
## 3114                        Alone            0          1
## 3115                        Alone            0          1
## 3116                        Alone            0          1
## 3117                        Alone            1          0
## 3118                        Alone            0          1
## 3119                  With Spouse            1          1
## 3120                        Alone            0          1
## 3121 With Other Friends/Relatives            0          2
## 3122                        Alone            1          0
## 3123                        Alone            1          0
## 3124                        Alone            0          1
## 3126                  With Spouse            1          0
## 3127                        Alone            0          1
## 3128 With Other Friends/Relatives            0          2
## 3129                        Alone            1          0
## 3130 With Other Friends/Relatives            1          2
## 3131                        Alone            0          1
## 3132                  With Spouse            1          1
## 3133 With Other Friends/Relatives            2          1
## 3134                With Children            0          2
## 3135                With Children            1          1
## 3136                        Alone            0          1
## 3137                        Alone            0          1
## 3138                With Children            1          1
## 3139                        Alone            0          1
## 3140                        Alone            0          1
## 3141                  With Spouse            1          1
## 3142 With Other Friends/Relatives            2          0
## 3143                        Alone            0          1
## 3144 With Other Friends/Relatives            2          2
## 3145                        Alone            0          1
## 3146 With Other Friends/Relatives            1          0
## 3148                  With Spouse            1          1
## 3149                With Children            1          2
## 3150                  With Spouse            1          1
## 3151                        Alone            0          1
## 3152                        Alone            0          1
## 3153     With Spouse and Children            2          2
## 3154                        Alone            1          0
## 3155     With Spouse and Children            2          1
## 3156     With Spouse and Children            3          1
## 3157                With Children            0          3
## 3161                        Alone            0          1
## 3162                        Alone            1          0
## 3163                  With Spouse            1          1
## 3164                        Alone            0          1
## 3166                        Alone            0          1
## 3168 With Other Friends/Relatives            2          2
## 3169                  With Spouse            1          1
## 3170 With Other Friends/Relatives            2          0
## 3172                        Alone            0          1
## 3173 With Other Friends/Relatives            0          1
## 3175                  With Spouse            1          1
## 3176                  With Spouse            1          1
## 3178                With Children            1          2
## 3179                        Alone            1          0
## 3180                  With Spouse            1          1
## 3182                  With Spouse            1          1
## 3183                        Alone            0          1
## 3184                  With Spouse            1          1
## 3185     With Spouse and Children            1          2
## 3186     With Spouse and Children            1          2
## 3187                        Alone            0          1
## 3188                  With Spouse            1          1
## 3189                  With Spouse            1          1
## 3190                        Alone            0          1
## 3191 With Other Friends/Relatives            1          1
## 3192                  With Spouse            1          1
## 3193 With Other Friends/Relatives            1          1
## 3194 With Other Friends/Relatives            2          2
## 3197                  With Spouse            1          1
## 3198 With Other Friends/Relatives            1          1
## 3199     With Spouse and Children            4          1
## 3200                        Alone            0          1
## 3201 With Other Friends/Relatives            1          1
## 3202                        Alone            1          0
## 3203                        Alone            0          1
## 3204                        Alone            0          1
## 3205                        Alone            1          0
## 3206     With Spouse and Children            2          1
## 3207 With Other Friends/Relatives            1          1
## 3208                        Alone            1          0
## 3209     With Spouse and Children            2          1
## 3210                        Alone            0          1
## 3211                  With Spouse            1          1
## 3212                        Alone            1          0
## 3213                        Alone            0          1
## 3214                  With Spouse            1          1
## 3215                  With Spouse            1          1
## 3216                  With Spouse            0          1
## 3218                  With Spouse            1          1
## 3219                  With Spouse            1          1
## 3220 With Other Friends/Relatives            0          2
## 3221                  With Spouse            1          1
## 3222                        Alone            0          1
## 3223                  With Spouse            1          1
## 3224                  With Spouse            1          1
## 3225 With Other Friends/Relatives            0          1
## 3226                  With Spouse            1          1
## 3227 With Other Friends/Relatives            1          1
## 3228 With Other Friends/Relatives            1          2
## 3229                  With Spouse            0          1
## 3230                        Alone            0          1
## 3231                        Alone            1          0
## 3232 With Other Friends/Relatives            3          1
## 3234                  With Spouse            1          1
## 3235                With Children            2          2
## 3236                With Children            1          1
## 3237     With Spouse and Children            2          1
## 3238                  With Spouse            2          4
## 3239                  With Spouse            1          1
## 3240                  With Spouse            1          1
## 3241                  With Spouse            1          1
## 3242 With Other Friends/Relatives            2          0
## 3243                        Alone            0          1
## 3245 With Other Friends/Relatives            1          1
## 3246     With Spouse and Children            1          2
## 3248 With Other Friends/Relatives            1          1
## 3249                        Alone            1          1
## 3251 With Other Friends/Relatives            1          4
## 3252                        Alone            1          0
## 3253                  With Spouse            1          1
## 3254                With Children            0          2
## 3255                        Alone            0          1
## 3256                  With Spouse            1          1
## 3258                        Alone            0          1
## 3259                  With Spouse            1          1
## 3260                  With Spouse            1          1
## 3262                  With Spouse            1          1
## 3263                        Alone            0          1
## 3264                        Alone            0          1
## 3265                        Alone            0          1
## 3266                  With Spouse            1          1
## 3267                        Alone            0          1
## 3268                  With Spouse            1          1
## 3269                  With Spouse            1          1
## 3270                        Alone            0          1
## 3271 With Other Friends/Relatives            2          0
## 3272                  With Spouse            1          0
## 3273                  With Spouse            1          1
## 3274                  With Spouse            1          1
## 3275                        Alone            1          0
## 3276                        Alone            1          0
## 3277                        Alone            1          0
## 3278                        Alone            0          1
## 3279 With Other Friends/Relatives            2          0
## 3280                        Alone            0          1
## 3281                  With Spouse            1          1
## 3282 With Other Friends/Relatives            0          5
## 3283 With Other Friends/Relatives            0          2
## 3284                  With Spouse            1          1
## 3285     With Spouse and Children            2          2
## 3287                  With Spouse            1          1
## 3288                        Alone            1          0
## 3289                  With Spouse            1          1
## 3290 With Other Friends/Relatives            2          1
## 3291                  With Spouse            1          1
## 3292                        Alone            0          1
## 3293 With Other Friends/Relatives            2          0
## 3294                        Alone            1          0
## 3295                  With Spouse            1          1
## 3296                  With Spouse            1          1
## 3297                        Alone            0          1
## 3298                        Alone            1          0
## 3299 With Other Friends/Relatives            1          1
## 3300                        Alone            0          1
## 3301                        Alone            0          1
## 3303                  With Spouse            1          1
## 3304                  With Spouse            1          1
## 3305                        Alone            1          0
## 3306                        Alone            1          0
## 3307                        Alone            1          0
## 3308                  With Spouse            1          1
## 3309                        Alone            0          1
## 3310                        Alone            0          1
## 3311                  With Spouse            2          0
## 3312                        Alone            0          1
## 3313 With Other Friends/Relatives            2          2
## 3314                  With Spouse            1          1
## 3315                        Alone            0          1
## 3316                        Alone            1          0
## 3317                  With Spouse            1          1
## 3318 With Other Friends/Relatives            2          2
## 3320                With Children            3          1
## 3321                  With Spouse            1          1
## 3322                  With Spouse            1          1
## 3323                  With Spouse            1          1
## 3324                        Alone            0          1
## 3325     With Spouse and Children            1          2
## 3326 With Other Friends/Relatives            1          0
## 3327 With Other Friends/Relatives            1          1
## 3328                        Alone            0          1
## 3329                  With Spouse            1          1
## 3330     With Spouse and Children            2          1
## 3331                        Alone            1          0
## 3332 With Other Friends/Relatives            1          1
## 3333 With Other Friends/Relatives           13         14
## 3334                        Alone            0          1
## 3335 With Other Friends/Relatives            1          1
## 3336                        Alone            1          0
## 3337                        Alone            1          0
## 3338                        Alone            1          0
## 3339                        Alone            0          1
## 3340                  With Spouse            1          1
## 3341     With Spouse and Children            2          1
## 3342                        Alone            0          1
## 3343                  With Spouse            1          1
## 3344 With Other Friends/Relatives            4          5
## 3345                        Alone            0          1
## 3346                  With Spouse            1          0
## 3347                        Alone            0          1
## 3349                        Alone            0          1
## 3350                  With Spouse            1          1
## 3351                        Alone            0          1
## 3352                        Alone            0          1
## 3353                        Alone            1          0
## 3354 With Other Friends/Relatives            1          1
## 3355     With Spouse and Children            2          1
## 3356 With Other Friends/Relatives            1          1
## 3357                        Alone            0          1
## 3358                  With Spouse            1          1
## 3359 With Other Friends/Relatives            2          4
## 3360 With Other Friends/Relatives            0          2
## 3361                        Alone            1          0
## 3362                  With Spouse            1          1
## 3363 With Other Friends/Relatives            1          1
## 3365                        Alone            1          0
## 3366                        Alone            0          1
## 3367                  With Spouse            1          0
## 3368                  With Spouse            1          1
## 3369                        Alone            1          0
## 3370 With Other Friends/Relatives            2          1
## 3372     With Spouse and Children            2          1
## 3373                        Alone            1          0
## 3374                        Alone            1          0
## 3375                        Alone            0          1
## 3376                  With Spouse            1          1
## 3377                        Alone            0          1
## 3378                With Children            0          2
## 3379                  With Spouse            1          1
## 3380                        Alone            0          1
## 3381                  With Spouse            1          1
## 3382                        Alone            0          1
## 3383                        Alone            0          1
## 3384                        Alone            0          1
## 3385                        Alone            0          1
## 3386 With Other Friends/Relatives            1          1
## 3387                        Alone            0          1
## 3388 With Other Friends/Relatives            2          1
## 3389                        Alone            0          1
## 3390 With Other Friends/Relatives            6          4
## 3391     With Spouse and Children            1          2
## 3392                  With Spouse            1          1
## 3393                        Alone            1          0
## 3394                  With Spouse            1          1
## 3395     With Spouse and Children            1          2
## 3396 With Other Friends/Relatives            2          1
## 3397     With Spouse and Children            1          1
## 3398                  With Spouse            1          1
## 3399                        Alone            0          1
## 3400     With Spouse and Children            2          1
## 3402     With Spouse and Children            2          2
## 3404                  With Spouse            1          1
## 3405 With Other Friends/Relatives            3          2
## 3406                  With Spouse            1          1
## 3407                        Alone            0          1
## 3408                        Alone            1          0
## 3409                        Alone            1          0
## 3410                        Alone            1          0
## 3411 With Other Friends/Relatives            2          0
## 3412                        Alone            1          0
## 3413                        Alone            0          1
## 3414                        Alone            0          1
## 3415                  With Spouse            1          1
## 3416                  With Spouse            1          1
## 3417                  With Spouse            1          1
## 3418                  With Spouse            1          1
## 3419                        Alone            0          1
## 3420                        Alone            1          0
## 3421                  With Spouse            1          1
## 3422                        Alone            0          1
## 3423                        Alone            0          1
## 3424                        Alone            0          1
## 3425                  With Spouse            1          1
## 3426                        Alone            0          1
## 3427                        Alone            1          0
## 3428                  With Spouse            1          1
## 3429                        Alone            1          0
## 3430     With Spouse and Children            2          2
## 3431                  With Spouse            1          1
## 3432                        Alone            0          1
## 3433 With Other Friends/Relatives            2          0
## 3434                  With Spouse            1          1
## 3436                  With Spouse            1          1
## 3437                  With Spouse            1          1
## 3438                  With Spouse            1          1
## 3439                  With Spouse            1          1
## 3440                  With Spouse            1          1
## 3441                        Alone            0          1
## 3442                        Alone            0          1
## 3443                        Alone            0          1
## 3444                  With Spouse            1          0
## 3445                        Alone            1          0
## 3446     With Spouse and Children            4          2
## 3447     With Spouse and Children            2          2
## 3448                        Alone            1          0
## 3449                  With Spouse            1          1
## 3450 With Other Friends/Relatives            2          0
## 3451                        Alone            0          1
## 3452 With Other Friends/Relatives            1          1
## 3453     With Spouse and Children            2          1
## 3454                        Alone            0          1
## 3455                        Alone            0          1
## 3456                        Alone            1          0
## 3457                        Alone            1          0
## 3458     With Spouse and Children            2          1
## 3459                  With Spouse            1          1
## 3460                        Alone            0          1
## 3461                  With Spouse            1          1
## 3462                        Alone            0          1
## 3463                        Alone            0          1
## 3464     With Spouse and Children            1          3
## 3465                  With Spouse            4          3
## 3466                        Alone            0          1
## 3467     With Spouse and Children            1          3
## 3468 With Other Friends/Relatives            2          0
## 3469                        Alone            0          1
## 3470                  With Spouse            1          1
## 3471                        Alone            0          1
## 3472                With Children            2          0
## 3473     With Spouse and Children            2          1
## 3474                  With Spouse            1          1
## 3476                  With Spouse            1          1
## 3477 With Other Friends/Relatives            3          0
## 3478                        Alone            1          0
## 3479                        Alone            0          1
## 3480 With Other Friends/Relatives            1          1
## 3481 With Other Friends/Relatives            2          0
## 3482                        Alone            0          1
## 3484                        Alone            0          1
## 3485                        Alone            0          1
## 3486     With Spouse and Children            2          2
## 3487                        Alone            0          1
## 3488                        Alone            1          0
## 3489                        Alone            1          0
## 3490 With Other Friends/Relatives            1          1
## 3491 With Other Friends/Relatives            2          0
## 3492                        Alone            0          1
## 3493                  With Spouse            1          1
## 3494                        Alone            0          1
## 3495 With Other Friends/Relatives            0          2
## 3496 With Other Friends/Relatives            2          0
## 3497                        Alone            1          0
## 3498                  With Spouse           11          1
## 3499                        Alone            0          1
## 3500                        Alone            0          1
## 3501 With Other Friends/Relatives            2          0
## 3502     With Spouse and Children            2          1
## 3503     With Spouse and Children            1          3
## 3504                        Alone            0          1
## 3505 With Other Friends/Relatives            3          5
## 3506                        Alone            0          1
## 3508                  With Spouse            1          1
## 3509                With Children            0          2
## 3510                  With Spouse            1          1
## 3511 With Other Friends/Relatives            2          0
## 3512                        Alone            1          0
## 3513 With Other Friends/Relatives            2          1
## 3514                        Alone            1          0
## 3515 With Other Friends/Relatives            4          0
## 3516                        Alone            1          0
## 3517                        Alone            0          1
## 3518     With Spouse and Children            2          2
## 3519                  With Spouse            0          1
## 3520 With Other Friends/Relatives            1          1
## 3521                        Alone            0          1
## 3522                        Alone            0          1
## 3523     With Spouse and Children            2          2
## 3524 With Other Friends/Relatives            1          1
## 3525                        Alone            0          1
## 3526                With Children            1          2
## 3527                        Alone            0          1
## 3528                        Alone            1          0
## 3530                        Alone            0          1
## 3531 With Other Friends/Relatives            0          6
## 3532                        Alone            1          0
## 3533     With Spouse and Children            2          2
## 3535                  With Spouse            1          1
## 3536                        Alone            0          1
## 3537     With Spouse and Children            1          2
## 3538                  With Spouse            1          1
## 3539                  With Spouse            1          1
## 3540     With Spouse and Children            1          2
## 3541                  With Spouse            1          0
## 3542     With Spouse and Children            2          1
## 3543     With Spouse and Children            2          1
## 3545                        Alone            0          1
## 3546                With Children            1          1
## 3547                  With Spouse            1          1
## 3548                  With Spouse            0          1
## 3549                        Alone            0          1
## 3550     With Spouse and Children            1          2
## 3551                        Alone            0          1
## 3552                        Alone            1          0
## 3553                  With Spouse            1          1
## 3554                        Alone            1          0
## 3555                  With Spouse            1          1
## 3556                        Alone            0          1
## 3557                  With Spouse            1          1
## 3558                  With Spouse            1          1
## 3559                        Alone            0          1
## 3560                        Alone            1          0
## 3561     With Spouse and Children            3          1
## 3562                        Alone            0          1
## 3563                        Alone            1          0
## 3564                  With Spouse            1          1
## 3566                        Alone            0          1
## 3567                  With Spouse            1          1
## 3568                        Alone            1          1
## 3570     With Spouse and Children            1          3
## 3573 With Other Friends/Relatives            1          1
## 3574 With Other Friends/Relatives            2          0
## 3576                With Children            2          2
## 3577                        Alone            0          1
## 3578                        Alone            1          0
## 3579                  With Spouse            1          1
## 3580                        Alone            0          1
## 3581                  With Spouse            1          1
## 3582                        Alone            1          0
## 3583                  With Spouse            1          1
## 3584                        Alone            0          1
## 3585                  With Spouse            1          1
## 3586                        Alone            0          1
## 3587                  With Spouse            1          1
## 3588     With Spouse and Children            2          2
## 3589                  With Spouse            1          1
## 3591                With Children            1          1
## 3592     With Spouse and Children            2          3
## 3593                        Alone            0          1
## 3594     With Spouse and Children            3          1
## 3595                  With Spouse            1          1
## 3596                  With Spouse            1          1
## 3597                        Alone            0          1
## 3598                        Alone            0          1
## 3599                        Alone            0          1
## 3600                        Alone            1          0
## 3601 With Other Friends/Relatives            1          1
## 3602                  With Spouse            1          1
## 3603                  With Spouse            1          1
## 3605                With Children            2          2
## 3606                        Alone            1          0
## 3608                        Alone            1          0
## 3609 With Other Friends/Relatives            1          1
## 3610                        Alone            0          1
## 3611                        Alone            1          0
## 3612                        Alone            0          1
## 3613                        Alone            1          0
## 3614                        Alone            0          1
## 3615                        Alone            1          0
## 3616                        Alone            1          0
## 3617     With Spouse and Children            1          2
## 3618                        Alone            1          0
## 3619                        Alone            0          1
## 3620                        Alone            1          0
## 3621                        Alone            0          1
## 3622                  With Spouse            1          1
## 3623                        Alone            1          0
## 3624                        Alone            1          0
## 3625                  With Spouse            1          1
## 3626     With Spouse and Children            1          4
## 3627                  With Spouse            1          1
## 3628                        Alone            1          0
## 3629 With Other Friends/Relatives            5          0
## 3630                        Alone            0          1
## 3632                        Alone            0          1
## 3633                        Alone            0          1
## 3634                        Alone            0          1
## 3635                  With Spouse            1          1
## 3636                        Alone            1          0
## 3637                  With Spouse            1          1
## 3638                        Alone            0          1
## 3639                        Alone            0          1
## 3640                  With Spouse            1          1
## 3641                  With Spouse            1          1
## 3642 With Other Friends/Relatives            3          7
## 3643                        Alone            1          0
## 3644                        Alone            0          1
## 3645                        Alone            1          0
## 3646                        Alone            1          0
## 3647     With Spouse and Children            2          2
## 3648                  With Spouse            1          1
## 3649 With Other Friends/Relatives            1          2
## 3651     With Spouse and Children            2          2
## 3652                  With Spouse            1          1
## 3653 With Other Friends/Relatives            2          1
## 3654                  With Spouse            1          1
## 3655                  With Spouse            1          1
## 3656     With Spouse and Children            2          1
## 3657                        Alone            0          1
## 3658                        Alone            0          1
## 3659                        Alone            1          0
## 3660                        Alone            0          1
## 3661                  With Spouse            1          1
## 3662                  With Spouse            1          1
## 3663 With Other Friends/Relatives            1          0
## 3664                        Alone            0          1
## 3665                        Alone            0          1
## 3666 With Other Friends/Relatives            2          2
## 3667                        Alone            1          0
## 3668                        Alone            1          0
## 3669                  With Spouse            1          1
## 3671                        Alone            1          0
## 3672                  With Spouse            1          1
## 3673                        Alone            0          1
## 3675                        Alone            0          1
## 3676 With Other Friends/Relatives            2          0
## 3677 With Other Friends/Relatives            6          7
## 3678                        Alone            0          1
## 3679                  With Spouse            1          1
## 3680                  With Spouse            1          1
## 3681 With Other Friends/Relatives            1          1
## 3682                        Alone            1          0
## 3683                  With Spouse            1          1
## 3684                        Alone            0          1
## 3685                  With Spouse            1          1
## 3686                        Alone            0          1
## 3687                  With Spouse            1          1
## 3688 With Other Friends/Relatives            0          2
## 3689                        Alone            0          1
## 3690                        Alone            0          1
## 3691                  With Spouse            1          1
## 3692                  With Spouse            1          1
## 3693 With Other Friends/Relatives            1          1
## 3694                        Alone            1          0
## 3695     With Spouse and Children            2          1
## 3696                  With Spouse            1          0
## 3697     With Spouse and Children            2          2
## 3698                  With Spouse            1          1
## 3699                        Alone            0          1
## 3700                  With Spouse            1          1
## 3701     With Spouse and Children            2          1
## 3702                        Alone            1          0
## 3703                        Alone            1          0
## 3704                  With Spouse            1          1
## 3705     With Spouse and Children            3          2
## 3706     With Spouse and Children            1          1
## 3707                  With Spouse            1          1
## 3708                  With Spouse            1          1
## 3709                        Alone            0          1
## 3710     With Spouse and Children            2          1
## 3711                With Children            2          1
## 3712     With Spouse and Children            3          2
## 3713                  With Spouse            1          1
## 3714                        Alone            0          1
## 3715                        Alone            0          1
## 3716                        Alone            0          1
## 3717                  With Spouse            1          1
## 3718                        Alone            0          1
## 3719                  With Spouse            1          1
## 3720 With Other Friends/Relatives            1          1
## 3721                        Alone            0          1
## 3722                        Alone            0          1
## 3723 With Other Friends/Relatives            3          0
## 3724                        Alone            0          1
## 3725                        Alone            1          0
## 3726                  With Spouse            1          1
## 3727                  With Spouse            1          1
## 3728     With Spouse and Children            4          1
## 3729                  With Spouse            1          1
## 3730                  With Spouse            1          1
## 3731 With Other Friends/Relatives            2          2
## 3732                        Alone            1          0
## 3733 With Other Friends/Relatives            1          7
## 3734                        Alone            1          0
## 3735 With Other Friends/Relatives            1          1
## 3736                  With Spouse            1          1
## 3737                  With Spouse            1          1
## 3738                        Alone            0          1
## 3739                  With Spouse            1          1
## 3740 With Other Friends/Relatives            2          2
## 3741                        Alone            0          1
## 3742 With Other Friends/Relatives            1          1
## 3743                        Alone            1          0
## 3744                        Alone            1          0
## 3745 With Other Friends/Relatives            5          9
## 3746                  With Spouse            1          3
## 3747 With Other Friends/Relatives            1          1
## 3748 With Other Friends/Relatives            4          2
## 3749                        Alone            0          1
## 3750                        Alone            0          1
## 3751 With Other Friends/Relatives            0          1
## 3752 With Other Friends/Relatives            4          0
## 3753                With Children            1          1
## 3754     With Spouse and Children            2          2
## 3755                        Alone            1          0
## 3756                  With Spouse            1          1
## 3757                        Alone            0          1
## 3758                        Alone            0          1
## 3759                  With Spouse            1          1
## 3760                        Alone            0          1
## 3761 With Other Friends/Relatives            0          1
## 3762                  With Spouse            1          1
## 3763                        Alone            0          1
## 3764     With Spouse and Children            2          2
## 3765                        Alone            0          1
## 3766                        Alone            0          1
## 3767                        Alone            0          1
## 3769                  With Spouse            1          1
## 3770                        Alone            0          1
## 3771                  With Spouse            1          1
## 3772                        Alone            0          1
## 3773                        Alone            0          1
## 3774                  With Spouse            1          1
## 3775                        Alone            0          1
## 3776                        Alone            0          1
## 3777                        Alone            0          1
## 3778                        Alone            0          1
## 3779     With Spouse and Children            2          2
## 3780                  With Spouse            1          1
## 3781                        Alone            0          1
## 3782                        Alone            0          1
## 3783                        Alone            0          1
## 3785                        Alone            0          1
## 3786                        Alone            1          0
## 3787                        Alone            1          0
## 3788                        Alone            0          1
## 3789                With Children            2          0
## 3790 With Other Friends/Relatives            1          1
## 3791                  With Spouse            1          1
## 3792                        Alone            1          0
## 3793                        Alone            1          0
## 3794                        Alone            0          1
## 3795 With Other Friends/Relatives            2          0
## 3796                        Alone            1          0
## 3797                        Alone            0          1
## 3798 With Other Friends/Relatives            1          1
## 3799 With Other Friends/Relatives            1          1
## 3800                        Alone            1          0
## 3801                  With Spouse            1          1
## 3802                        Alone            1          0
## 3803     With Spouse and Children            3          1
## 3805                        Alone            0          1
## 3806                        Alone            0          1
## 3807                        Alone            1          0
## 3808                  With Spouse            1          1
## 3809                        Alone            0          1
## 3810                        Alone            1          0
## 3811 With Other Friends/Relatives            3          1
## 3812                        Alone            0          1
## 3813                  With Spouse            1          1
## 3814                        Alone            1          0
## 3815 With Other Friends/Relatives            2          0
## 3816                        Alone            0          1
## 3817     With Spouse and Children            1          1
## 3818     With Spouse and Children            2          3
## 3819                  With Spouse            1          1
## 3820                  With Spouse            1          0
## 3821                        Alone            1          0
## 3822                        Alone            1          0
## 3823                        Alone            0          1
## 3824                        Alone            0          1
## 3825                        Alone            0          1
## 3826                  With Spouse            1          1
## 3827 With Other Friends/Relatives            2          1
## 3828                        Alone            0          1
## 3829 With Other Friends/Relatives            1          1
## 3830                        Alone            0          1
## 3831 With Other Friends/Relatives            2          0
## 3832     With Spouse and Children            2          1
## 3833                        Alone            0          1
## 3834                        Alone            0          1
## 3835                  With Spouse            1          1
## 3836                  With Spouse            1          1
## 3837                        Alone            0          1
## 3838                With Children            2          0
## 3839                        Alone            0          1
## 3840                        Alone            0          1
## 3841                        Alone            0          1
## 3842 With Other Friends/Relatives            4          2
## 3843                  With Spouse            1          1
## 3844                  With Spouse            1          1
## 3845                        Alone            0          1
## 3847                        Alone            0          1
## 3848 With Other Friends/Relatives            3          3
## 3849 With Other Friends/Relatives            3          0
## 3850                        Alone            0          1
## 3851                        Alone            0          1
## 3852 With Other Friends/Relatives            1          1
## 3853 With Other Friends/Relatives            1          2
## 3855 With Other Friends/Relatives            1          1
## 3856 With Other Friends/Relatives            1          2
## 3857 With Other Friends/Relatives            0          2
## 3858                  With Spouse            1          1
## 3859                  With Spouse            1          1
## 3860 With Other Friends/Relatives            0          2
## 3863 With Other Friends/Relatives            1          1
## 3864                        Alone            1          0
## 3865                        Alone            0          1
## 3866                        Alone            1          0
## 3867 With Other Friends/Relatives            1          1
## 3868                With Children            1          1
## 3869                        Alone            0          1
## 3870 With Other Friends/Relatives            6          2
## 3871                        Alone            1          0
## 3872 With Other Friends/Relatives            2          0
## 3873                        Alone            1          0
## 3874                  With Spouse            1          1
## 3875                        Alone            0          1
## 3876                        Alone            0          1
## 3877                  With Spouse            1          1
## 3878 With Other Friends/Relatives            1          1
## 3879 With Other Friends/Relatives            3          0
## 3880 With Other Friends/Relatives            3          5
## 3882                        Alone            0          1
## 3883                        Alone            0          1
## 3884 With Other Friends/Relatives            2          0
## 3885                        Alone            0          1
## 3886 With Other Friends/Relatives            2          2
## 3887                        Alone            0          1
## 3888                  With Spouse            1          1
## 3889                        Alone            1          0
## 3891                        Alone            1          0
## 3892                  With Spouse            1          1
## 3893                  With Spouse            1          1
## 3894 With Other Friends/Relatives            2          1
## 3895                        Alone            0          1
## 3896     With Spouse and Children            4          1
## 3897                  With Spouse            1          1
## 3898                  With Spouse            1          1
## 3900                  With Spouse            1          1
## 3901                  With Spouse            1          1
## 3902                        Alone            0          1
## 3903                        Alone            1          0
## 3905 With Other Friends/Relatives            1          1
## 3906                        Alone            0          1
## 3907 With Other Friends/Relatives            2          2
## 3908                        Alone            0          1
## 3909                        Alone            0          1
## 3910                With Children            0          3
## 3911                        Alone            1          0
## 3912                        Alone            0          1
## 3913                        Alone            0          1
## 3914                        Alone            1          0
## 3915                        Alone            1          0
## 3916                        Alone            0          1
## 3917                        Alone            0          1
## 3918                  With Spouse            1          1
## 3919                        Alone            0          1
## 3920                        Alone            0          1
## 3921                  With Spouse            1          1
## 3922                  With Spouse            1          1
## 3923                  With Spouse            1          1
## 3924 With Other Friends/Relatives            1          1
## 3925 With Other Friends/Relatives            3          4
## 3926                  With Spouse            1          3
## 3927                        Alone            0          1
## 3928                        Alone            1          0
## 3929                  With Spouse            1          1
## 3930                        Alone            1          0
## 3931                  With Spouse            1          1
## 3932                        Alone            0          1
## 3934                        Alone            1          0
## 3935                        Alone            0          1
## 3936 With Other Friends/Relatives            0          2
## 3937 With Other Friends/Relatives            1          1
## 3938                  With Spouse            1          1
## 3939     With Spouse and Children            3          3
## 3940                        Alone            0          1
## 3941                        Alone            0          1
## 3942 With Other Friends/Relatives            6         10
## 3943 With Other Friends/Relatives            1          0
## 3944 With Other Friends/Relatives            2          2
## 3945                        Alone            1          0
## 3946 With Other Friends/Relatives            8          2
## 3947                        Alone            0          1
## 3948                  With Spouse            1          1
## 3949                        Alone            0          1
## 3951                        Alone            0          1
## 3952                        Alone            1          0
## 3953                With Children            3          0
## 3954                  With Spouse            1          1
## 3955                  With Spouse            1          1
## 3956 With Other Friends/Relatives            4          0
## 3957                        Alone            1          1
## 3958                  With Spouse            1          1
## 3959                        Alone            1          0
## 3960     With Spouse and Children            2          2
## 3961                  With Spouse            1          1
## 3963                With Children            2          1
## 3964 With Other Friends/Relatives            2          0
## 3966                  With Spouse            1          1
## 3967                  With Spouse            1          1
## 3969     With Spouse and Children            2          2
## 3970                  With Spouse            1          1
## 3971                        Alone            1          0
## 3972                        Alone            0          1
## 3973                        Alone            0          1
## 3974                        Alone            0          1
## 3975                        Alone            0          1
## 3976                  With Spouse            1          1
## 3977                With Children            1          1
## 3978                  With Spouse            1          1
## 3979                        Alone            1          0
## 3980                  With Spouse            1          1
## 3981                        Alone            1          0
## 3982                        Alone            1          0
## 3983                        Alone            1          0
## 3984                  With Spouse            1          1
## 3985                        Alone            0          1
## 3986                  With Spouse            1          1
## 3987                  With Spouse            1          1
## 3988     With Spouse and Children            1          2
## 3989                  With Spouse            1          1
## 3990                        Alone            0          1
## 3991                With Children            2          0
## 3992                  With Spouse            1          1
## 3993                        Alone            1          0
## 3994                        Alone            0          1
## 3995                  With Spouse            1          1
## 3996                        Alone            0          1
## 3997                        Alone            0          1
## 3998                  With Spouse            1          1
## 3999                  With Spouse            1          1
## 4000                  With Spouse            1          1
## 4001 With Other Friends/Relatives            2          0
## 4002                        Alone            0          1
## 4003                  With Spouse            1          1
## 4004                        Alone            1          0
## 4007                        Alone            0          1
## 4008 With Other Friends/Relatives            1          2
## 4009                        Alone            0          1
## 4010                        Alone            0          1
## 4012                        Alone            0          1
## 4013                        Alone            1          0
## 4014 With Other Friends/Relatives            2          0
## 4015                        Alone            0          1
## 4016     With Spouse and Children            2          1
## 4017                  With Spouse            1          1
## 4018                        Alone            0          1
## 4019                        Alone            0          1
## 4020                  With Spouse            1          1
## 4021                With Children            1          1
## 4022 With Other Friends/Relatives            2          0
## 4023                        Alone            1          0
## 4025                With Children            1          1
## 4027                        Alone            1          0
## 4028 With Other Friends/Relatives           12          8
## 4029                        Alone            0          1
## 4030                        Alone            1          0
## 4031 With Other Friends/Relatives            3          3
## 4032                        Alone            1          0
## 4033                        Alone            0          2
## 4034                        Alone            1          0
## 4035                  With Spouse            1          1
## 4036                        Alone            0          1
## 4037                        Alone            0          1
## 4038 With Other Friends/Relatives            2          2
## 4039                        Alone            1          0
## 4040                  With Spouse            1          1
## 4041                        Alone            0          1
## 4042                  With Spouse            1          1
## 4043                        Alone            0          1
## 4044                  With Spouse            1          1
## 4045                        Alone            1          0
## 4046 With Other Friends/Relatives            0          2
## 4047                  With Spouse            1          1
## 4048                  With Spouse            1          1
## 4049                        Alone            1          1
## 4050                        Alone            0          1
## 4051 With Other Friends/Relatives            1          1
## 4052                With Children            3          2
## 4053 With Other Friends/Relatives            0          2
## 4054                        Alone            1          1
## 4055                        Alone            0          1
## 4056                  With Spouse            1          1
## 4057 With Other Friends/Relatives            0          5
## 4058 With Other Friends/Relatives            2          2
## 4059                        Alone            0          1
## 4060                        Alone            1          0
## 4061     With Spouse and Children            2          2
## 4062                        Alone            0          1
## 4063                  With Spouse            1          1
## 4064                  With Spouse            1          1
## 4065                        Alone            0          1
## 4066                        Alone            0          1
## 4067                        Alone            1          0
## 4068                  With Spouse            1          1
## 4069                        Alone            1          0
## 4070                  With Spouse            1          1
## 4071                        Alone            1          0
## 4072                        Alone            0          1
## 4073     With Spouse and Children            1          2
## 4075                  With Spouse            1          1
## 4076                  With Spouse            1          1
## 4077                        Alone            0          1
## 4078                        Alone            0          1
## 4079                        Alone            0          1
## 4080                  With Spouse            1          1
## 4081                  With Spouse            1          1
## 4082                        Alone            0          1
## 4083 With Other Friends/Relatives            5          0
## 4084                        Alone            1          0
## 4085                  With Spouse            1          1
## 4086                        Alone            1          0
## 4088                        Alone            0          1
## 4089                        Alone            1          0
## 4090                        Alone            0          1
## 4091 With Other Friends/Relatives            2          1
## 4092                  With Spouse            1          1
## 4093                  With Spouse            1          1
## 4094     With Spouse and Children            2          2
## 4095                  With Spouse            1          1
## 4096 With Other Friends/Relatives            2          1
## 4097 With Other Friends/Relatives            2          0
## 4098                  With Spouse            1          1
## 4099 With Other Friends/Relatives            1          2
## 4100                        Alone            0          1
## 4102                        Alone            0          1
## 4103                  With Spouse            1          1
## 4104                  With Spouse            1          1
## 4105                        Alone            1          0
## 4106                  With Spouse            1          1
## 4107                        Alone            0          1
## 4108                  With Spouse            1          1
## 4109                  With Spouse            1          1
## 4111                        Alone            0          1
## 4112                  With Spouse            1          1
## 4113 With Other Friends/Relatives            2          2
## 4114 With Other Friends/Relatives            2          1
## 4115                        Alone            0          1
## 4116 With Other Friends/Relatives            2          2
## 4117 With Other Friends/Relatives            1          5
## 4118                        Alone            0          1
## 4119                        Alone            0          1
## 4120                        Alone            0          1
## 4122                        Alone            0          1
## 4123 With Other Friends/Relatives            1          0
## 4124 With Other Friends/Relatives            1          1
## 4125                        Alone            0          1
## 4126                        Alone            0          1
## 4127                        Alone            0          1
## 4128 With Other Friends/Relatives            2          1
## 4129 With Other Friends/Relatives            2          0
## 4130 With Other Friends/Relatives            1          1
## 4131 With Other Friends/Relatives            4          2
## 4132 With Other Friends/Relatives            0          2
## 4133                        Alone            0          1
## 4134                        Alone            0          1
## 4135     With Spouse and Children            1          1
## 4136                  With Spouse            1          1
## 4137                  With Spouse            1          1
## 4138                  With Spouse            1          1
## 4139                        Alone            1          0
## 4140     With Spouse and Children            4          1
## 4141                        Alone            1          0
## 4142                        Alone            1          0
## 4143                        Alone            1          0
## 4144                        Alone            0          1
## 4145                        Alone            0          1
## 4146                        Alone            0          1
## 4147                        Alone            0          1
## 4148 With Other Friends/Relatives            1          1
## 4149                        Alone            0          1
## 4150                        Alone            0          1
## 4151                  With Spouse            1          1
## 4152                  With Spouse            1          1
## 4153                        Alone            0          1
## 4154                        Alone            1          0
## 4155 With Other Friends/Relatives            1          1
## 4156                  With Spouse            1          1
## 4157 With Other Friends/Relatives            3          0
## 4159                  With Spouse            1          1
## 4160                        Alone            0          1
## 4161                  With Spouse            1          1
## 4162 With Other Friends/Relatives            0          1
## 4163                        Alone            0          1
## 4164                  With Spouse            1          1
## 4165                        Alone            1          0
## 4166 With Other Friends/Relatives            3          0
## 4167                        Alone            0          1
## 4168 With Other Friends/Relatives            0          2
## 4169     With Spouse and Children            2          2
## 4170                  With Spouse            1          1
## 4171     With Spouse and Children            1          2
## 4172                        Alone            1          0
## 4173                  With Spouse            1          1
## 4174                With Children            1          1
## 4175     With Spouse and Children            2          2
## 4176                        Alone            0          1
## 4177                        Alone            1          0
## 4178                        Alone            0          1
## 4179                        Alone            0          1
## 4180                        Alone            1          0
## 4181                        Alone            1          0
## 4182                  With Spouse            1          1
## 4183                        Alone            0          1
## 4184                  With Spouse            1          1
## 4185                        Alone            1          0
## 4186 With Other Friends/Relatives            2          0
## 4187 With Other Friends/Relatives            1          1
## 4188                        Alone            1          0
## 4189                        Alone            0          1
## 4190                  With Spouse            1          1
## 4191                  With Spouse            1          1
## 4192 With Other Friends/Relatives            1          1
## 4193                        Alone            0          1
## 4194                  With Spouse            1          1
## 4195                        Alone            0          1
## 4196     With Spouse and Children            4          1
## 4197                  With Spouse            1          1
## 4198                  With Spouse            1          1
## 4199                  With Spouse            1          1
## 4200                        Alone            0          1
## 4201                        Alone            0          1
## 4202                  With Spouse            1          1
## 4203                        Alone            1          1
## 4204 With Other Friends/Relatives            2          1
## 4205                  With Spouse            1          1
## 4206                With Children            2          1
## 4207                  With Spouse            1          1
## 4208                  With Spouse            1          1
## 4209                        Alone            1          0
## 4210                        Alone            0          1
## 4211 With Other Friends/Relatives            1          3
## 4212                  With Spouse            1          1
## 4213 With Other Friends/Relatives            1          1
## 4214                  With Spouse            1          1
## 4215 With Other Friends/Relatives            2          2
## 4216     With Spouse and Children            2          1
## 4218                        Alone            1          0
## 4219                  With Spouse            1          1
## 4220                  With Spouse            1          1
## 4221                        Alone            1          0
## 4222     With Spouse and Children            3          3
## 4223 With Other Friends/Relatives            0          1
## 4224     With Spouse and Children            3          1
## 4225                  With Spouse            1          1
## 4226                        Alone            1          0
## 4227 With Other Friends/Relatives            0          2
## 4228                        Alone            0          1
## 4229                  With Spouse            1          1
## 4230 With Other Friends/Relatives            2          1
## 4231     With Spouse and Children            3          2
## 4232                With Children            4          1
## 4233                  With Spouse            1          1
## 4234     With Spouse and Children            2          2
## 4235 With Other Friends/Relatives            1          2
## 4236                  With Spouse            1          1
## 4238     With Spouse and Children            6          3
## 4239                  With Spouse            1          1
## 4240                        Alone            0          1
## 4241                  With Spouse            1          1
## 4242                        Alone            1          0
## 4243                  With Spouse            1          1
## 4244                        Alone            0          1
## 4245 With Other Friends/Relatives            0          4
## 4246                        Alone            1          0
## 4247                  With Spouse            1          1
## 4248                  With Spouse            1          1
## 4249 With Other Friends/Relatives            5          6
## 4250                  With Spouse            1          1
## 4251                        Alone            1          0
## 4252                        Alone            1          0
## 4253                        Alone            1          0
## 4254                        Alone            0          1
## 4255                        Alone            0          1
## 4256                        Alone            0          1
## 4257                  With Spouse            1          1
## 4258                        Alone            1          0
## 4259                        Alone            0          1
## 4260 With Other Friends/Relatives            2          2
## 4261                        Alone            0          1
## 4262                With Children            1          2
## 4263 With Other Friends/Relatives            1          0
## 4264 With Other Friends/Relatives            1          1
## 4265                  With Spouse            1          1
## 4266                        Alone            1          0
## 4267                        Alone            0          1
## 4268                  With Spouse            1          1
## 4269                        Alone            1          0
## 4270                  With Spouse            1          1
## 4271                        Alone            0          1
## 4272                        Alone            0          1
## 4273                        Alone            0          1
## 4274                        Alone            0          1
## 4275 With Other Friends/Relatives            0          2
## 4276                With Children            1          2
## 4277                  With Spouse            0          2
## 4278                  With Spouse            1          1
## 4279                  With Spouse            1          1
## 4280                        Alone            0          1
## 4281                  With Spouse            1          1
## 4282                        Alone            0          1
## 4283                        Alone            2          0
## 4284                  With Spouse            1          1
## 4285 With Other Friends/Relatives            1          1
## 4286     With Spouse and Children            2          1
## 4287                        Alone            1          0
## 4288     With Spouse and Children            1          3
## 4289 With Other Friends/Relatives            2          0
## 4290                  With Spouse            1          1
## 4291                        Alone            1          0
## 4292                        Alone            0          1
## 4293 With Other Friends/Relatives            0          1
## 4294                  With Spouse            1          1
## 4295                        Alone            1          0
## 4296                        Alone            1          0
## 4297     With Spouse and Children            2          2
## 4298                  With Spouse            1          1
## 4299                With Children            1          1
## 4300                  With Spouse            1          1
## 4301                        Alone            0          1
## 4302                        Alone            0          1
## 4303                        Alone            0          1
## 4304                  With Spouse            1          1
## 4305                  With Spouse            1          1
## 4306                  With Spouse            1          1
## 4307                  With Spouse            1          1
## 4308 With Other Friends/Relatives            0          2
## 4309                        Alone            1          0
## 4310                  With Spouse            1          1
## 4311     With Spouse and Children            2          2
## 4312                        Alone            1          0
## 4313 With Other Friends/Relatives            1          2
## 4315                  With Spouse            1          1
## 4316 With Other Friends/Relatives            2          2
## 4317 With Other Friends/Relatives            3          0
## 4318 With Other Friends/Relatives            1          1
## 4319                  With Spouse            1          1
## 4320 With Other Friends/Relatives            0          3
## 4321                  With Spouse            1          1
## 4323                  With Spouse            1          1
## 4324                        Alone            0          1
## 4325     With Spouse and Children            3          1
## 4326 With Other Friends/Relatives            0          3
## 4327                  With Spouse            1          1
## 4328                        Alone            0          1
## 4329                  With Spouse            1          1
## 4330                        Alone            1          0
## 4331                With Children            2          1
## 4332                        Alone            0          1
## 4333 With Other Friends/Relatives            1          0
## 4335                        Alone            0          1
## 4336 With Other Friends/Relatives            0          2
## 4337 With Other Friends/Relatives            2          1
## 4338                        Alone            1          0
## 4341                  With Spouse            1          1
## 4342                        Alone            1          3
## 4343                        Alone            1          0
## 4344                        Alone            0          1
## 4345 With Other Friends/Relatives            1          1
## 4346                  With Spouse            1          1
## 4347 With Other Friends/Relatives            1          1
## 4348                        Alone            1          0
## 4349                  With Spouse            1          1
## 4350                        Alone            0          1
## 4351                  With Spouse            1          1
## 4352                        Alone            1          0
## 4353                        Alone            0          1
## 4354                  With Spouse            1          1
## 4355                        Alone            1          0
## 4356                        Alone            0          1
## 4357                        Alone            0          1
## 4358                        Alone            0          1
## 4359                  With Spouse            1          1
## 4360                        Alone            1          0
## 4361 With Other Friends/Relatives            7          5
## 4362                        Alone            1          0
## 4364                        Alone            0          1
## 4365                        Alone            0          1
## 4366 With Other Friends/Relatives            0          1
## 4367                  With Spouse            1          1
## 4368                        Alone            0          1
## 4369                        Alone            0          1
## 4370                        Alone            0          1
## 4371                        Alone            0          1
## 4372                  With Spouse            1          1
## 4373                  With Spouse            1          1
## 4374                  With Spouse            1          1
## 4376 With Other Friends/Relatives            3          0
## 4377                With Children            2          1
## 4378 With Other Friends/Relatives            1          2
## 4379                        Alone            0          1
## 4380                        Alone            0          1
## 4381                        Alone            1          0
## 4382     With Spouse and Children            3          1
## 4383                        Alone            0          1
## 4384                        Alone            0          1
## 4385                        Alone            0          1
## 4386                  With Spouse            1          1
## 4387                        Alone            1          0
## 4388                  With Spouse            1          1
## 4389 With Other Friends/Relatives            1          1
## 4390                        Alone            0          1
## 4391                  With Spouse            1          1
## 4392                  With Spouse            1          1
## 4393                  With Spouse            1          1
## 4394                  With Spouse            1          1
## 4395                        Alone            0          1
## 4396                  With Spouse            1          1
## 4397     With Spouse and Children            3          1
## 4398 With Other Friends/Relatives            1          1
## 4400                        Alone            1          0
## 4401                        Alone            1          0
## 4403                  With Spouse            1          1
## 4404                  With Spouse            1          1
## 4405                  With Spouse            1          1
## 4406                  With Spouse            1          1
## 4407                  With Spouse            1          1
## 4408                  With Spouse            1          1
## 4409                        Alone            0          1
## 4410 With Other Friends/Relatives            1          1
## 4411                        Alone            1          0
## 4412                  With Spouse            1          1
## 4413                        Alone            1          0
## 4414                        Alone            1          0
## 4415                        Alone            1          0
## 4416                  With Spouse            1          1
## 4417                  With Spouse            1          1
## 4418                  With Spouse            1          1
## 4419                        Alone            0          1
## 4420                        Alone            0          1
## 4421 With Other Friends/Relatives            0          2
## 4423                        Alone            0          1
## 4424                        Alone            0          1
## 4425     With Spouse and Children            2          2
## 4426                        Alone            0          1
## 4427                  With Spouse            1          1
## 4428                        Alone            1          0
## 4429                        Alone            0          1
## 4430                        Alone            1          0
## 4431 With Other Friends/Relatives            0          2
## 4432                  With Spouse            1          1
## 4433                  With Spouse            1          1
## 4434                  With Spouse            1          1
## 4435                        Alone            1          0
## 4436                        Alone            1          0
## 4437                        Alone            1          0
## 4438                  With Spouse            1          1
## 4439 With Other Friends/Relatives            5          1
## 4440                  With Spouse            1          1
## 4441     With Spouse and Children            0          2
## 4442                        Alone            0          1
## 4443                  With Spouse            1          0
## 4444                        Alone            1          0
## 4445                        Alone            0          1
## 4447                  With Spouse            1          1
## 4448 With Other Friends/Relatives            2          0
## 4450                        Alone            1          0
## 4451                  With Spouse            1          1
## 4452                  With Spouse            1          1
## 4453 With Other Friends/Relatives            0          2
## 4454                  With Spouse            1          1
## 4455                        Alone            1          0
## 4456                        Alone            0          1
## 4457 With Other Friends/Relatives            3          0
## 4458                  With Spouse            1          1
## 4459     With Spouse and Children            2          2
## 4460 With Other Friends/Relatives            1          1
## 4461                With Children            2          0
## 4463                  With Spouse            1          1
## 4464     With Spouse and Children            2          2
## 4465                        Alone            0          1
## 4466                  With Spouse            1          1
## 4467                        Alone            0          1
## 4468                With Children            3          1
## 4469                        Alone            0          1
## 4470                        Alone            1          0
## 4471 With Other Friends/Relatives            0          3
## 4472                        Alone            1          0
## 4473                        Alone            1          0
## 4474 With Other Friends/Relatives            1          1
## 4475                With Children            0          2
## 4476 With Other Friends/Relatives            2          2
## 4477 With Other Friends/Relatives            1          2
## 4478                        Alone            0          1
## 4479                  With Spouse            1          1
## 4480                With Children            2          0
## 4481                        Alone            0          1
## 4482                  With Spouse            1          1
## 4483                  With Spouse            1          1
## 4484 With Other Friends/Relatives            2          1
## 4485                  With Spouse            1          1
## 4486 With Other Friends/Relatives            1          1
## 4487                        Alone            0          1
## 4488                  With Spouse            1          1
## 4489                  With Spouse            1          1
## 4490                        Alone            1          0
## 4491                        Alone            0          1
## 4492                  With Spouse            1          1
## 4493                        Alone            0          1
## 4494                        Alone            0          1
## 4495                        Alone            0          1
## 4496                  With Spouse            1          1
## 4497 With Other Friends/Relatives            0          1
## 4498 With Other Friends/Relatives            1          1
## 4499                  With Spouse            1          1
## 4500                  With Spouse            1          1
## 4501 With Other Friends/Relatives            1          0
## 4502 With Other Friends/Relatives            1          2
## 4503                  With Spouse            1          1
## 4504                        Alone            0          1
## 4505                        Alone            1          0
## 4506                  With Spouse            1          1
## 4507 With Other Friends/Relatives           13          0
## 4508                        Alone            1          0
## 4509                  With Spouse            1          1
## 4510                        Alone            0          1
## 4511                        Alone            0          1
## 4512                        Alone            0          1
## 4513                        Alone            0          1
## 4514                With Children            1          1
## 4515                  With Spouse            1          1
## 4516 With Other Friends/Relatives            2          0
## 4517                        Alone            1          0
## 4518                        Alone            1          0
## 4519                        Alone            1          0
## 4520                        Alone            1          0
## 4521 With Other Friends/Relatives            1          1
## 4522                        Alone            0          1
## 4523                        Alone            0          1
## 4524 With Other Friends/Relatives            2          2
## 4525 With Other Friends/Relatives            3          2
## 4526                        Alone            1          0
## 4527                        Alone            1          0
## 4528                        Alone            0          1
## 4529                        Alone            1          0
## 4530     With Spouse and Children            2          2
## 4531                        Alone            1          0
## 4532                  With Spouse            1          1
## 4533                  With Spouse            1          0
## 4534                        Alone            1          0
## 4536 With Other Friends/Relatives            1          1
## 4537                        Alone            0          1
## 4538 With Other Friends/Relatives            1          1
## 4539 With Other Friends/Relatives            1          1
## 4540                  With Spouse            1          1
## 4541                  With Spouse            1          1
## 4542                  With Spouse            1          1
## 4543                  With Spouse            1          1
## 4544                        Alone            0          1
## 4545                  With Spouse            1          1
## 4546                        Alone            0          1
## 4547     With Spouse and Children            4          1
## 4548     With Spouse and Children            2          2
## 4549                  With Spouse            1          1
## 4551                        Alone            0          1
## 4552                With Children            0          3
## 4553                  With Spouse            1          1
## 4554                        Alone            1          0
## 4555                  With Spouse            1          1
## 4557     With Spouse and Children            2          2
## 4558                        Alone            0          1
## 4559                        Alone            0          1
## 4560                        Alone            0          1
## 4561                  With Spouse            1          1
## 4562                        Alone            1          0
## 4563                        Alone            0          1
## 4564                        Alone            0          1
## 4565                  With Spouse            1          1
## 4566                        Alone            1          0
## 4567     With Spouse and Children            2          2
## 4568 With Other Friends/Relatives            2          9
## 4569                        Alone            0          1
## 4570                  With Spouse            0          1
## 4572 With Other Friends/Relatives            0          2
## 4573                        Alone            1          0
## 4574 With Other Friends/Relatives            1          1
## 4575                With Children            1          0
## 4576                        Alone            0          1
## 4577                        Alone            0          1
## 4578                        Alone            0          1
## 4579                  With Spouse            1          1
## 4581                        Alone            0          1
## 4582                        Alone            0          1
## 4583                  With Spouse            1          1
## 4584                  With Spouse            1          1
## 4585                With Children            2          2
## 4586                        Alone            1          0
## 4587 With Other Friends/Relatives            0          2
## 4588                        Alone            0          1
## 4589                With Children            1          1
## 4590                        Alone            0          1
## 4591 With Other Friends/Relatives            1          1
## 4592                  With Spouse            1          1
## 4594 With Other Friends/Relatives            8          7
## 4595                  With Spouse            1          1
## 4596 With Other Friends/Relatives            6          1
## 4597                  With Spouse            1          1
## 4598 With Other Friends/Relatives            4          1
## 4599 With Other Friends/Relatives            1          1
## 4600                        Alone            1          0
## 4601                  With Spouse            1          1
## 4602                        Alone            1          0
## 4603                  With Spouse            1          1
## 4604                        Alone            1          0
## 4605                        Alone            0          1
## 4606 With Other Friends/Relatives            1          1
## 4608     With Spouse and Children            1          2
## 4609                        Alone            0          1
## 4610 With Other Friends/Relatives            2          0
## 4611                  With Spouse            1          1
## 4612                        Alone            0          1
## 4613                        Alone            0          1
## 4614     With Spouse and Children            2          2
## 4616                        Alone            1          0
## 4617                  With Spouse            1          1
## 4618                  With Spouse            1          1
## 4619     With Spouse and Children            2          2
## 4620                        Alone            1          0
## 4621                  With Spouse            1          1
## 4622                        Alone            0          1
## 4623                        Alone            0          1
## 4624                  With Spouse            1          1
## 4625                        Alone            1          0
## 4626 With Other Friends/Relatives            4          3
## 4627                        Alone            0          1
## 4628                        Alone            0          1
## 4630                  With Spouse            1          1
## 4631                        Alone            1          0
## 4632                        Alone            0          1
## 4633                        Alone            0          1
## 4634     With Spouse and Children            1          1
## 4635                        Alone            0          1
## 4636 With Other Friends/Relatives            3          0
## 4637 With Other Friends/Relatives            1          0
## 4638                  With Spouse            1          1
## 4639                  With Spouse            1          1
## 4640                        Alone            1          0
## 4641     With Spouse and Children            1          2
## 4642                  With Spouse            1          1
## 4643                        Alone            1          0
## 4645                        Alone            1          0
## 4646                        Alone            0          1
## 4647                        Alone            1          0
## 4648                  With Spouse            1          1
## 4649     With Spouse and Children            1          2
## 4650     With Spouse and Children            2          2
## 4651                        Alone            1          0
## 4652 With Other Friends/Relatives            0          3
## 4654 With Other Friends/Relatives            1          1
## 4655                  With Spouse            1          1
## 4656                  With Spouse            1          1
## 4658                        Alone            0          1
## 4659                        Alone            0          1
## 4660                        Alone            0          1
## 4661                  With Spouse            1          1
## 4662                  With Spouse            1          1
## 4663     With Spouse and Children            1          1
## 4664                        Alone            0          1
## 4665                  With Spouse            1          1
## 4666     With Spouse and Children            1          3
## 4667                  With Spouse            1          1
## 4668                  With Spouse            1          1
## 4669 With Other Friends/Relatives            2          1
## 4670                        Alone            0          1
## 4671                        Alone            0          1
## 4672                With Children            1          1
## 4673 With Other Friends/Relatives            0          2
## 4674                        Alone            0          1
## 4675                        Alone            0          1
## 4676                  With Spouse            1          1
## 4677                        Alone            1          0
## 4678                With Children            0          2
## 4679 With Other Friends/Relatives            1          1
## 4680                  With Spouse            1          1
## 4681     With Spouse and Children            2          2
## 4682                        Alone            0          1
## 4683                        Alone            1          0
## 4684 With Other Friends/Relatives            1          1
## 4685                  With Spouse            1          1
## 4686                        Alone            1          0
## 4687                        Alone            0          1
## 4688                        Alone            1          0
## 4689 With Other Friends/Relatives            2          0
## 4690                        Alone            0          1
## 4691                  With Spouse            1          1
## 4692     With Spouse and Children            3          1
## 4693                        Alone            0          1
## 4694                        Alone            0          1
## 4695                With Children            3          2
## 4696                        Alone            0          1
## 4697                        Alone            1          0
## 4698                  With Spouse            1          1
## 4699                        Alone            1          0
## 4700                        Alone            1          0
## 4701                        Alone            1          0
## 4702                  With Spouse            1          1
## 4703                  With Spouse            1          1
## 4704                        Alone            1          0
## 4705                With Children            2          0
## 4706                        Alone            0          1
## 4707                        Alone            1          0
## 4708                        Alone            0          1
## 4709                        Alone            0          1
## 4711 With Other Friends/Relatives            4          0
## 4712                        Alone            0          1
## 4713                  With Spouse            1          1
## 4714                  With Spouse            1          1
## 4715 With Other Friends/Relatives            2          0
## 4717 With Other Friends/Relatives            4          1
## 4718 With Other Friends/Relatives            3          3
## 4719                  With Spouse            1          1
## 4720                        Alone            0          1
## 4721 With Other Friends/Relatives            1          1
## 4722                        Alone            1          0
## 4723                  With Spouse            1          1
## 4724 With Other Friends/Relatives            1          1
## 4725                        Alone            0          1
## 4726 With Other Friends/Relatives            3          2
## 4727                        Alone            0          1
## 4728                        Alone            1          0
## 4729                With Children            1          1
## 4730                  With Spouse            1          1
## 4731                  With Spouse            1          1
## 4732 With Other Friends/Relatives            0          4
## 4733                        Alone            0          1
## 4734                With Children            1          1
## 4735                        Alone            0          1
## 4736                  With Spouse            1          1
## 4737     With Spouse and Children            1          2
## 4738 With Other Friends/Relatives            0          4
## 4739                        Alone            1          0
## 4740                        Alone            0          1
## 4741                  With Spouse            1          1
## 4742                  With Spouse            1          1
## 4743                        Alone            0          1
## 4744                  With Spouse            1          1
## 4745                        Alone            0          1
## 4746 With Other Friends/Relatives            1          1
## 4747                        Alone            0          1
## 4748                  With Spouse            1          1
## 4749                        Alone            0          1
## 4750                        Alone            1          0
## 4751                  With Spouse            1          1
## 4752                  With Spouse            1          1
## 4753 With Other Friends/Relatives            1          2
## 4754 With Other Friends/Relatives            0          2
## 4755                        Alone            1          0
## 4756     With Spouse and Children            1          3
## 4757                        Alone            0          1
## 4758                        Alone            0          1
## 4759                  With Spouse            1          1
## 4760                        Alone            0          1
## 4761 With Other Friends/Relatives            2          2
## 4762                        Alone            0          1
## 4763                  With Spouse            1          1
## 4764 With Other Friends/Relatives            2          3
## 4765     With Spouse and Children            3          1
## 4766                  With Spouse            1          1
## 4767 With Other Friends/Relatives            0          1
## 4768                  With Spouse            1          1
## 4769                        Alone            0          1
## 4770                  With Spouse            1          1
## 4771                  With Spouse            1          1
## 4772 With Other Friends/Relatives            2          0
## 4773                  With Spouse            1          1
## 4774                        Alone            1          0
## 4775 With Other Friends/Relatives            1          1
## 4776                        Alone            1          0
## 4777                  With Spouse            1          1
## 4778                        Alone            1          0
## 4780     With Spouse and Children            2          3
## 4781                  With Spouse            1          1
## 4782                        Alone            1          0
## 4783                        Alone            1          0
## 4784                        Alone            1          0
## 4785                        Alone            0          1
## 4786                        Alone            1          0
## 4788 With Other Friends/Relatives            2          1
## 4789                        Alone            0          1
## 4790                        Alone            0          1
## 4791                  With Spouse            1          1
## 4792                        Alone            0          1
## 4793                        Alone            0          1
## 4794     With Spouse and Children            1          2
## 4795                  With Spouse            1          1
## 4796 With Other Friends/Relatives            3          1
## 4797                  With Spouse            1          1
## 4798     With Spouse and Children            2          1
## 4799     With Spouse and Children            2          0
## 4800                  With Spouse            1          1
## 4801                  With Spouse            1          1
## 4802                        Alone            0          1
## 4803                        Alone            0          1
## 4804     With Spouse and Children            2          1
## 4806                With Children            2          0
## 4808                  With Spouse            1          1
## 4810                  With Spouse            1          1
## 4811                        Alone            0          1
## 4812                  With Spouse            1          1
## 4813 With Other Friends/Relatives            1          1
## 4815 With Other Friends/Relatives            3          0
## 4816     With Spouse and Children            3          1
## 4817                        Alone            0          1
## 4818                  With Spouse            1          1
## 4819                        Alone            1          0
## 4822                        Alone            0          1
## 4823                        Alone            0          1
## 4824                        Alone            0          1
## 4825                  With Spouse            1          1
## 4826                  With Spouse            1          1
## 4827 With Other Friends/Relatives            3          1
## 4828 With Other Friends/Relatives            0          4
## 4829                  With Spouse            1          1
## 4830                        Alone            1          0
## 4831                  With Spouse            1          1
## 4832 With Other Friends/Relatives            0          2
## 4833                        Alone            1          0
## 4834                        Alone            0          1
## 4835                  With Spouse            1          1
## 4836                        Alone            0          1
## 4837 With Other Friends/Relatives           14         13
## 4838                        Alone            1          0
## 4839                        Alone            1          0
## 4840     With Spouse and Children            3          1
## 4842                  With Spouse            1          1
## 4843                  With Spouse            1          1
## 4844                  With Spouse            1          1
## 4845                  With Spouse            1          1
## 4846                  With Spouse            1          1
## 4847                        Alone            1          0
## 4848 With Other Friends/Relatives            1          1
## 4849                        Alone            1          0
## 4850                  With Spouse            1          1
## 4851                        Alone            1          0
## 4852                        Alone            0          1
## 4853                        Alone            0          1
## 4854 With Other Friends/Relatives            2          0
## 4855                  With Spouse            1          1
## 4856                        Alone            1          0
## 4857                        Alone            0          1
## 4858     With Spouse and Children            1          2
## 4859                  With Spouse            1          1
## 4860                        Alone            0          1
## 4861                  With Spouse            1          1
## 4862                        Alone            0          1
## 4863                  With Spouse            1          1
## 4865                        Alone            0          1
## 4866                        Alone            1          0
## 4867                        Alone            0          1
## 4868 With Other Friends/Relatives            2          0
## 4869                        Alone            1          0
## 4870 With Other Friends/Relatives            2          1
## 4871     With Spouse and Children            1          2
## 4872                  With Spouse            1          1
## 4874 With Other Friends/Relatives            1          1
## 4875                        Alone            0          1
## 4876                  With Spouse            1          1
## 4877                        Alone            0          1
## 4878 With Other Friends/Relatives            0          2
## 4879                        Alone            0          1
## 4880                        Alone            0          1
## 4881                  With Spouse            1          1
## 4882                  With Spouse            1          1
## 4883                  With Spouse            1          1
## 4884                  With Spouse            1          1
## 4885                  With Spouse            1          1
## 4886                        Alone            0          1
## 4887                        Alone            1          0
## 4888                  With Spouse            1          1
## 4889                  With Spouse            1          1
## 4890 With Other Friends/Relatives            2          0
## 4891                        Alone            1          0
## 4892                        Alone            0          1
## 4893     With Spouse and Children            1          1
## 4894                  With Spouse            1          1
## 4896                  With Spouse            1          1
## 4897                  With Spouse            1          1
## 4898                        Alone            1          0
## 4899                        Alone            0          1
## 4900 With Other Friends/Relatives            1          6
## 4901                  With Spouse            1          1
## 4902                  With Spouse            1          1
## 4903                With Children            1          2
## 4904 With Other Friends/Relatives            5          1
## 4905                        Alone            0          1
## 4906 With Other Friends/Relatives            0          3
## 4907                        Alone            1          0
## 4908                        Alone            0          1
## 4909                        Alone            1          0
## 4910 With Other Friends/Relatives            3          3
## 4911 With Other Friends/Relatives            2          0
## 4912                  With Spouse            1          1
## 4913                        Alone            1          0
## 4914                  With Spouse            0          1
## 4916                  With Spouse            1          1
## 4917                        Alone            0          1
## 4918 With Other Friends/Relatives            1          1
## 4919                        Alone            0          1
## 4920                        Alone            0          1
## 4921                        Alone            1          0
## 4922                  With Spouse            1          1
## 4923     With Spouse and Children            2          2
## 4924                  With Spouse            1          1
## 4925                        Alone            0          1
## 4926                        Alone            0          1
## 4927                        Alone            1          0
## 4928                        Alone            1          0
## 4929                        Alone            0          1
## 4930 With Other Friends/Relatives            1          1
## 4931                  With Spouse            1          1
## 4932 With Other Friends/Relatives            3          3
## 4933 With Other Friends/Relatives            1          1
## 4934 With Other Friends/Relatives            0          2
## 4936                  With Spouse            1          1
## 4937 With Other Friends/Relatives            0          5
## 4938                  With Spouse            1          1
## 4939                        Alone            0          1
## 4940                        Alone            1          0
## 4941                        Alone            1          1
## 4942                        Alone            1          0
## 4944                  With Spouse            1          1
## 4945                        Alone            0          1
## 4946                  With Spouse            1          1
## 4947                  With Spouse            1          1
## 4948 With Other Friends/Relatives            1          2
## 4949                        Alone            0          1
## 4950 With Other Friends/Relatives            1          1
## 4951 With Other Friends/Relatives           15          8
## 4952                  With Spouse            1          1
## 4953                  With Spouse            1          1
## 4954                        Alone            1          0
## 4956                        Alone            1          0
## 4957                  With Spouse            1          1
## 4959                        Alone            0          1
## 4960                        Alone            1          0
## 4961                        Alone            1          0
## 4962                  With Spouse            1          1
## 4963                        Alone            1          0
## 4964                        Alone            0          1
## 4965                        Alone            0          1
## 4966                  With Spouse            0          1
## 4967                        Alone            0          1
## 4968     With Spouse and Children            2          2
## 4969                  With Spouse            1          1
## 4970                  With Spouse            1          1
## 4972                        Alone            1          0
## 4973 With Other Friends/Relatives            2          2
## 4974                        Alone            0          1
## 4975                        Alone            0          1
## 4976                        Alone            0          1
## 4977 With Other Friends/Relatives            6          2
## 4978                        Alone            0          1
## 4979                        Alone            1          0
## 4980                  With Spouse            1          1
## 4981                  With Spouse            1          1
## 4982                        Alone            1          0
## 4983                        Alone            1          0
## 4984                  With Spouse            1          1
## 4985     With Spouse and Children            2          3
## 4986 With Other Friends/Relatives            1          1
## 4987                        Alone            0          1
## 4988 With Other Friends/Relatives            1          2
## 4989                  With Spouse            1          1
## 4990                  With Spouse            1          1
## 4991                  With Spouse            1          1
## 4993                        Alone            0          1
## 4994 With Other Friends/Relatives            0          3
## 4995                        Alone            1          0
## 4996     With Spouse and Children            4          1
## 4997                        Alone            1          0
## 4998 With Other Friends/Relatives            2          0
## 4999                        Alone            1          0
## 5000                  With Spouse            1          1
## 5001                        Alone            0          1
## 5002                        Alone            0          1
## 5003 With Other Friends/Relatives            1          1
## 5004                        Alone            0          1
## 5005 With Other Friends/Relatives            3          1
## 5006                        Alone            0          1
## 5007                        Alone            0          1
## 5008 With Other Friends/Relatives            2          2
## 5009     With Spouse and Children            2          1
## 5010                  With Spouse            1          1
## 5011 With Other Friends/Relatives            0          2
## 5012                  With Spouse            1          1
## 5013                  With Spouse            1          1
## 5014     With Spouse and Children            2          1
## 5017 With Other Friends/Relatives            2          2
## 5018                        Alone            0          1
## 5019 With Other Friends/Relatives            5          5
## 5021     With Spouse and Children            2          1
## 5022                        Alone            0          1
## 5023                        Alone            1          0
## 5024                  With Spouse            1          1
## 5025 With Other Friends/Relatives            1          1
## 5026                        Alone            0          1
## 5027                  With Spouse            1          1
## 5028                        Alone            0          1
## 5029                  With Spouse            1          1
## 5030                        Alone            0          1
## 5031                  With Spouse            1          1
## 5032                        Alone            0          1
## 5033                        Alone            0          1
## 5034                        Alone            0          1
## 5035                        Alone            0          1
## 5036                  With Spouse            1          1
## 5037                        Alone            1          0
## 5038                        Alone            0          1
## 5039                        Alone            1          0
## 5040 With Other Friends/Relatives            1          1
## 5041     With Spouse and Children            2          2
## 5042                  With Spouse            1          1
## 5043                  With Spouse            1          1
## 5044                  With Spouse            1          1
## 5045 With Other Friends/Relatives            4          0
## 5046 With Other Friends/Relatives            1          1
## 5047     With Spouse and Children            2          2
## 5048                        Alone            1          0
## 5049                        Alone            0          1
## 5050                  With Spouse            1          1
## 5051 With Other Friends/Relatives            1          3
## 5052                        Alone            0          1
## 5053                        Alone            1          0
## 5054 With Other Friends/Relatives            2          0
## 5055                        Alone            0          1
## 5056     With Spouse and Children            1          3
## 5057                  With Spouse            1          1
## 5058 With Other Friends/Relatives            7          2
## 5059                  With Spouse            1          1
## 5060                        Alone            0          1
## 5061                  With Spouse            1          1
## 5062                  With Spouse            1          1
## 5063                  With Spouse            1          1
## 5064                        Alone            0          1
## 5065     With Spouse and Children            2          2
## 5066                        Alone            0          1
## 5067                        Alone            0          1
## 5068                        Alone            1          0
## 5070                  With Spouse            1          1
## 5071 With Other Friends/Relatives            1          1
## 5072                        Alone            0          1
## 5073                        Alone            0          1
## 5074                        Alone            0          1
## 5075 With Other Friends/Relatives            2          0
## 5076                        Alone            0          1
## 5077 With Other Friends/Relatives            1          0
## 5078     With Spouse and Children            2          1
## 5079                        Alone            0          1
## 5080 With Other Friends/Relatives            1          2
## 5081     With Spouse and Children            3          1
## 5082 With Other Friends/Relatives            4          3
## 5083                        Alone            0          1
## 5085     With Spouse and Children            1          1
## 5086                        Alone            0          1
## 5087                        Alone            1          0
## 5088                  With Spouse            1          1
## 5089                        Alone            1          0
## 5090                        Alone            0          1
## 5091                        Alone            0          1
## 5092                  With Spouse            1          1
## 5093 With Other Friends/Relatives            1          1
## 5094                        Alone            1          0
## 5095                  With Spouse            1          1
## 5096                  With Spouse            1          1
## 5097                        Alone            1          0
## 5098                        Alone            1          0
## 5099                        Alone            1          0
## 5100                        Alone            1          0
## 5101     With Spouse and Children            4          2
##                             purpose            main_activity
## 1              Leisure and Holidays          Widlife Tourism
## 2              Leisure and Holidays       Conference Tourism
## 3              Leisure and Holidays            Beach Tourism
## 4                             Other            Beach Tourism
## 5                          Business          Widlife Tourism
## 6    Visiting Friends and Relatives            Beach Tourism
## 7              Leisure and Holidays            Beach Tourism
## 8                          Business            Beach Tourism
## 9              Leisure and Holidays          Widlife Tourism
## 10                         Business          Widlife Tourism
## 11   Visiting Friends and Relatives            Beach Tourism
## 12                         Business       Conference Tourism
## 13             Leisure and Holidays          Widlife Tourism
## 14   Visiting Friends and Relatives         Cultural Tourism
## 16             Leisure and Holidays       Conference Tourism
## 17             Leisure and Holidays            Beach Tourism
## 18          Meetings and Conference       Conference Tourism
## 19             Leisure and Holidays          Widlife Tourism
## 20   Visiting Friends and Relatives          Widlife Tourism
## 21   Visiting Friends and Relatives            Beach Tourism
## 22          Meetings and Conference       Conference Tourism
## 23             Leisure and Holidays         Cultural Tourism
## 24             Leisure and Holidays         Cultural Tourism
## 25             Leisure and Holidays            Beach Tourism
## 26             Leisure and Holidays         Cultural Tourism
## 27             Leisure and Holidays            Beach Tourism
## 28             Leisure and Holidays            Beach Tourism
## 29             Leisure and Holidays         Wildlife Tourism
## 30          Meetings and Conference            Beach Tourism
## 31   Visiting Friends and Relatives            Beach Tourism
## 32             Leisure and Holidays          Widlife Tourism
## 33             Leisure and Holidays            Beach Tourism
## 34                         Business            Beach Tourism
## 35             Leisure and Holidays          Widlife Tourism
## 36             Leisure and Holidays       Conference Tourism
## 37             Leisure and Holidays          Widlife Tourism
## 38             Leisure and Holidays       Conference Tourism
## 39   Visiting Friends and Relatives         Cultural Tourism
## 40             Leisure and Holidays          Widlife Tourism
## 41          Scientific and Academic          Widlife Tourism
## 43             Leisure and Holidays            Beach Tourism
## 44             Leisure and Holidays       Conference Tourism
## 45             Leisure and Holidays          Widlife Tourism
## 46             Leisure and Holidays       Conference Tourism
## 47             Leisure and Holidays       Conference Tourism
## 48                         Business         Wildlife Tourism
## 49                         Business          Hunting Tourism
## 50          Meetings and Conference       Conference Tourism
## 51             Leisure and Holidays         Wildlife Tourism
## 52             Leisure and Holidays            Beach Tourism
## 53             Leisure and Holidays            Beach Tourism
## 54             Leisure and Holidays            Beach Tourism
## 55             Leisure and Holidays       Conference Tourism
## 56             Leisure and Holidays          Widlife Tourism
## 57             Leisure and Holidays          Widlife Tourism
## 58                         Business          Hunting Tourism
## 59             Leisure and Holidays          Widlife Tourism
## 60             Leisure and Holidays          Widlife Tourism
## 61             Leisure and Holidays            Beach Tourism
## 62                         Business         Wildlife Tourism
## 63             Leisure and Holidays            Beach Tourism
## 64             Leisure and Holidays         Wildlife Tourism
## 65             Leisure and Holidays            Beach Tourism
## 66             Leisure and Holidays          Widlife Tourism
## 67   Visiting Friends and Relatives            Beach Tourism
## 68             Leisure and Holidays          Widlife Tourism
## 69             Leisure and Holidays            Beach Tourism
## 70             Leisure and Holidays       Conference Tourism
## 71   Visiting Friends and Relatives            Beach Tourism
## 72             Leisure and Holidays            Beach Tourism
## 74                         Business          Hunting Tourism
## 75             Leisure and Holidays            Beach Tourism
## 76                         Business          Widlife Tourism
## 77             Leisure and Holidays          Widlife Tourism
## 78             Leisure and Holidays          Widlife Tourism
## 79                         Business          Widlife Tourism
## 80                         Business            Beach Tourism
## 81          Meetings and Conference       Conference Tourism
## 82             Leisure and Holidays          Widlife Tourism
## 83                         Business          Widlife Tourism
## 84                         Business                 Business
## 85             Leisure and Holidays          Widlife Tourism
## 86             Leisure and Holidays            Beach Tourism
## 87             Leisure and Holidays            Beach Tourism
## 88             Leisure and Holidays            Beach Tourism
## 89          Meetings and Conference          Widlife Tourism
## 90             Leisure and Holidays         Wildlife Tourism
## 92                            Other            Beach Tourism
## 93          Meetings and Conference            Beach Tourism
## 94             Leisure and Holidays          Widlife Tourism
## 96             Leisure and Holidays            Beach Tourism
## 97             Leisure and Holidays       Conference Tourism
## 98             Leisure and Holidays          Widlife Tourism
## 99             Leisure and Holidays       Conference Tourism
## 100            Leisure and Holidays         Cultural Tourism
## 101            Leisure and Holidays          Widlife Tourism
## 102            Leisure and Holidays            Beach Tourism
## 103  Visiting Friends and Relatives       Conference Tourism
## 104  Visiting Friends and Relatives         Wildlife Tourism
## 105            Leisure and Holidays          Widlife Tourism
## 106            Leisure and Holidays          Widlife Tourism
## 107         Meetings and Conference       Conference Tourism
## 109            Leisure and Holidays            Beach Tourism
## 110            Leisure and Holidays         Wildlife Tourism
## 112         Scientific and Academic          Hunting Tourism
## 113         Meetings and Conference       Conference Tourism
## 114            Leisure and Holidays          Widlife Tourism
## 115            Leisure and Holidays          Widlife Tourism
## 116            Leisure and Holidays          Widlife Tourism
## 117            Leisure and Holidays          Widlife Tourism
## 118            Leisure and Holidays            Beach Tourism
## 119                    Volunteering       Conference Tourism
## 120            Leisure and Holidays         Cultural Tourism
## 121            Leisure and Holidays       Conference Tourism
## 122            Leisure and Holidays            Beach Tourism
## 123            Leisure and Holidays            Beach Tourism
## 124  Visiting Friends and Relatives          Hunting Tourism
## 125            Leisure and Holidays       Conference Tourism
## 126            Leisure and Holidays            Beach Tourism
## 127                    Volunteering          Widlife Tourism
## 128            Leisure and Holidays          Widlife Tourism
## 129            Leisure and Holidays            Beach Tourism
## 130            Leisure and Holidays         Wildlife Tourism
## 131            Leisure and Holidays          Widlife Tourism
## 132            Leisure and Holidays            Beach Tourism
## 133            Leisure and Holidays         Wildlife Tourism
## 134            Leisure and Holidays          Hunting Tourism
## 135            Leisure and Holidays          Widlife Tourism
## 136            Leisure and Holidays                 Business
## 137            Leisure and Holidays       Conference Tourism
## 138            Leisure and Holidays Diving and Sport Fishing
## 139            Leisure and Holidays          Widlife Tourism
## 140            Leisure and Holidays                 Business
## 141                        Business            Beach Tourism
## 142            Leisure and Holidays       Conference Tourism
## 143            Leisure and Holidays          Widlife Tourism
## 144            Leisure and Holidays         Cultural Tourism
## 145  Visiting Friends and Relatives       Conference Tourism
## 146            Leisure and Holidays       Conference Tourism
## 147            Leisure and Holidays            Beach Tourism
## 148            Leisure and Holidays          Widlife Tourism
## 149  Visiting Friends and Relatives         Cultural Tourism
## 150                        Business          Hunting Tourism
## 151            Leisure and Holidays          Widlife Tourism
## 152            Leisure and Holidays          Widlife Tourism
## 153            Leisure and Holidays         Wildlife Tourism
## 155            Leisure and Holidays            Beach Tourism
## 156            Leisure and Holidays          Widlife Tourism
## 157            Leisure and Holidays            Beach Tourism
## 159            Leisure and Holidays                 Business
## 160            Leisure and Holidays          Widlife Tourism
## 161         Meetings and Conference       Conference Tourism
## 162            Leisure and Holidays          Widlife Tourism
## 163  Visiting Friends and Relatives            Beach Tourism
## 164            Leisure and Holidays       Conference Tourism
## 165            Leisure and Holidays          Widlife Tourism
## 166            Leisure and Holidays          Widlife Tourism
## 167            Leisure and Holidays            Beach Tourism
## 168            Leisure and Holidays             Bird Tourism
## 169  Visiting Friends and Relatives         Wildlife Tourism
## 170            Leisure and Holidays          Widlife Tourism
## 171            Leisure and Holidays         Wildlife Tourism
## 172  Visiting Friends and Relatives            Beach Tourism
## 173            Leisure and Holidays         Cultural Tourism
## 174         Scientific and Academic         Cultural Tourism
## 175         Meetings and Conference            Beach Tourism
## 176            Leisure and Holidays          Widlife Tourism
## 177                           Other          Hunting Tourism
## 178            Leisure and Holidays       Conference Tourism
## 179            Leisure and Holidays          Widlife Tourism
## 180            Leisure and Holidays          Widlife Tourism
## 181            Leisure and Holidays          Widlife Tourism
## 182            Leisure and Holidays          Widlife Tourism
## 183            Leisure and Holidays          Widlife Tourism
## 185            Leisure and Holidays          Widlife Tourism
## 186            Leisure and Holidays       Conference Tourism
## 187            Leisure and Holidays         Wildlife Tourism
## 188            Leisure and Holidays          Widlife Tourism
## 189  Visiting Friends and Relatives            Beach Tourism
## 190            Leisure and Holidays            Beach Tourism
## 191            Leisure and Holidays          Widlife Tourism
## 192                        Business          Widlife Tourism
## 193            Leisure and Holidays          Widlife Tourism
## 194  Visiting Friends and Relatives          Widlife Tourism
## 195            Leisure and Holidays            Beach Tourism
## 196  Visiting Friends and Relatives          Hunting Tourism
## 197            Leisure and Holidays            Beach Tourism
## 198            Leisure and Holidays          Widlife Tourism
## 199  Visiting Friends and Relatives         Cultural Tourism
## 201            Leisure and Holidays            Beach Tourism
## 202                        Business         Wildlife Tourism
## 203                           Other          Widlife Tourism
## 204            Leisure and Holidays         Cultural Tourism
## 205            Leisure and Holidays            Beach Tourism
## 206            Leisure and Holidays          Widlife Tourism
## 207            Leisure and Holidays       Conference Tourism
## 208                        Business          Widlife Tourism
## 209            Leisure and Holidays          Widlife Tourism
## 210            Leisure and Holidays          Widlife Tourism
## 211                        Business          Widlife Tourism
## 212         Scientific and Academic          Hunting Tourism
## 215            Leisure and Holidays            Beach Tourism
## 216         Meetings and Conference       Conference Tourism
## 217            Leisure and Holidays          Widlife Tourism
## 218  Visiting Friends and Relatives            Beach Tourism
## 219            Leisure and Holidays         Wildlife Tourism
## 220            Leisure and Holidays         Wildlife Tourism
## 221            Leisure and Holidays          Widlife Tourism
## 222            Leisure and Holidays          Widlife Tourism
## 223            Leisure and Holidays            Beach Tourism
## 224            Leisure and Holidays       Conference Tourism
## 225                    Volunteering          Widlife Tourism
## 226  Visiting Friends and Relatives         Cultural Tourism
## 227            Leisure and Holidays          Widlife Tourism
## 228            Leisure and Holidays          Widlife Tourism
## 229                           Other       Conference Tourism
## 231            Leisure and Holidays            Beach Tourism
## 232            Leisure and Holidays            Beach Tourism
## 233  Visiting Friends and Relatives          Widlife Tourism
## 234                    Volunteering          Hunting Tourism
## 235            Leisure and Holidays       Conference Tourism
## 236            Leisure and Holidays         Wildlife Tourism
## 238            Leisure and Holidays            Beach Tourism
## 239            Leisure and Holidays          Widlife Tourism
## 240            Leisure and Holidays          Widlife Tourism
## 242            Leisure and Holidays          Widlife Tourism
## 244                    Volunteering            Beach Tourism
## 245            Leisure and Holidays         Cultural Tourism
## 246            Leisure and Holidays            Beach Tourism
## 247  Visiting Friends and Relatives          Hunting Tourism
## 248            Leisure and Holidays       Conference Tourism
## 249            Leisure and Holidays          Widlife Tourism
## 250            Leisure and Holidays            Beach Tourism
## 251            Leisure and Holidays          Widlife Tourism
## 252            Leisure and Holidays       Conference Tourism
## 253         Meetings and Conference            Beach Tourism
## 254            Leisure and Holidays       Conference Tourism
## 255                    Volunteering         Cultural Tourism
## 256            Leisure and Holidays          Widlife Tourism
## 257            Leisure and Holidays          Widlife Tourism
## 258            Leisure and Holidays          Widlife Tourism
## 259            Leisure and Holidays            Beach Tourism
## 260            Leisure and Holidays       Conference Tourism
## 262            Leisure and Holidays            Beach Tourism
## 263  Visiting Friends and Relatives          Hunting Tourism
## 264            Leisure and Holidays            Beach Tourism
## 265            Leisure and Holidays          Widlife Tourism
## 266  Visiting Friends and Relatives          Hunting Tourism
## 267                        Business          Widlife Tourism
## 269            Leisure and Holidays       Conference Tourism
## 270         Meetings and Conference       Conference Tourism
## 271  Visiting Friends and Relatives          Hunting Tourism
## 272            Leisure and Holidays          Widlife Tourism
## 273  Visiting Friends and Relatives          Hunting Tourism
## 274                        Business            Beach Tourism
## 275  Visiting Friends and Relatives            Beach Tourism
## 277            Leisure and Holidays          Widlife Tourism
## 278                    Volunteering         Cultural Tourism
## 279            Leisure and Holidays            Beach Tourism
## 280            Leisure and Holidays          Widlife Tourism
## 282  Visiting Friends and Relatives         Cultural Tourism
## 283            Leisure and Holidays            Beach Tourism
## 284                        Business        Mountain Climbing
## 286            Leisure and Holidays            Beach Tourism
## 287            Leisure and Holidays          Widlife Tourism
## 288            Leisure and Holidays         Cultural Tourism
## 289            Leisure and Holidays            Beach Tourism
## 290            Leisure and Holidays          Widlife Tourism
## 291            Leisure and Holidays       Conference Tourism
## 292                        Business         Wildlife Tourism
## 293            Leisure and Holidays                 Business
## 294            Leisure and Holidays          Widlife Tourism
## 295         Scientific and Academic            Beach Tourism
## 296            Leisure and Holidays          Widlife Tourism
## 297  Visiting Friends and Relatives            Beach Tourism
## 298            Leisure and Holidays         Wildlife Tourism
## 299  Visiting Friends and Relatives            Beach Tourism
## 300            Leisure and Holidays            Beach Tourism
## 301            Leisure and Holidays            Beach Tourism
## 302            Leisure and Holidays                 Business
## 303            Leisure and Holidays             Bird Tourism
## 304            Leisure and Holidays            Beach Tourism
## 305  Visiting Friends and Relatives         Cultural Tourism
## 306                        Business          Hunting Tourism
## 307            Leisure and Holidays            Beach Tourism
## 309         Meetings and Conference        Mountain Climbing
## 310            Leisure and Holidays          Widlife Tourism
## 311  Visiting Friends and Relatives          Hunting Tourism
## 312                        Business          Hunting Tourism
## 313            Leisure and Holidays         Wildlife Tourism
## 314            Leisure and Holidays         Cultural Tourism
## 315            Leisure and Holidays            Beach Tourism
## 316  Visiting Friends and Relatives         Wildlife Tourism
## 317            Leisure and Holidays         Wildlife Tourism
## 318            Leisure and Holidays          Widlife Tourism
## 319            Leisure and Holidays          Widlife Tourism
## 321            Leisure and Holidays          Widlife Tourism
## 322                        Business          Hunting Tourism
## 323            Leisure and Holidays          Widlife Tourism
## 324  Visiting Friends and Relatives         Cultural Tourism
## 325  Visiting Friends and Relatives       Conference Tourism
## 326         Meetings and Conference          Widlife Tourism
## 327            Leisure and Holidays       Conference Tourism
## 328  Visiting Friends and Relatives            Beach Tourism
## 330            Leisure and Holidays          Widlife Tourism
## 332                        Business          Widlife Tourism
## 333            Leisure and Holidays            Beach Tourism
## 334            Leisure and Holidays            Beach Tourism
## 335            Leisure and Holidays          Widlife Tourism
## 336                        Business         Wildlife Tourism
## 337            Leisure and Holidays          Widlife Tourism
## 338            Leisure and Holidays          Widlife Tourism
## 339            Leisure and Holidays            Beach Tourism
## 340                        Business          Hunting Tourism
## 341            Leisure and Holidays         Cultural Tourism
## 342            Leisure and Holidays            Beach Tourism
## 343            Leisure and Holidays          Widlife Tourism
## 344  Visiting Friends and Relatives         Wildlife Tourism
## 345            Leisure and Holidays          Widlife Tourism
## 346            Leisure and Holidays          Widlife Tourism
## 347            Leisure and Holidays          Widlife Tourism
## 348  Visiting Friends and Relatives          Widlife Tourism
## 349                           Other          Hunting Tourism
## 350            Leisure and Holidays            Beach Tourism
## 351  Visiting Friends and Relatives          Widlife Tourism
## 352            Leisure and Holidays            Beach Tourism
## 353                        Business        Mountain Climbing
## 354            Leisure and Holidays                 Business
## 355                        Business            Beach Tourism
## 356            Leisure and Holidays            Beach Tourism
## 357            Leisure and Holidays          Widlife Tourism
## 358  Visiting Friends and Relatives          Hunting Tourism
## 359         Meetings and Conference          Widlife Tourism
## 360            Leisure and Holidays       Conference Tourism
## 361            Leisure and Holidays            Beach Tourism
## 362                        Business          Widlife Tourism
## 363            Leisure and Holidays          Widlife Tourism
## 364         Meetings and Conference            Beach Tourism
## 365            Leisure and Holidays                 Business
## 366  Visiting Friends and Relatives          Widlife Tourism
## 367            Leisure and Holidays          Widlife Tourism
## 368            Leisure and Holidays          Widlife Tourism
## 369            Leisure and Holidays          Widlife Tourism
## 370            Leisure and Holidays         Wildlife Tourism
## 371            Leisure and Holidays         Cultural Tourism
## 372            Leisure and Holidays       Conference Tourism
## 373                    Volunteering          Widlife Tourism
## 374  Visiting Friends and Relatives          Widlife Tourism
## 375            Leisure and Holidays          Widlife Tourism
## 376            Leisure and Holidays          Widlife Tourism
## 377            Leisure and Holidays          Widlife Tourism
## 378  Visiting Friends and Relatives         Wildlife Tourism
## 379  Visiting Friends and Relatives         Cultural Tourism
## 380                        Business          Widlife Tourism
## 381            Leisure and Holidays            Beach Tourism
## 382  Visiting Friends and Relatives         Cultural Tourism
## 383            Leisure and Holidays          Widlife Tourism
## 384            Leisure and Holidays          Widlife Tourism
## 385                        Business         Wildlife Tourism
## 386            Leisure and Holidays       Conference Tourism
## 388                        Business          Hunting Tourism
## 390            Leisure and Holidays         Wildlife Tourism
## 391            Leisure and Holidays          Widlife Tourism
## 392            Leisure and Holidays          Widlife Tourism
## 393            Leisure and Holidays          Widlife Tourism
## 394            Leisure and Holidays          Widlife Tourism
## 395                        Business          Widlife Tourism
## 396            Leisure and Holidays         Wildlife Tourism
## 397            Leisure and Holidays            Beach Tourism
## 398            Leisure and Holidays       Conference Tourism
## 399                    Volunteering          Widlife Tourism
## 400                        Business          Hunting Tourism
## 401            Leisure and Holidays         Wildlife Tourism
## 402            Leisure and Holidays          Widlife Tourism
## 403            Leisure and Holidays          Widlife Tourism
## 404            Leisure and Holidays       Conference Tourism
## 405  Visiting Friends and Relatives         Cultural Tourism
## 406            Leisure and Holidays          Widlife Tourism
## 407            Leisure and Holidays          Widlife Tourism
## 408            Leisure and Holidays            Beach Tourism
## 409            Leisure and Holidays            Beach Tourism
## 410            Leisure and Holidays          Widlife Tourism
## 412            Leisure and Holidays            Beach Tourism
## 413                        Business       Conference Tourism
## 414            Leisure and Holidays       Conference Tourism
## 415            Leisure and Holidays            Beach Tourism
## 417            Leisure and Holidays            Beach Tourism
## 419            Leisure and Holidays             Bird Tourism
## 420            Leisure and Holidays          Widlife Tourism
## 421                        Business          Hunting Tourism
## 422            Leisure and Holidays            Beach Tourism
## 423                           Other          Hunting Tourism
## 424            Leisure and Holidays          Widlife Tourism
## 425            Leisure and Holidays         Cultural Tourism
## 426            Leisure and Holidays          Widlife Tourism
## 427            Leisure and Holidays          Widlife Tourism
## 428            Leisure and Holidays          Widlife Tourism
## 429  Visiting Friends and Relatives          Widlife Tourism
## 430            Leisure and Holidays          Widlife Tourism
## 431  Visiting Friends and Relatives         Cultural Tourism
## 432                           Other            Beach Tourism
## 433            Leisure and Holidays          Widlife Tourism
## 434            Leisure and Holidays          Widlife Tourism
## 435                        Business         Wildlife Tourism
## 436  Visiting Friends and Relatives            Beach Tourism
## 437                        Business          Widlife Tourism
## 438            Leisure and Holidays          Widlife Tourism
## 439  Visiting Friends and Relatives            Beach Tourism
## 440         Meetings and Conference          Widlife Tourism
## 441            Leisure and Holidays          Widlife Tourism
## 442  Visiting Friends and Relatives          Hunting Tourism
## 443            Leisure and Holidays          Widlife Tourism
## 444            Leisure and Holidays         Wildlife Tourism
## 446                        Business            Beach Tourism
## 448            Leisure and Holidays          Widlife Tourism
## 449            Leisure and Holidays            Beach Tourism
## 450  Visiting Friends and Relatives         Cultural Tourism
## 451  Visiting Friends and Relatives          Widlife Tourism
## 452            Leisure and Holidays          Widlife Tourism
## 453            Leisure and Holidays          Widlife Tourism
## 454            Leisure and Holidays          Widlife Tourism
## 456                        Business         Wildlife Tourism
## 457                        Business          Widlife Tourism
## 458            Leisure and Holidays       Conference Tourism
## 459                        Business            Beach Tourism
## 460  Visiting Friends and Relatives          Widlife Tourism
## 461            Leisure and Holidays            Beach Tourism
## 462            Leisure and Holidays       Conference Tourism
## 463            Leisure and Holidays         Cultural Tourism
## 464         Meetings and Conference        Mountain Climbing
## 465            Leisure and Holidays         Cultural Tourism
## 466            Leisure and Holidays          Hunting Tourism
## 467            Leisure and Holidays          Hunting Tourism
## 468            Leisure and Holidays       Conference Tourism
## 469            Leisure and Holidays          Widlife Tourism
## 470            Leisure and Holidays          Widlife Tourism
## 471            Leisure and Holidays          Widlife Tourism
## 472            Leisure and Holidays          Widlife Tourism
## 473            Leisure and Holidays         Cultural Tourism
## 474            Leisure and Holidays         Wildlife Tourism
## 475            Leisure and Holidays          Widlife Tourism
## 476            Leisure and Holidays       Conference Tourism
## 477            Leisure and Holidays       Conference Tourism
## 478                           Other          Widlife Tourism
## 479            Leisure and Holidays          Widlife Tourism
## 480                    Volunteering          Hunting Tourism
## 481                        Business       Conference Tourism
## 482            Leisure and Holidays          Widlife Tourism
## 483            Leisure and Holidays            Beach Tourism
## 484            Leisure and Holidays            Beach Tourism
## 485                        Business          Hunting Tourism
## 486            Leisure and Holidays       Conference Tourism
## 487                    Volunteering          Widlife Tourism
## 488            Leisure and Holidays         Cultural Tourism
## 489            Leisure and Holidays          Widlife Tourism
## 490            Leisure and Holidays                 Business
## 491            Leisure and Holidays         Wildlife Tourism
## 492            Leisure and Holidays            Beach Tourism
## 493            Leisure and Holidays          Widlife Tourism
## 494            Leisure and Holidays            Beach Tourism
## 495            Leisure and Holidays                 Business
## 496  Visiting Friends and Relatives            Beach Tourism
## 497  Visiting Friends and Relatives            Beach Tourism
## 498                        Business         Wildlife Tourism
## 499            Leisure and Holidays            Beach Tourism
## 500            Leisure and Holidays       Conference Tourism
## 501            Leisure and Holidays            Beach Tourism
## 502            Leisure and Holidays            Beach Tourism
## 503            Leisure and Holidays          Widlife Tourism
## 504            Leisure and Holidays            Beach Tourism
## 505            Leisure and Holidays          Widlife Tourism
## 506         Meetings and Conference          Widlife Tourism
## 507                        Business            Beach Tourism
## 508                        Business          Widlife Tourism
## 510                        Business         Wildlife Tourism
## 511                        Business         Wildlife Tourism
## 512            Leisure and Holidays       Conference Tourism
## 513                        Business            Beach Tourism
## 514            Leisure and Holidays            Beach Tourism
## 515            Leisure and Holidays       Conference Tourism
## 516            Leisure and Holidays       Conference Tourism
## 517            Leisure and Holidays          Widlife Tourism
## 518            Leisure and Holidays         Wildlife Tourism
## 519                        Business            Beach Tourism
## 520         Meetings and Conference       Conference Tourism
## 521            Leisure and Holidays       Conference Tourism
## 522                        Business            Beach Tourism
## 523         Meetings and Conference       Conference Tourism
## 524  Visiting Friends and Relatives          Hunting Tourism
## 525            Leisure and Holidays         Cultural Tourism
## 526            Leisure and Holidays            Beach Tourism
## 527            Leisure and Holidays          Widlife Tourism
## 528            Leisure and Holidays            Beach Tourism
## 529  Visiting Friends and Relatives          Widlife Tourism
## 530                        Business         Wildlife Tourism
## 531            Leisure and Holidays          Widlife Tourism
## 532            Leisure and Holidays          Widlife Tourism
## 533         Meetings and Conference        Mountain Climbing
## 534            Leisure and Holidays          Widlife Tourism
## 535            Leisure and Holidays       Conference Tourism
## 536            Leisure and Holidays            Beach Tourism
## 537  Visiting Friends and Relatives          Hunting Tourism
## 538                        Business          Hunting Tourism
## 539            Leisure and Holidays       Conference Tourism
## 540                        Business            Beach Tourism
## 541  Visiting Friends and Relatives            Beach Tourism
## 542            Leisure and Holidays          Widlife Tourism
## 544            Leisure and Holidays         Wildlife Tourism
## 545            Leisure and Holidays         Cultural Tourism
## 546                        Business          Widlife Tourism
## 547            Leisure and Holidays       Conference Tourism
## 548            Leisure and Holidays          Widlife Tourism
## 549            Leisure and Holidays          Widlife Tourism
## 550         Meetings and Conference            Beach Tourism
## 551            Leisure and Holidays          Widlife Tourism
## 552  Visiting Friends and Relatives       Conference Tourism
## 553  Visiting Friends and Relatives          Hunting Tourism
## 554            Leisure and Holidays         Wildlife Tourism
## 555  Visiting Friends and Relatives          Hunting Tourism
## 556  Visiting Friends and Relatives         Cultural Tourism
## 557            Leisure and Holidays          Widlife Tourism
## 558            Leisure and Holidays         Cultural Tourism
## 559            Leisure and Holidays          Widlife Tourism
## 560                           Other          Widlife Tourism
## 561  Visiting Friends and Relatives            Beach Tourism
## 562            Leisure and Holidays          Widlife Tourism
## 563            Leisure and Holidays            Beach Tourism
## 564            Leisure and Holidays          Widlife Tourism
## 565            Leisure and Holidays       Conference Tourism
## 566            Leisure and Holidays         Wildlife Tourism
## 567            Leisure and Holidays            Beach Tourism
## 568            Leisure and Holidays         Wildlife Tourism
## 570            Leisure and Holidays            Beach Tourism
## 571            Leisure and Holidays          Widlife Tourism
## 572         Meetings and Conference          Hunting Tourism
## 573  Visiting Friends and Relatives            Beach Tourism
## 574            Leisure and Holidays            Beach Tourism
## 575            Leisure and Holidays            Beach Tourism
## 576                        Business          Hunting Tourism
## 577            Leisure and Holidays          Widlife Tourism
## 578            Leisure and Holidays            Beach Tourism
## 579            Leisure and Holidays          Widlife Tourism
## 580            Leisure and Holidays            Beach Tourism
## 581            Leisure and Holidays            Beach Tourism
## 582            Leisure and Holidays          Widlife Tourism
## 583            Leisure and Holidays          Widlife Tourism
## 584            Leisure and Holidays          Widlife Tourism
## 585            Leisure and Holidays            Beach Tourism
## 586                        Business          Hunting Tourism
## 587                        Business            Beach Tourism
## 588  Visiting Friends and Relatives         Cultural Tourism
## 589            Leisure and Holidays          Widlife Tourism
## 590  Visiting Friends and Relatives         Cultural Tourism
## 591            Leisure and Holidays          Widlife Tourism
## 592            Leisure and Holidays          Hunting Tourism
## 593            Leisure and Holidays          Widlife Tourism
## 594            Leisure and Holidays          Widlife Tourism
## 595            Leisure and Holidays          Widlife Tourism
## 596            Leisure and Holidays            Beach Tourism
## 597  Visiting Friends and Relatives            Beach Tourism
## 598         Meetings and Conference        Mountain Climbing
## 600            Leisure and Holidays          Widlife Tourism
## 601  Visiting Friends and Relatives         Cultural Tourism
## 602            Leisure and Holidays            Beach Tourism
## 603                        Business         Cultural Tourism
## 604            Leisure and Holidays          Widlife Tourism
## 605            Leisure and Holidays          Widlife Tourism
## 606         Meetings and Conference         Wildlife Tourism
## 607            Leisure and Holidays       Conference Tourism
## 608            Leisure and Holidays          Widlife Tourism
## 609                        Business         Wildlife Tourism
## 610            Leisure and Holidays       Conference Tourism
## 612                           Other          Hunting Tourism
## 613            Leisure and Holidays         Wildlife Tourism
## 614            Leisure and Holidays            Beach Tourism
## 615            Leisure and Holidays       Conference Tourism
## 616                        Business            Beach Tourism
## 617                        Business          Widlife Tourism
## 618            Leisure and Holidays          Widlife Tourism
## 620  Visiting Friends and Relatives          Hunting Tourism
## 622            Leisure and Holidays          Widlife Tourism
## 623            Leisure and Holidays            Beach Tourism
## 624            Leisure and Holidays          Widlife Tourism
## 625            Leisure and Holidays       Conference Tourism
## 626            Leisure and Holidays            Beach Tourism
## 627         Meetings and Conference Diving and Sport Fishing
## 628            Leisure and Holidays       Conference Tourism
## 629            Leisure and Holidays       Conference Tourism
## 630                        Business          Widlife Tourism
## 631            Leisure and Holidays          Widlife Tourism
## 632            Leisure and Holidays          Widlife Tourism
## 633                        Business            Beach Tourism
## 634            Leisure and Holidays          Widlife Tourism
## 635            Leisure and Holidays       Conference Tourism
## 636  Visiting Friends and Relatives          Widlife Tourism
## 637                        Business          Hunting Tourism
## 638            Leisure and Holidays       Conference Tourism
## 639            Leisure and Holidays          Widlife Tourism
## 640  Visiting Friends and Relatives          Hunting Tourism
## 641            Leisure and Holidays       Conference Tourism
## 642            Leisure and Holidays            Beach Tourism
## 643  Visiting Friends and Relatives         Cultural Tourism
## 644            Leisure and Holidays          Widlife Tourism
## 645         Meetings and Conference            Beach Tourism
## 646                    Volunteering       Conference Tourism
## 647  Visiting Friends and Relatives            Beach Tourism
## 648         Meetings and Conference          Widlife Tourism
## 649            Leisure and Holidays          Widlife Tourism
## 650            Leisure and Holidays         Cultural Tourism
## 651            Leisure and Holidays            Beach Tourism
## 652  Visiting Friends and Relatives            Beach Tourism
## 653            Leisure and Holidays          Widlife Tourism
## 655            Leisure and Holidays            Beach Tourism
## 657            Leisure and Holidays            Beach Tourism
## 658            Leisure and Holidays          Widlife Tourism
## 659                        Business          Widlife Tourism
## 660                        Business          Widlife Tourism
## 661            Leisure and Holidays          Widlife Tourism
## 662            Leisure and Holidays       Conference Tourism
## 663            Leisure and Holidays          Widlife Tourism
## 664            Leisure and Holidays       Conference Tourism
## 665            Leisure and Holidays            Beach Tourism
## 666            Leisure and Holidays          Widlife Tourism
## 667            Leisure and Holidays          Widlife Tourism
## 668            Leisure and Holidays            Beach Tourism
## 669            Leisure and Holidays          Widlife Tourism
## 670  Visiting Friends and Relatives          Widlife Tourism
## 671            Leisure and Holidays         Cultural Tourism
## 672            Leisure and Holidays          Widlife Tourism
## 673                        Business       Conference Tourism
## 674            Leisure and Holidays         Wildlife Tourism
## 675            Leisure and Holidays          Widlife Tourism
## 676            Leisure and Holidays          Widlife Tourism
## 677            Leisure and Holidays          Widlife Tourism
## 679            Leisure and Holidays          Widlife Tourism
## 680            Leisure and Holidays            Beach Tourism
## 681            Leisure and Holidays            Beach Tourism
## 682            Leisure and Holidays          Widlife Tourism
## 683            Leisure and Holidays       Conference Tourism
## 684            Leisure and Holidays         Wildlife Tourism
## 685            Leisure and Holidays         Cultural Tourism
## 687            Leisure and Holidays            Beach Tourism
## 688            Leisure and Holidays       Conference Tourism
## 689  Visiting Friends and Relatives       Conference Tourism
## 690            Leisure and Holidays            Beach Tourism
## 691            Leisure and Holidays          Widlife Tourism
## 692            Leisure and Holidays            Beach Tourism
## 693         Meetings and Conference       Conference Tourism
## 694                           Other            Beach Tourism
## 696                        Business          Hunting Tourism
## 698            Leisure and Holidays            Beach Tourism
## 699            Leisure and Holidays          Widlife Tourism
## 700            Leisure and Holidays          Widlife Tourism
## 701                        Business          Hunting Tourism
## 702            Leisure and Holidays       Conference Tourism
## 703            Leisure and Holidays          Widlife Tourism
## 704  Visiting Friends and Relatives          Widlife Tourism
## 706            Leisure and Holidays            Beach Tourism
## 707            Leisure and Holidays         Cultural Tourism
## 708            Leisure and Holidays          Widlife Tourism
## 709  Visiting Friends and Relatives          Hunting Tourism
## 710            Leisure and Holidays          Widlife Tourism
## 711            Leisure and Holidays         Wildlife Tourism
## 712            Leisure and Holidays            Beach Tourism
## 713            Leisure and Holidays         Wildlife Tourism
## 714            Leisure and Holidays            Beach Tourism
## 715            Leisure and Holidays          Widlife Tourism
## 716  Visiting Friends and Relatives         Cultural Tourism
## 718            Leisure and Holidays          Widlife Tourism
## 719            Leisure and Holidays          Widlife Tourism
## 720            Leisure and Holidays          Widlife Tourism
## 721            Leisure and Holidays          Widlife Tourism
## 722                        Business            Beach Tourism
## 723            Leisure and Holidays          Widlife Tourism
## 724         Meetings and Conference       Conference Tourism
## 725            Leisure and Holidays       Conference Tourism
## 727            Leisure and Holidays          Widlife Tourism
## 728            Leisure and Holidays                 Business
## 729  Visiting Friends and Relatives       Conference Tourism
## 730            Leisure and Holidays            Beach Tourism
## 731            Leisure and Holidays            Beach Tourism
## 732                        Business         Wildlife Tourism
## 733            Leisure and Holidays          Widlife Tourism
## 734            Leisure and Holidays          Widlife Tourism
## 735            Leisure and Holidays       Conference Tourism
## 736                        Business          Widlife Tourism
## 737            Leisure and Holidays         Wildlife Tourism
## 738            Leisure and Holidays            Beach Tourism
## 739         Scientific and Academic          Hunting Tourism
## 740  Visiting Friends and Relatives         Cultural Tourism
## 741            Leisure and Holidays             Bird Tourism
## 742            Leisure and Holidays       Conference Tourism
## 743            Leisure and Holidays          Widlife Tourism
## 744  Visiting Friends and Relatives                 Business
## 745            Leisure and Holidays          Widlife Tourism
## 746            Leisure and Holidays          Hunting Tourism
## 747  Visiting Friends and Relatives       Conference Tourism
## 748            Leisure and Holidays            Beach Tourism
## 749            Leisure and Holidays         Wildlife Tourism
## 750                        Business          Widlife Tourism
## 752            Leisure and Holidays          Hunting Tourism
## 753            Leisure and Holidays            Beach Tourism
## 754            Leisure and Holidays          Widlife Tourism
## 755         Meetings and Conference            Beach Tourism
## 756                        Business          Widlife Tourism
## 758            Leisure and Holidays         Cultural Tourism
## 759            Leisure and Holidays       Conference Tourism
## 761            Leisure and Holidays          Widlife Tourism
## 762            Leisure and Holidays          Widlife Tourism
## 763                        Business          Widlife Tourism
## 764  Visiting Friends and Relatives            Beach Tourism
## 765  Visiting Friends and Relatives          Hunting Tourism
## 766            Leisure and Holidays          Widlife Tourism
## 767            Leisure and Holidays         Wildlife Tourism
## 769            Leisure and Holidays            Beach Tourism
## 770                        Business          Hunting Tourism
## 771                        Business          Widlife Tourism
## 772  Visiting Friends and Relatives          Hunting Tourism
## 773            Leisure and Holidays         Wildlife Tourism
## 774                           Other          Hunting Tourism
## 775            Leisure and Holidays          Widlife Tourism
## 776            Leisure and Holidays         Wildlife Tourism
## 777            Leisure and Holidays          Widlife Tourism
## 778            Leisure and Holidays       Conference Tourism
## 779  Visiting Friends and Relatives            Beach Tourism
## 780            Leisure and Holidays          Widlife Tourism
## 781  Visiting Friends and Relatives            Beach Tourism
## 782            Leisure and Holidays         Wildlife Tourism
## 783            Leisure and Holidays            Beach Tourism
## 784         Meetings and Conference            Beach Tourism
## 785  Visiting Friends and Relatives          Hunting Tourism
## 786            Leisure and Holidays          Widlife Tourism
## 787            Leisure and Holidays            Beach Tourism
## 788            Leisure and Holidays         Wildlife Tourism
## 789            Leisure and Holidays          Widlife Tourism
## 790            Leisure and Holidays          Widlife Tourism
## 791            Leisure and Holidays            Beach Tourism
## 792            Leisure and Holidays         Cultural Tourism
## 793            Leisure and Holidays       Conference Tourism
## 795            Leisure and Holidays          Widlife Tourism
## 796            Leisure and Holidays            Beach Tourism
## 797            Leisure and Holidays          Widlife Tourism
## 798            Leisure and Holidays            Beach Tourism
## 799         Meetings and Conference          Hunting Tourism
## 800            Leisure and Holidays         Wildlife Tourism
## 801                        Business            Beach Tourism
## 802            Leisure and Holidays            Beach Tourism
## 803                           Other            Beach Tourism
## 804            Leisure and Holidays          Widlife Tourism
## 805            Leisure and Holidays          Widlife Tourism
## 806            Leisure and Holidays       Conference Tourism
## 808            Leisure and Holidays         Wildlife Tourism
## 809            Leisure and Holidays            Beach Tourism
## 810                           Other          Widlife Tourism
## 811         Meetings and Conference        Mountain Climbing
## 812            Leisure and Holidays            Beach Tourism
## 813                        Business         Wildlife Tourism
## 814                        Business          Widlife Tourism
## 815            Leisure and Holidays            Beach Tourism
## 816                        Business            Beach Tourism
## 817  Visiting Friends and Relatives            Beach Tourism
## 818            Leisure and Holidays         Wildlife Tourism
## 820                        Business         Wildlife Tourism
## 821            Leisure and Holidays          Widlife Tourism
## 822  Visiting Friends and Relatives          Widlife Tourism
## 823            Leisure and Holidays         Cultural Tourism
## 824         Meetings and Conference        Mountain Climbing
## 825            Leisure and Holidays         Cultural Tourism
## 826            Leisure and Holidays            Beach Tourism
## 827  Visiting Friends and Relatives         Cultural Tourism
## 828            Leisure and Holidays            Beach Tourism
## 829            Leisure and Holidays            Beach Tourism
## 830            Leisure and Holidays       Conference Tourism
## 831            Leisure and Holidays            Beach Tourism
## 832                        Business          Hunting Tourism
## 833            Leisure and Holidays         Cultural Tourism
## 834            Leisure and Holidays            Beach Tourism
## 835                        Business          Widlife Tourism
## 836  Visiting Friends and Relatives            Beach Tourism
## 837            Leisure and Holidays            Beach Tourism
## 838         Meetings and Conference            Beach Tourism
## 839            Leisure and Holidays       Conference Tourism
## 840            Leisure and Holidays            Beach Tourism
## 841            Leisure and Holidays       Conference Tourism
## 842            Leisure and Holidays          Widlife Tourism
## 843            Leisure and Holidays          Widlife Tourism
## 844            Leisure and Holidays          Widlife Tourism
## 845            Leisure and Holidays            Beach Tourism
## 846            Leisure and Holidays            Beach Tourism
## 847  Visiting Friends and Relatives         Cultural Tourism
## 848                           Other          Hunting Tourism
## 849            Leisure and Holidays         Wildlife Tourism
## 851            Leisure and Holidays          Widlife Tourism
## 852                        Business          Widlife Tourism
## 853            Leisure and Holidays            Beach Tourism
## 854            Leisure and Holidays          Hunting Tourism
## 855         Meetings and Conference         Cultural Tourism
## 856                        Business            Beach Tourism
## 857  Visiting Friends and Relatives         Cultural Tourism
## 858            Leisure and Holidays         Wildlife Tourism
## 859            Leisure and Holidays            Beach Tourism
## 860                        Business          Widlife Tourism
## 861            Leisure and Holidays          Widlife Tourism
## 862            Leisure and Holidays          Widlife Tourism
## 863            Leisure and Holidays         Wildlife Tourism
## 864  Visiting Friends and Relatives          Widlife Tourism
## 865            Leisure and Holidays          Widlife Tourism
## 866         Scientific and Academic       Conference Tourism
## 867            Leisure and Holidays       Conference Tourism
## 869                    Volunteering          Widlife Tourism
## 870            Leisure and Holidays                 Business
## 871            Leisure and Holidays            Beach Tourism
## 872         Meetings and Conference          Widlife Tourism
## 873                        Business         Wildlife Tourism
## 874            Leisure and Holidays         Wildlife Tourism
## 875            Leisure and Holidays         Wildlife Tourism
## 876            Leisure and Holidays          Widlife Tourism
## 877         Meetings and Conference          Widlife Tourism
## 878            Leisure and Holidays          Widlife Tourism
## 880            Leisure and Holidays          Widlife Tourism
## 881            Leisure and Holidays            Beach Tourism
## 882            Leisure and Holidays            Beach Tourism
## 883  Visiting Friends and Relatives          Widlife Tourism
## 884            Leisure and Holidays       Conference Tourism
## 885  Visiting Friends and Relatives            Beach Tourism
## 886                        Business          Widlife Tourism
## 887                           Other          Widlife Tourism
## 888            Leisure and Holidays         Wildlife Tourism
## 889            Leisure and Holidays          Widlife Tourism
## 891            Leisure and Holidays            Beach Tourism
## 892  Visiting Friends and Relatives          Hunting Tourism
## 893            Leisure and Holidays            Beach Tourism
## 894         Meetings and Conference       Conference Tourism
## 895         Scientific and Academic          Widlife Tourism
## 896            Leisure and Holidays          Widlife Tourism
## 898  Visiting Friends and Relatives            Beach Tourism
## 900         Meetings and Conference       Conference Tourism
## 901  Visiting Friends and Relatives            Beach Tourism
## 904            Leisure and Holidays          Widlife Tourism
## 905                        Business          Hunting Tourism
## 906            Leisure and Holidays         Wildlife Tourism
## 907            Leisure and Holidays            Beach Tourism
## 908            Leisure and Holidays          Widlife Tourism
## 909                           Other          Hunting Tourism
## 910  Visiting Friends and Relatives            Beach Tourism
## 911            Leisure and Holidays          Widlife Tourism
## 913                    Volunteering         Wildlife Tourism
## 914            Leisure and Holidays            Beach Tourism
## 915            Leisure and Holidays          Widlife Tourism
## 916            Leisure and Holidays          Widlife Tourism
## 917  Visiting Friends and Relatives            Beach Tourism
## 918            Leisure and Holidays            Beach Tourism
## 919            Leisure and Holidays       Conference Tourism
## 920         Meetings and Conference        Mountain Climbing
## 921                        Business         Cultural Tourism
## 922                        Business        Mountain Climbing
## 923            Leisure and Holidays                 Business
## 924                    Volunteering          Hunting Tourism
## 925  Visiting Friends and Relatives         Cultural Tourism
## 926                        Business          Widlife Tourism
## 927            Leisure and Holidays            Beach Tourism
## 928                        Business        Mountain Climbing
## 929            Leisure and Holidays          Widlife Tourism
## 930            Leisure and Holidays                 Business
## 931            Leisure and Holidays          Widlife Tourism
## 932            Leisure and Holidays            Beach Tourism
## 933            Leisure and Holidays            Beach Tourism
## 934            Leisure and Holidays          Widlife Tourism
## 935                           Other          Hunting Tourism
## 937            Leisure and Holidays          Widlife Tourism
## 938  Visiting Friends and Relatives          Widlife Tourism
## 939            Leisure and Holidays          Widlife Tourism
## 940            Leisure and Holidays            Beach Tourism
## 941            Leisure and Holidays          Widlife Tourism
## 942                        Business          Hunting Tourism
## 943            Leisure and Holidays            Beach Tourism
## 944            Leisure and Holidays         Wildlife Tourism
## 945            Leisure and Holidays          Widlife Tourism
## 946            Leisure and Holidays          Widlife Tourism
## 947            Leisure and Holidays         Wildlife Tourism
## 948         Meetings and Conference          Hunting Tourism
## 949         Scientific and Academic          Hunting Tourism
## 950            Leisure and Holidays            Beach Tourism
## 951            Leisure and Holidays          Widlife Tourism
## 952  Visiting Friends and Relatives          Widlife Tourism
## 953                        Business         Cultural Tourism
## 955            Leisure and Holidays         Wildlife Tourism
## 956            Leisure and Holidays       Conference Tourism
## 957            Leisure and Holidays       Conference Tourism
## 958            Leisure and Holidays       Conference Tourism
## 959            Leisure and Holidays                 Business
## 960            Leisure and Holidays            Beach Tourism
## 961         Scientific and Academic          Hunting Tourism
## 962            Leisure and Holidays          Widlife Tourism
## 963            Leisure and Holidays            Beach Tourism
## 964            Leisure and Holidays       Conference Tourism
## 966            Leisure and Holidays          Widlife Tourism
## 967            Leisure and Holidays             Bird Tourism
## 968  Visiting Friends and Relatives         Cultural Tourism
## 971            Leisure and Holidays       Conference Tourism
## 972            Leisure and Holidays          Widlife Tourism
## 973            Leisure and Holidays            Beach Tourism
## 975            Leisure and Holidays         Cultural Tourism
## 976            Leisure and Holidays            Beach Tourism
## 977                        Business          Widlife Tourism
## 978                        Business            Beach Tourism
## 979  Visiting Friends and Relatives         Cultural Tourism
## 980            Leisure and Holidays          Widlife Tourism
## 981            Leisure and Holidays          Widlife Tourism
## 982            Leisure and Holidays            Beach Tourism
## 983            Leisure and Holidays            Beach Tourism
## 984                           Other          Widlife Tourism
## 985                        Business          Hunting Tourism
## 986                        Business          Hunting Tourism
## 987            Leisure and Holidays          Widlife Tourism
## 988            Leisure and Holidays         Wildlife Tourism
## 989            Leisure and Holidays          Widlife Tourism
## 991            Leisure and Holidays          Widlife Tourism
## 992  Visiting Friends and Relatives          Widlife Tourism
## 993            Leisure and Holidays       Conference Tourism
## 994                        Business          Widlife Tourism
## 995  Visiting Friends and Relatives          Widlife Tourism
## 996            Leisure and Holidays          Widlife Tourism
## 997                        Business          Hunting Tourism
## 998            Leisure and Holidays         Wildlife Tourism
## 999            Leisure and Holidays         Cultural Tourism
## 1000           Leisure and Holidays         Cultural Tourism
## 1001           Leisure and Holidays          Widlife Tourism
## 1002           Leisure and Holidays          Widlife Tourism
## 1003           Leisure and Holidays          Widlife Tourism
## 1005           Leisure and Holidays          Widlife Tourism
## 1006           Leisure and Holidays                 Business
## 1007           Leisure and Holidays            Beach Tourism
## 1008 Visiting Friends and Relatives          Hunting Tourism
## 1009           Leisure and Holidays       Conference Tourism
## 1010           Leisure and Holidays                 Business
## 1011           Leisure and Holidays          Widlife Tourism
## 1012           Leisure and Holidays          Widlife Tourism
## 1013           Leisure and Holidays            Beach Tourism
## 1014           Leisure and Holidays          Widlife Tourism
## 1015 Visiting Friends and Relatives          Hunting Tourism
## 1016        Meetings and Conference          Hunting Tourism
## 1017           Leisure and Holidays          Widlife Tourism
## 1018 Visiting Friends and Relatives                 Business
## 1019 Visiting Friends and Relatives         Cultural Tourism
## 1020 Visiting Friends and Relatives            Beach Tourism
## 1021                       Business          Widlife Tourism
## 1022           Leisure and Holidays            Beach Tourism
## 1023 Visiting Friends and Relatives          Hunting Tourism
## 1024           Leisure and Holidays            Beach Tourism
## 1025 Visiting Friends and Relatives          Hunting Tourism
## 1026                       Business          Widlife Tourism
## 1027           Leisure and Holidays         Cultural Tourism
## 1028                       Business         Cultural Tourism
## 1029 Visiting Friends and Relatives         Wildlife Tourism
## 1030           Leisure and Holidays          Widlife Tourism
## 1031           Leisure and Holidays         Wildlife Tourism
## 1032           Leisure and Holidays          Widlife Tourism
## 1033           Leisure and Holidays          Widlife Tourism
## 1034           Leisure and Holidays          Hunting Tourism
## 1035           Leisure and Holidays          Widlife Tourism
## 1036           Leisure and Holidays       Conference Tourism
## 1037           Leisure and Holidays            Beach Tourism
## 1038           Leisure and Holidays          Widlife Tourism
## 1039           Leisure and Holidays          Widlife Tourism
## 1041 Visiting Friends and Relatives          Hunting Tourism
## 1042           Leisure and Holidays         Cultural Tourism
## 1043           Leisure and Holidays          Hunting Tourism
## 1044 Visiting Friends and Relatives          Hunting Tourism
## 1045                       Business          Widlife Tourism
## 1046           Leisure and Holidays            Beach Tourism
## 1047           Leisure and Holidays          Widlife Tourism
## 1048                          Other          Hunting Tourism
## 1049           Leisure and Holidays          Widlife Tourism
## 1050           Leisure and Holidays            Beach Tourism
## 1051           Leisure and Holidays          Widlife Tourism
## 1052           Leisure and Holidays          Widlife Tourism
## 1053           Leisure and Holidays          Widlife Tourism
## 1055                       Business          Widlife Tourism
## 1056           Leisure and Holidays          Widlife Tourism
## 1057 Visiting Friends and Relatives         Cultural Tourism
## 1058           Leisure and Holidays            Beach Tourism
## 1059           Leisure and Holidays          Widlife Tourism
## 1060                   Volunteering            Beach Tourism
## 1061           Leisure and Holidays         Wildlife Tourism
## 1062           Leisure and Holidays          Widlife Tourism
## 1063           Leisure and Holidays          Widlife Tourism
## 1065           Leisure and Holidays         Wildlife Tourism
## 1066 Visiting Friends and Relatives         Cultural Tourism
## 1067           Leisure and Holidays          Widlife Tourism
## 1068           Leisure and Holidays         Wildlife Tourism
## 1069           Leisure and Holidays          Widlife Tourism
## 1070           Leisure and Holidays          Widlife Tourism
## 1071           Leisure and Holidays       Conference Tourism
## 1072                       Business          Hunting Tourism
## 1073                       Business       Conference Tourism
## 1074                       Business         Wildlife Tourism
## 1075           Leisure and Holidays          Widlife Tourism
## 1077           Leisure and Holidays       Conference Tourism
## 1078           Leisure and Holidays          Widlife Tourism
## 1079           Leisure and Holidays         Wildlife Tourism
## 1080           Leisure and Holidays         Cultural Tourism
## 1081                       Business          Widlife Tourism
## 1082           Leisure and Holidays          Widlife Tourism
## 1083           Leisure and Holidays            Beach Tourism
## 1084                       Business         Cultural Tourism
## 1086 Visiting Friends and Relatives            Beach Tourism
## 1087 Visiting Friends and Relatives            Beach Tourism
## 1088                       Business         Wildlife Tourism
## 1089           Leisure and Holidays       Conference Tourism
## 1090           Leisure and Holidays          Widlife Tourism
## 1091           Leisure and Holidays          Widlife Tourism
## 1092                       Business        Mountain Climbing
## 1093           Leisure and Holidays            Beach Tourism
## 1094 Visiting Friends and Relatives         Cultural Tourism
## 1095           Leisure and Holidays          Widlife Tourism
## 1096                       Business          Widlife Tourism
## 1097 Visiting Friends and Relatives            Beach Tourism
## 1098           Leisure and Holidays         Wildlife Tourism
## 1099                   Volunteering          Widlife Tourism
## 1100                          Other          Hunting Tourism
## 1101           Leisure and Holidays          Widlife Tourism
## 1102           Leisure and Holidays          Widlife Tourism
## 1103           Leisure and Holidays       Conference Tourism
## 1104                       Business         Wildlife Tourism
## 1105           Leisure and Holidays          Widlife Tourism
## 1106 Visiting Friends and Relatives            Beach Tourism
## 1107           Leisure and Holidays          Widlife Tourism
## 1108           Leisure and Holidays       Conference Tourism
## 1109           Leisure and Holidays            Beach Tourism
## 1110                   Volunteering        Mountain Climbing
## 1111           Leisure and Holidays            Beach Tourism
## 1112           Leisure and Holidays          Widlife Tourism
## 1113           Leisure and Holidays          Widlife Tourism
## 1114 Visiting Friends and Relatives          Hunting Tourism
## 1116           Leisure and Holidays          Widlife Tourism
## 1118           Leisure and Holidays         Cultural Tourism
## 1119                       Business          Hunting Tourism
## 1120 Visiting Friends and Relatives         Cultural Tourism
## 1123           Leisure and Holidays            Beach Tourism
## 1124 Visiting Friends and Relatives          Hunting Tourism
## 1125 Visiting Friends and Relatives         Cultural Tourism
## 1126           Leisure and Holidays          Widlife Tourism
## 1127           Leisure and Holidays         Cultural Tourism
## 1128           Leisure and Holidays          Widlife Tourism
## 1129           Leisure and Holidays          Widlife Tourism
## 1130 Visiting Friends and Relatives          Widlife Tourism
## 1131           Leisure and Holidays         Wildlife Tourism
## 1132           Leisure and Holidays            Beach Tourism
## 1133                       Business          Widlife Tourism
## 1135 Visiting Friends and Relatives          Hunting Tourism
## 1136 Visiting Friends and Relatives            Beach Tourism
## 1137           Leisure and Holidays         Wildlife Tourism
## 1138           Leisure and Holidays          Widlife Tourism
## 1139           Leisure and Holidays         Cultural Tourism
## 1140           Leisure and Holidays          Widlife Tourism
## 1141           Leisure and Holidays            Beach Tourism
## 1142                       Business         Cultural Tourism
## 1143        Meetings and Conference         Cultural Tourism
## 1144           Leisure and Holidays          Widlife Tourism
## 1145        Meetings and Conference       Conference Tourism
## 1146                       Business            Beach Tourism
## 1147           Leisure and Holidays            Beach Tourism
## 1148           Leisure and Holidays       Conference Tourism
## 1149           Leisure and Holidays            Beach Tourism
## 1150           Leisure and Holidays          Widlife Tourism
## 1151           Leisure and Holidays          Widlife Tourism
## 1152 Visiting Friends and Relatives          Hunting Tourism
## 1153           Leisure and Holidays            Beach Tourism
## 1154           Leisure and Holidays          Widlife Tourism
## 1155                       Business          Widlife Tourism
## 1156                          Other          Hunting Tourism
## 1157           Leisure and Holidays       Conference Tourism
## 1158           Leisure and Holidays             Bird Tourism
## 1159           Leisure and Holidays            Beach Tourism
## 1160           Leisure and Holidays            Beach Tourism
## 1161                          Other          Hunting Tourism
## 1163                       Business          Hunting Tourism
## 1164           Leisure and Holidays          Widlife Tourism
## 1165 Visiting Friends and Relatives            Beach Tourism
## 1166           Leisure and Holidays            Beach Tourism
## 1167           Leisure and Holidays         Wildlife Tourism
## 1168           Leisure and Holidays         Wildlife Tourism
## 1169           Leisure and Holidays          Widlife Tourism
## 1170                       Business         Wildlife Tourism
## 1172 Visiting Friends and Relatives            Beach Tourism
## 1173           Leisure and Holidays       Conference Tourism
## 1174           Leisure and Holidays       Conference Tourism
## 1175           Leisure and Holidays         Wildlife Tourism
## 1176           Leisure and Holidays            Beach Tourism
## 1177 Visiting Friends and Relatives                 Business
## 1178           Leisure and Holidays            Beach Tourism
## 1179           Leisure and Holidays          Widlife Tourism
## 1180           Leisure and Holidays          Widlife Tourism
## 1181           Leisure and Holidays       Conference Tourism
## 1182 Visiting Friends and Relatives          Hunting Tourism
## 1183           Leisure and Holidays          Widlife Tourism
## 1184           Leisure and Holidays            Beach Tourism
## 1185 Visiting Friends and Relatives            Beach Tourism
## 1186           Leisure and Holidays         Wildlife Tourism
## 1187                          Other          Hunting Tourism
## 1188           Leisure and Holidays          Widlife Tourism
## 1189                          Other        Mountain Climbing
## 1190 Visiting Friends and Relatives          Hunting Tourism
## 1191           Leisure and Holidays          Widlife Tourism
## 1192        Scientific and Academic          Hunting Tourism
## 1193           Leisure and Holidays          Widlife Tourism
## 1194           Leisure and Holidays         Cultural Tourism
## 1195           Leisure and Holidays          Widlife Tourism
## 1196           Leisure and Holidays            Beach Tourism
## 1197           Leisure and Holidays            Beach Tourism
## 1198           Leisure and Holidays          Widlife Tourism
## 1199           Leisure and Holidays         Wildlife Tourism
## 1200           Leisure and Holidays         Cultural Tourism
## 1201           Leisure and Holidays            Beach Tourism
## 1202                          Other         Cultural Tourism
## 1203           Leisure and Holidays            Beach Tourism
## 1205                       Business          Hunting Tourism
## 1206        Scientific and Academic          Hunting Tourism
## 1207           Leisure and Holidays          Widlife Tourism
## 1208           Leisure and Holidays          Widlife Tourism
## 1209           Leisure and Holidays         Wildlife Tourism
## 1210           Leisure and Holidays          Widlife Tourism
## 1211           Leisure and Holidays         Wildlife Tourism
## 1212           Leisure and Holidays       Conference Tourism
## 1213 Visiting Friends and Relatives         Cultural Tourism
## 1214           Leisure and Holidays         Wildlife Tourism
## 1215           Leisure and Holidays          Widlife Tourism
## 1216           Leisure and Holidays          Widlife Tourism
## 1217 Visiting Friends and Relatives            Beach Tourism
## 1218           Leisure and Holidays         Wildlife Tourism
## 1219                          Other          Hunting Tourism
## 1220           Leisure and Holidays          Widlife Tourism
## 1221           Leisure and Holidays          Hunting Tourism
## 1222           Leisure and Holidays          Widlife Tourism
## 1223        Meetings and Conference       Conference Tourism
## 1224        Meetings and Conference          Hunting Tourism
## 1225           Leisure and Holidays         Cultural Tourism
## 1227 Visiting Friends and Relatives            Beach Tourism
## 1228                       Business          Widlife Tourism
## 1229           Leisure and Holidays            Beach Tourism
## 1232 Visiting Friends and Relatives          Hunting Tourism
## 1233           Leisure and Holidays          Widlife Tourism
## 1234           Leisure and Holidays          Widlife Tourism
## 1235                       Business        Mountain Climbing
## 1237           Leisure and Holidays          Widlife Tourism
## 1238                       Business          Hunting Tourism
## 1239           Leisure and Holidays          Widlife Tourism
## 1240 Visiting Friends and Relatives          Widlife Tourism
## 1241                       Business          Widlife Tourism
## 1242 Visiting Friends and Relatives          Hunting Tourism
## 1243                   Volunteering          Hunting Tourism
## 1244 Visiting Friends and Relatives            Beach Tourism
## 1245           Leisure and Holidays             Bird Tourism
## 1246           Leisure and Holidays         Wildlife Tourism
## 1247 Visiting Friends and Relatives            Beach Tourism
## 1248           Leisure and Holidays          Widlife Tourism
## 1249           Leisure and Holidays          Widlife Tourism
## 1250           Leisure and Holidays          Widlife Tourism
## 1251           Leisure and Holidays       Conference Tourism
## 1252 Visiting Friends and Relatives          Hunting Tourism
## 1253           Leisure and Holidays          Widlife Tourism
## 1254           Leisure and Holidays          Widlife Tourism
## 1255           Leisure and Holidays            Beach Tourism
## 1256           Leisure and Holidays            Beach Tourism
## 1257                       Business         Cultural Tourism
## 1258           Leisure and Holidays          Widlife Tourism
## 1259 Visiting Friends and Relatives            Beach Tourism
## 1260           Leisure and Holidays          Widlife Tourism
## 1261                          Other          Hunting Tourism
## 1262           Leisure and Holidays            Beach Tourism
## 1263           Leisure and Holidays          Widlife Tourism
## 1264           Leisure and Holidays          Widlife Tourism
## 1265                       Business          Widlife Tourism
## 1266           Leisure and Holidays         Wildlife Tourism
## 1267           Leisure and Holidays            Beach Tourism
## 1268           Leisure and Holidays          Widlife Tourism
## 1269           Leisure and Holidays          Hunting Tourism
## 1270                       Business         Wildlife Tourism
## 1271           Leisure and Holidays          Widlife Tourism
## 1272 Visiting Friends and Relatives         Cultural Tourism
## 1274           Leisure and Holidays          Widlife Tourism
## 1275 Visiting Friends and Relatives            Beach Tourism
## 1276           Leisure and Holidays          Widlife Tourism
## 1277                       Business          Hunting Tourism
## 1278        Meetings and Conference         Wildlife Tourism
## 1279                       Business          Widlife Tourism
## 1280           Leisure and Holidays          Widlife Tourism
## 1281 Visiting Friends and Relatives         Cultural Tourism
## 1282           Leisure and Holidays          Widlife Tourism
## 1283        Meetings and Conference        Mountain Climbing
## 1284        Meetings and Conference        Mountain Climbing
## 1286 Visiting Friends and Relatives          Hunting Tourism
## 1287           Leisure and Holidays          Widlife Tourism
## 1288           Leisure and Holidays          Widlife Tourism
## 1289                       Business         Wildlife Tourism
## 1290                          Other            Beach Tourism
## 1291           Leisure and Holidays         Wildlife Tourism
## 1292                       Business         Cultural Tourism
## 1293           Leisure and Holidays         Wildlife Tourism
## 1294 Visiting Friends and Relatives          Hunting Tourism
## 1295           Leisure and Holidays          Widlife Tourism
## 1296           Leisure and Holidays         Wildlife Tourism
## 1297           Leisure and Holidays       Conference Tourism
## 1298           Leisure and Holidays            Beach Tourism
## 1299           Leisure and Holidays          Widlife Tourism
## 1300 Visiting Friends and Relatives          Widlife Tourism
## 1301           Leisure and Holidays         Cultural Tourism
## 1302                       Business          Widlife Tourism
## 1303                       Business          Widlife Tourism
## 1304                       Business          Widlife Tourism
## 1305                       Business            Beach Tourism
## 1306        Meetings and Conference          Hunting Tourism
## 1307           Leisure and Holidays          Widlife Tourism
## 1308                       Business          Hunting Tourism
## 1309 Visiting Friends and Relatives         Wildlife Tourism
## 1310           Leisure and Holidays            Beach Tourism
## 1311           Leisure and Holidays          Widlife Tourism
## 1312 Visiting Friends and Relatives          Hunting Tourism
## 1313           Leisure and Holidays          Widlife Tourism
## 1314                       Business             Bird Tourism
## 1315        Meetings and Conference         Cultural Tourism
## 1316        Meetings and Conference       Conference Tourism
## 1317                          Other         Wildlife Tourism
## 1318                          Other          Hunting Tourism
## 1320                       Business          Widlife Tourism
## 1321           Leisure and Holidays         Wildlife Tourism
## 1322                       Business            Beach Tourism
## 1323           Leisure and Holidays         Wildlife Tourism
## 1324                       Business          Widlife Tourism
## 1325           Leisure and Holidays          Hunting Tourism
## 1326                       Business          Widlife Tourism
## 1327                       Business          Hunting Tourism
## 1328           Leisure and Holidays            Beach Tourism
## 1329           Leisure and Holidays          Widlife Tourism
## 1330           Leisure and Holidays            Beach Tourism
## 1331           Leisure and Holidays          Widlife Tourism
## 1332           Leisure and Holidays         Wildlife Tourism
## 1333           Leisure and Holidays          Widlife Tourism
## 1334                       Business          Hunting Tourism
## 1335           Leisure and Holidays          Widlife Tourism
## 1336                       Business        Mountain Climbing
## 1337 Visiting Friends and Relatives          Hunting Tourism
## 1338           Leisure and Holidays            Beach Tourism
## 1339           Leisure and Holidays            Beach Tourism
## 1340        Meetings and Conference            Beach Tourism
## 1341           Leisure and Holidays       Conference Tourism
## 1342           Leisure and Holidays          Widlife Tourism
## 1343           Leisure and Holidays          Widlife Tourism
## 1344           Leisure and Holidays         Cultural Tourism
## 1345           Leisure and Holidays          Widlife Tourism
## 1346           Leisure and Holidays            Beach Tourism
## 1347           Leisure and Holidays         Wildlife Tourism
## 1348           Leisure and Holidays          Widlife Tourism
## 1349        Meetings and Conference            Beach Tourism
## 1350           Leisure and Holidays          Widlife Tourism
## 1351                       Business          Widlife Tourism
## 1352        Meetings and Conference       Conference Tourism
## 1353           Leisure and Holidays          Widlife Tourism
## 1354           Leisure and Holidays            Beach Tourism
## 1355        Meetings and Conference       Conference Tourism
## 1356        Scientific and Academic         Cultural Tourism
## 1357           Leisure and Holidays         Wildlife Tourism
## 1359 Visiting Friends and Relatives          Hunting Tourism
## 1361 Visiting Friends and Relatives         Wildlife Tourism
## 1362 Visiting Friends and Relatives            Beach Tourism
## 1363           Leisure and Holidays          Widlife Tourism
## 1365           Leisure and Holidays            Beach Tourism
## 1366           Leisure and Holidays            Beach Tourism
## 1367           Leisure and Holidays         Wildlife Tourism
## 1368           Leisure and Holidays          Widlife Tourism
## 1369 Visiting Friends and Relatives         Cultural Tourism
## 1371           Leisure and Holidays          Widlife Tourism
## 1372        Scientific and Academic          Widlife Tourism
## 1373           Leisure and Holidays            Beach Tourism
## 1374           Leisure and Holidays            Beach Tourism
## 1376           Leisure and Holidays       Conference Tourism
## 1377           Leisure and Holidays          Widlife Tourism
## 1378           Leisure and Holidays         Cultural Tourism
## 1379           Leisure and Holidays            Beach Tourism
## 1380                       Business          Widlife Tourism
## 1381           Leisure and Holidays          Widlife Tourism
## 1383           Leisure and Holidays            Beach Tourism
## 1384           Leisure and Holidays            Beach Tourism
## 1385           Leisure and Holidays          Widlife Tourism
## 1386           Leisure and Holidays          Widlife Tourism
## 1387           Leisure and Holidays            Beach Tourism
## 1388                   Volunteering          Widlife Tourism
## 1389           Leisure and Holidays            Beach Tourism
## 1390 Visiting Friends and Relatives         Wildlife Tourism
## 1391           Leisure and Holidays            Beach Tourism
## 1392           Leisure and Holidays          Widlife Tourism
## 1393           Leisure and Holidays          Widlife Tourism
## 1394           Leisure and Holidays          Widlife Tourism
## 1395 Visiting Friends and Relatives         Cultural Tourism
## 1396           Leisure and Holidays          Widlife Tourism
## 1397        Meetings and Conference         Cultural Tourism
## 1398           Leisure and Holidays         Wildlife Tourism
## 1399           Leisure and Holidays          Hunting Tourism
## 1400           Leisure and Holidays          Widlife Tourism
## 1401           Leisure and Holidays          Widlife Tourism
## 1402           Leisure and Holidays       Conference Tourism
## 1403           Leisure and Holidays            Beach Tourism
## 1404 Visiting Friends and Relatives         Wildlife Tourism
## 1405           Leisure and Holidays            Beach Tourism
## 1406           Leisure and Holidays          Widlife Tourism
## 1407           Leisure and Holidays            Beach Tourism
## 1408           Leisure and Holidays          Widlife Tourism
## 1409           Leisure and Holidays            Beach Tourism
## 1410           Leisure and Holidays          Widlife Tourism
## 1411           Leisure and Holidays          Widlife Tourism
## 1412           Leisure and Holidays         Wildlife Tourism
## 1413                       Business         Wildlife Tourism
## 1414           Leisure and Holidays          Widlife Tourism
## 1415           Leisure and Holidays            Beach Tourism
## 1416                       Business         Wildlife Tourism
## 1417           Leisure and Holidays          Widlife Tourism
## 1418           Leisure and Holidays       Conference Tourism
## 1419                       Business        Mountain Climbing
## 1420           Leisure and Holidays       Conference Tourism
## 1421           Leisure and Holidays          Widlife Tourism
## 1422 Visiting Friends and Relatives          Hunting Tourism
## 1423           Leisure and Holidays          Widlife Tourism
## 1425           Leisure and Holidays         Wildlife Tourism
## 1426           Leisure and Holidays          Widlife Tourism
## 1427           Leisure and Holidays            Beach Tourism
## 1428           Leisure and Holidays             Bird Tourism
## 1429                       Business       Conference Tourism
## 1430           Leisure and Holidays         Cultural Tourism
## 1431 Visiting Friends and Relatives            Beach Tourism
## 1432           Leisure and Holidays            Beach Tourism
## 1433           Leisure and Holidays          Widlife Tourism
## 1434        Meetings and Conference        Mountain Climbing
## 1435 Visiting Friends and Relatives             Bird Tourism
## 1437           Leisure and Holidays       Conference Tourism
## 1438           Leisure and Holidays         Wildlife Tourism
## 1439           Leisure and Holidays          Widlife Tourism
## 1440           Leisure and Holidays                 Business
## 1441           Leisure and Holidays       Conference Tourism
## 1442                       Business          Widlife Tourism
## 1443           Leisure and Holidays          Widlife Tourism
## 1444           Leisure and Holidays       Conference Tourism
## 1445 Visiting Friends and Relatives            Beach Tourism
## 1446           Leisure and Holidays          Widlife Tourism
## 1447           Leisure and Holidays            Beach Tourism
## 1448           Leisure and Holidays          Widlife Tourism
## 1449           Leisure and Holidays         Cultural Tourism
## 1450 Visiting Friends and Relatives         Wildlife Tourism
## 1451           Leisure and Holidays          Widlife Tourism
## 1452           Leisure and Holidays          Widlife Tourism
## 1453           Leisure and Holidays          Widlife Tourism
## 1454           Leisure and Holidays         Wildlife Tourism
## 1455           Leisure and Holidays         Cultural Tourism
## 1456 Visiting Friends and Relatives          Widlife Tourism
## 1457           Leisure and Holidays          Widlife Tourism
## 1458           Leisure and Holidays       Conference Tourism
## 1459           Leisure and Holidays            Beach Tourism
## 1460                       Business        Mountain Climbing
## 1461        Meetings and Conference        Mountain Climbing
## 1464           Leisure and Holidays            Beach Tourism
## 1465           Leisure and Holidays          Widlife Tourism
## 1466           Leisure and Holidays         Cultural Tourism
## 1467           Leisure and Holidays          Hunting Tourism
## 1468           Leisure and Holidays            Beach Tourism
## 1469           Leisure and Holidays          Widlife Tourism
## 1470                       Business          Hunting Tourism
## 1471           Leisure and Holidays         Wildlife Tourism
## 1472           Leisure and Holidays         Wildlife Tourism
## 1473           Leisure and Holidays            Beach Tourism
## 1474           Leisure and Holidays          Widlife Tourism
## 1476           Leisure and Holidays          Widlife Tourism
## 1477           Leisure and Holidays         Wildlife Tourism
## 1478           Leisure and Holidays            Beach Tourism
## 1479           Leisure and Holidays            Beach Tourism
## 1480        Meetings and Conference        Mountain Climbing
## 1481           Leisure and Holidays         Wildlife Tourism
## 1482           Leisure and Holidays       Conference Tourism
## 1483           Leisure and Holidays          Widlife Tourism
## 1484                       Business            Beach Tourism
## 1485        Meetings and Conference          Widlife Tourism
## 1486           Leisure and Holidays         Cultural Tourism
## 1487                   Volunteering         Wildlife Tourism
## 1488                       Business        Mountain Climbing
## 1489           Leisure and Holidays         Wildlife Tourism
## 1490           Leisure and Holidays          Hunting Tourism
## 1491           Leisure and Holidays          Widlife Tourism
## 1492 Visiting Friends and Relatives            Beach Tourism
## 1493                       Business          Widlife Tourism
## 1494        Meetings and Conference         Cultural Tourism
## 1495           Leisure and Holidays             Bird Tourism
## 1496           Leisure and Holidays            Beach Tourism
## 1497           Leisure and Holidays         Wildlife Tourism
## 1498           Leisure and Holidays          Widlife Tourism
## 1499                       Business            Beach Tourism
## 1500           Leisure and Holidays          Widlife Tourism
## 1501           Leisure and Holidays       Conference Tourism
## 1502           Leisure and Holidays         Cultural Tourism
## 1503           Leisure and Holidays          Widlife Tourism
## 1504                          Other          Hunting Tourism
## 1505           Leisure and Holidays          Widlife Tourism
## 1506 Visiting Friends and Relatives       Conference Tourism
## 1507           Leisure and Holidays       Conference Tourism
## 1509           Leisure and Holidays          Widlife Tourism
## 1510           Leisure and Holidays          Widlife Tourism
## 1511           Leisure and Holidays          Widlife Tourism
## 1512           Leisure and Holidays          Widlife Tourism
## 1514                       Business       Conference Tourism
## 1515           Leisure and Holidays          Widlife Tourism
## 1516                       Business          Hunting Tourism
## 1517        Meetings and Conference          Hunting Tourism
## 1518           Leisure and Holidays          Widlife Tourism
## 1519           Leisure and Holidays          Widlife Tourism
## 1520        Meetings and Conference          Hunting Tourism
## 1521           Leisure and Holidays          Widlife Tourism
## 1522           Leisure and Holidays            Beach Tourism
## 1524 Visiting Friends and Relatives            Beach Tourism
## 1525           Leisure and Holidays            Beach Tourism
## 1526 Visiting Friends and Relatives          Hunting Tourism
## 1527        Meetings and Conference        Mountain Climbing
## 1528           Leisure and Holidays          Widlife Tourism
## 1529           Leisure and Holidays         Wildlife Tourism
## 1530 Visiting Friends and Relatives         Cultural Tourism
## 1531        Meetings and Conference          Hunting Tourism
## 1532 Visiting Friends and Relatives         Cultural Tourism
## 1533        Meetings and Conference        Mountain Climbing
## 1534           Leisure and Holidays       Conference Tourism
## 1535           Leisure and Holidays            Beach Tourism
## 1536 Visiting Friends and Relatives            Beach Tourism
## 1537           Leisure and Holidays       Conference Tourism
## 1538           Leisure and Holidays            Beach Tourism
## 1539           Leisure and Holidays          Widlife Tourism
## 1540        Scientific and Academic          Hunting Tourism
## 1541                       Business          Hunting Tourism
## 1542                       Business       Conference Tourism
## 1543           Leisure and Holidays          Widlife Tourism
## 1544           Leisure and Holidays         Wildlife Tourism
## 1545           Leisure and Holidays          Widlife Tourism
## 1546                       Business          Widlife Tourism
## 1547           Leisure and Holidays          Widlife Tourism
## 1548           Leisure and Holidays          Widlife Tourism
## 1549           Leisure and Holidays          Widlife Tourism
## 1550           Leisure and Holidays         Wildlife Tourism
## 1551        Meetings and Conference        Mountain Climbing
## 1552           Leisure and Holidays       Conference Tourism
## 1553           Leisure and Holidays                 Business
## 1554           Leisure and Holidays            Beach Tourism
## 1555                       Business         Wildlife Tourism
## 1556           Leisure and Holidays            Beach Tourism
## 1557                       Business            Beach Tourism
## 1558 Visiting Friends and Relatives         Wildlife Tourism
## 1559                          Other          Hunting Tourism
## 1560           Leisure and Holidays          Widlife Tourism
## 1561           Leisure and Holidays         Wildlife Tourism
## 1562                       Business             Bird Tourism
## 1563           Leisure and Holidays         Cultural Tourism
## 1564                       Business         Wildlife Tourism
## 1565           Leisure and Holidays            Beach Tourism
## 1566 Visiting Friends and Relatives          Widlife Tourism
## 1567                   Volunteering       Conference Tourism
## 1568           Leisure and Holidays            Beach Tourism
## 1569           Leisure and Holidays         Wildlife Tourism
## 1570           Leisure and Holidays            Beach Tourism
## 1571 Visiting Friends and Relatives            Beach Tourism
## 1572           Leisure and Holidays          Widlife Tourism
## 1573                       Business          Widlife Tourism
## 1574           Leisure and Holidays       Conference Tourism
## 1575                   Volunteering         Wildlife Tourism
## 1576           Leisure and Holidays            Beach Tourism
## 1578           Leisure and Holidays          Widlife Tourism
## 1579           Leisure and Holidays          Widlife Tourism
## 1580           Leisure and Holidays          Widlife Tourism
## 1581 Visiting Friends and Relatives          Hunting Tourism
## 1582                          Other          Hunting Tourism
## 1583           Leisure and Holidays            Beach Tourism
## 1585           Leisure and Holidays         Cultural Tourism
## 1586           Leisure and Holidays         Cultural Tourism
## 1587           Leisure and Holidays          Widlife Tourism
## 1588           Leisure and Holidays          Widlife Tourism
## 1589           Leisure and Holidays            Beach Tourism
## 1590           Leisure and Holidays          Widlife Tourism
## 1591           Leisure and Holidays          Hunting Tourism
## 1592           Leisure and Holidays          Widlife Tourism
## 1593                       Business         Cultural Tourism
## 1594 Visiting Friends and Relatives          Hunting Tourism
## 1595           Leisure and Holidays         Wildlife Tourism
## 1596           Leisure and Holidays          Widlife Tourism
## 1597           Leisure and Holidays          Widlife Tourism
## 1598           Leisure and Holidays         Cultural Tourism
## 1599        Meetings and Conference          Widlife Tourism
## 1600                          Other          Hunting Tourism
## 1601                       Business            Beach Tourism
## 1602           Leisure and Holidays         Wildlife Tourism
## 1603           Leisure and Holidays            Beach Tourism
## 1605 Visiting Friends and Relatives            Beach Tourism
## 1606 Visiting Friends and Relatives          Widlife Tourism
## 1607                       Business            Beach Tourism
## 1608           Leisure and Holidays         Cultural Tourism
## 1609           Leisure and Holidays         Wildlife Tourism
## 1610           Leisure and Holidays            Beach Tourism
## 1611           Leisure and Holidays          Widlife Tourism
## 1612 Visiting Friends and Relatives       Conference Tourism
## 1613           Leisure and Holidays            Beach Tourism
## 1614                       Business            Beach Tourism
## 1615                       Business          Widlife Tourism
## 1616           Leisure and Holidays          Widlife Tourism
## 1617                   Volunteering          Hunting Tourism
## 1618           Leisure and Holidays          Widlife Tourism
## 1619 Visiting Friends and Relatives         Cultural Tourism
## 1620           Leisure and Holidays            Beach Tourism
## 1621 Visiting Friends and Relatives            Beach Tourism
## 1622                       Business         Wildlife Tourism
## 1623           Leisure and Holidays         Wildlife Tourism
## 1624           Leisure and Holidays          Widlife Tourism
## 1625 Visiting Friends and Relatives          Hunting Tourism
## 1626        Scientific and Academic          Widlife Tourism
## 1627           Leisure and Holidays          Widlife Tourism
## 1628           Leisure and Holidays         Wildlife Tourism
## 1629                   Volunteering          Widlife Tourism
## 1630                       Business          Widlife Tourism
## 1631 Visiting Friends and Relatives          Widlife Tourism
## 1632           Leisure and Holidays          Widlife Tourism
## 1633           Leisure and Holidays       Conference Tourism
## 1634                       Business            Beach Tourism
## 1635           Leisure and Holidays            Beach Tourism
## 1636           Leisure and Holidays         Wildlife Tourism
## 1637           Leisure and Holidays          Hunting Tourism
## 1638           Leisure and Holidays         Cultural Tourism
## 1639           Leisure and Holidays            Beach Tourism
## 1640           Leisure and Holidays         Wildlife Tourism
## 1641                       Business          Widlife Tourism
## 1642           Leisure and Holidays          Widlife Tourism
## 1643           Leisure and Holidays            Beach Tourism
## 1644           Leisure and Holidays          Widlife Tourism
## 1645           Leisure and Holidays         Cultural Tourism
## 1646           Leisure and Holidays            Beach Tourism
## 1647                          Other          Hunting Tourism
## 1648           Leisure and Holidays             Bird Tourism
## 1649           Leisure and Holidays          Widlife Tourism
## 1650           Leisure and Holidays          Widlife Tourism
## 1651                       Business       Conference Tourism
## 1652           Leisure and Holidays          Widlife Tourism
## 1653           Leisure and Holidays            Beach Tourism
## 1655           Leisure and Holidays          Widlife Tourism
## 1656 Visiting Friends and Relatives         Cultural Tourism
## 1657                          Other         Cultural Tourism
## 1658           Leisure and Holidays         Wildlife Tourism
## 1659           Leisure and Holidays            Beach Tourism
## 1660           Leisure and Holidays          Widlife Tourism
## 1661           Leisure and Holidays       Conference Tourism
## 1662           Leisure and Holidays          Widlife Tourism
## 1663           Leisure and Holidays       Conference Tourism
## 1664           Leisure and Holidays         Wildlife Tourism
## 1665           Leisure and Holidays            Beach Tourism
## 1666           Leisure and Holidays            Beach Tourism
## 1669           Leisure and Holidays          Widlife Tourism
## 1670           Leisure and Holidays       Conference Tourism
## 1671        Meetings and Conference        Mountain Climbing
## 1672           Leisure and Holidays          Widlife Tourism
## 1673           Leisure and Holidays         Wildlife Tourism
## 1674        Meetings and Conference          Widlife Tourism
## 1675           Leisure and Holidays         Wildlife Tourism
## 1676                       Business        Mountain Climbing
## 1677           Leisure and Holidays            Beach Tourism
## 1678           Leisure and Holidays         Cultural Tourism
## 1679        Meetings and Conference       Conference Tourism
## 1680           Leisure and Holidays          Widlife Tourism
## 1682           Leisure and Holidays            Beach Tourism
## 1683           Leisure and Holidays          Widlife Tourism
## 1684        Meetings and Conference       Conference Tourism
## 1685           Leisure and Holidays          Widlife Tourism
## 1686        Meetings and Conference        Mountain Climbing
## 1687           Leisure and Holidays            Beach Tourism
## 1688           Leisure and Holidays         Wildlife Tourism
## 1689                          Other            Beach Tourism
## 1690           Leisure and Holidays            Beach Tourism
## 1691           Leisure and Holidays         Wildlife Tourism
## 1692           Leisure and Holidays         Wildlife Tourism
## 1693 Visiting Friends and Relatives         Wildlife Tourism
## 1694                       Business          Hunting Tourism
## 1695           Leisure and Holidays       Conference Tourism
## 1696           Leisure and Holidays          Widlife Tourism
## 1697           Leisure and Holidays          Widlife Tourism
## 1698           Leisure and Holidays          Widlife Tourism
## 1700           Leisure and Holidays          Widlife Tourism
## 1701 Visiting Friends and Relatives          Hunting Tourism
## 1702           Leisure and Holidays            Beach Tourism
## 1703           Leisure and Holidays          Widlife Tourism
## 1704           Leisure and Holidays            Beach Tourism
## 1705 Visiting Friends and Relatives         Cultural Tourism
## 1706           Leisure and Holidays          Widlife Tourism
## 1707           Leisure and Holidays            Beach Tourism
## 1708           Leisure and Holidays         Cultural Tourism
## 1709                       Business         Wildlife Tourism
## 1710           Leisure and Holidays          Widlife Tourism
## 1711                       Business            Beach Tourism
## 1712           Leisure and Holidays          Widlife Tourism
## 1713        Meetings and Conference        Mountain Climbing
## 1714           Leisure and Holidays            Beach Tourism
## 1715                       Business          Widlife Tourism
## 1716           Leisure and Holidays            Beach Tourism
## 1717           Leisure and Holidays          Widlife Tourism
## 1718           Leisure and Holidays          Widlife Tourism
## 1719           Leisure and Holidays          Widlife Tourism
## 1721           Leisure and Holidays         Wildlife Tourism
## 1722                   Volunteering            Beach Tourism
## 1724           Leisure and Holidays          Widlife Tourism
## 1725           Leisure and Holidays          Widlife Tourism
## 1726           Leisure and Holidays            Beach Tourism
## 1727           Leisure and Holidays         Cultural Tourism
## 1728           Leisure and Holidays          Widlife Tourism
## 1729           Leisure and Holidays            Beach Tourism
## 1730                       Business         Wildlife Tourism
## 1731           Leisure and Holidays          Widlife Tourism
## 1732           Leisure and Holidays       Conference Tourism
## 1733           Leisure and Holidays            Beach Tourism
## 1734        Scientific and Academic            Beach Tourism
## 1735           Leisure and Holidays          Widlife Tourism
## 1736        Scientific and Academic          Widlife Tourism
## 1737           Leisure and Holidays            Beach Tourism
## 1738           Leisure and Holidays          Widlife Tourism
## 1739           Leisure and Holidays            Beach Tourism
## 1740                       Business            Beach Tourism
## 1741        Meetings and Conference        Mountain Climbing
## 1742                       Business       Conference Tourism
## 1743           Leisure and Holidays          Widlife Tourism
## 1744           Leisure and Holidays                 Business
## 1745           Leisure and Holidays            Beach Tourism
## 1746           Leisure and Holidays          Widlife Tourism
## 1747        Meetings and Conference       Conference Tourism
## 1749           Leisure and Holidays         Wildlife Tourism
## 1750                       Business          Widlife Tourism
## 1751           Leisure and Holidays          Widlife Tourism
## 1752                       Business          Hunting Tourism
## 1753 Visiting Friends and Relatives            Beach Tourism
## 1754           Leisure and Holidays         Wildlife Tourism
## 1755           Leisure and Holidays       Conference Tourism
## 1756 Visiting Friends and Relatives            Beach Tourism
## 1757                       Business         Wildlife Tourism
## 1758        Meetings and Conference          Widlife Tourism
## 1759           Leisure and Holidays          Widlife Tourism
## 1761           Leisure and Holidays          Widlife Tourism
## 1762        Meetings and Conference       Conference Tourism
## 1763 Visiting Friends and Relatives         Cultural Tourism
## 1764           Leisure and Holidays       Conference Tourism
## 1765           Leisure and Holidays          Widlife Tourism
## 1766           Leisure and Holidays         Wildlife Tourism
## 1769           Leisure and Holidays       Conference Tourism
## 1770           Leisure and Holidays          Widlife Tourism
## 1771           Leisure and Holidays          Widlife Tourism
## 1773           Leisure and Holidays          Widlife Tourism
## 1774 Visiting Friends and Relatives            Beach Tourism
## 1775           Leisure and Holidays          Widlife Tourism
## 1776        Meetings and Conference       Conference Tourism
## 1778           Leisure and Holidays          Widlife Tourism
## 1779           Leisure and Holidays          Widlife Tourism
## 1780                   Volunteering       Conference Tourism
## 1781           Leisure and Holidays          Widlife Tourism
## 1782           Leisure and Holidays            Beach Tourism
## 1783           Leisure and Holidays          Widlife Tourism
## 1784                       Business            Beach Tourism
## 1785           Leisure and Holidays          Widlife Tourism
## 1786           Leisure and Holidays          Widlife Tourism
## 1787           Leisure and Holidays            Beach Tourism
## 1788           Leisure and Holidays          Widlife Tourism
## 1789 Visiting Friends and Relatives         Wildlife Tourism
## 1790                   Volunteering          Hunting Tourism
## 1791                          Other            Beach Tourism
## 1792                       Business            Beach Tourism
## 1793           Leisure and Holidays            Beach Tourism
## 1794           Leisure and Holidays          Widlife Tourism
## 1795        Meetings and Conference          Widlife Tourism
## 1796           Leisure and Holidays          Widlife Tourism
## 1797           Leisure and Holidays       Conference Tourism
## 1798           Leisure and Holidays       Conference Tourism
## 1799           Leisure and Holidays            Beach Tourism
## 1800 Visiting Friends and Relatives          Hunting Tourism
## 1801           Leisure and Holidays       Conference Tourism
## 1802 Visiting Friends and Relatives          Hunting Tourism
## 1803           Leisure and Holidays          Widlife Tourism
## 1804           Leisure and Holidays       Conference Tourism
## 1805 Visiting Friends and Relatives          Hunting Tourism
## 1806 Visiting Friends and Relatives          Hunting Tourism
## 1807        Meetings and Conference        Mountain Climbing
## 1808           Leisure and Holidays          Widlife Tourism
## 1809 Visiting Friends and Relatives          Widlife Tourism
## 1810           Leisure and Holidays            Beach Tourism
## 1811           Leisure and Holidays                 Business
## 1812           Leisure and Holidays         Wildlife Tourism
## 1813           Leisure and Holidays          Widlife Tourism
## 1814                       Business          Widlife Tourism
## 1815                       Business        Mountain Climbing
## 1816 Visiting Friends and Relatives          Hunting Tourism
## 1817                       Business          Hunting Tourism
## 1818                       Business            Beach Tourism
## 1819           Leisure and Holidays          Widlife Tourism
## 1820           Leisure and Holidays            Beach Tourism
## 1821           Leisure and Holidays          Widlife Tourism
## 1822           Leisure and Holidays          Widlife Tourism
## 1823           Leisure and Holidays          Widlife Tourism
## 1824        Meetings and Conference            Beach Tourism
## 1825           Leisure and Holidays            Beach Tourism
## 1826           Leisure and Holidays                 Business
## 1827           Leisure and Holidays            Beach Tourism
## 1828        Scientific and Academic          Widlife Tourism
## 1829           Leisure and Holidays          Widlife Tourism
## 1830           Leisure and Holidays          Widlife Tourism
## 1831        Meetings and Conference        Mountain Climbing
## 1832           Leisure and Holidays            Beach Tourism
## 1833           Leisure and Holidays         Wildlife Tourism
## 1834           Leisure and Holidays         Cultural Tourism
## 1835           Leisure and Holidays          Widlife Tourism
## 1836        Meetings and Conference        Mountain Climbing
## 1837           Leisure and Holidays          Widlife Tourism
## 1838 Visiting Friends and Relatives         Cultural Tourism
## 1839           Leisure and Holidays       Conference Tourism
## 1840           Leisure and Holidays          Widlife Tourism
## 1841                          Other       Conference Tourism
## 1842                   Volunteering         Cultural Tourism
## 1843           Leisure and Holidays          Widlife Tourism
## 1844           Leisure and Holidays         Wildlife Tourism
## 1845                       Business            Beach Tourism
## 1846           Leisure and Holidays          Widlife Tourism
## 1847           Leisure and Holidays          Widlife Tourism
## 1848           Leisure and Holidays         Cultural Tourism
## 1849 Visiting Friends and Relatives         Cultural Tourism
## 1850           Leisure and Holidays            Beach Tourism
## 1851           Leisure and Holidays          Hunting Tourism
## 1852           Leisure and Holidays          Widlife Tourism
## 1853           Leisure and Holidays          Widlife Tourism
## 1854 Visiting Friends and Relatives         Cultural Tourism
## 1855           Leisure and Holidays         Wildlife Tourism
## 1856           Leisure and Holidays          Widlife Tourism
## 1857           Leisure and Holidays          Widlife Tourism
## 1858           Leisure and Holidays            Beach Tourism
## 1859           Leisure and Holidays         Wildlife Tourism
## 1860           Leisure and Holidays       Conference Tourism
## 1861           Leisure and Holidays          Widlife Tourism
## 1862           Leisure and Holidays          Widlife Tourism
## 1863           Leisure and Holidays          Widlife Tourism
## 1864                       Business          Widlife Tourism
## 1865           Leisure and Holidays          Widlife Tourism
## 1866           Leisure and Holidays            Beach Tourism
## 1868           Leisure and Holidays            Beach Tourism
## 1869           Leisure and Holidays            Beach Tourism
## 1870        Meetings and Conference       Conference Tourism
## 1871           Leisure and Holidays          Widlife Tourism
## 1872           Leisure and Holidays          Widlife Tourism
## 1873           Leisure and Holidays          Widlife Tourism
## 1874           Leisure and Holidays            Beach Tourism
## 1875           Leisure and Holidays         Wildlife Tourism
## 1876           Leisure and Holidays            Beach Tourism
## 1877 Visiting Friends and Relatives         Cultural Tourism
## 1878           Leisure and Holidays         Wildlife Tourism
## 1879           Leisure and Holidays            Beach Tourism
## 1880        Meetings and Conference          Hunting Tourism
## 1881           Leisure and Holidays          Widlife Tourism
## 1882                       Business        Mountain Climbing
## 1883           Leisure and Holidays            Beach Tourism
## 1884           Leisure and Holidays          Widlife Tourism
## 1885           Leisure and Holidays          Widlife Tourism
## 1886           Leisure and Holidays            Beach Tourism
## 1887 Visiting Friends and Relatives         Cultural Tourism
## 1888           Leisure and Holidays       Conference Tourism
## 1889           Leisure and Holidays          Widlife Tourism
## 1890 Visiting Friends and Relatives            Beach Tourism
## 1891        Meetings and Conference        Mountain Climbing
## 1892           Leisure and Holidays          Widlife Tourism
## 1893 Visiting Friends and Relatives            Beach Tourism
## 1894           Leisure and Holidays       Conference Tourism
## 1895                       Business          Hunting Tourism
## 1896                       Business         Wildlife Tourism
## 1897           Leisure and Holidays            Beach Tourism
## 1898 Visiting Friends and Relatives          Hunting Tourism
## 1899        Meetings and Conference        Mountain Climbing
## 1900           Leisure and Holidays         Cultural Tourism
## 1901           Leisure and Holidays            Beach Tourism
## 1902           Leisure and Holidays          Widlife Tourism
## 1903           Leisure and Holidays            Beach Tourism
## 1904 Visiting Friends and Relatives          Hunting Tourism
## 1906           Leisure and Holidays          Hunting Tourism
## 1907 Visiting Friends and Relatives          Hunting Tourism
## 1908                       Business          Widlife Tourism
## 1909           Leisure and Holidays          Widlife Tourism
## 1910           Leisure and Holidays            Beach Tourism
## 1911           Leisure and Holidays          Widlife Tourism
## 1912                       Business         Wildlife Tourism
## 1913        Meetings and Conference         Cultural Tourism
## 1914        Scientific and Academic        Mountain Climbing
## 1915                          Other            Beach Tourism
## 1916           Leisure and Holidays          Widlife Tourism
## 1917           Leisure and Holidays          Widlife Tourism
## 1918                          Other          Hunting Tourism
## 1919           Leisure and Holidays         Cultural Tourism
## 1920        Meetings and Conference          Hunting Tourism
## 1921 Visiting Friends and Relatives          Widlife Tourism
## 1922 Visiting Friends and Relatives          Hunting Tourism
## 1923           Leisure and Holidays          Widlife Tourism
## 1924                       Business         Wildlife Tourism
## 1926 Visiting Friends and Relatives         Cultural Tourism
## 1927        Meetings and Conference       Conference Tourism
## 1928           Leisure and Holidays          Hunting Tourism
## 1929           Leisure and Holidays            Beach Tourism
## 1930           Leisure and Holidays            Beach Tourism
## 1931           Leisure and Holidays            Beach Tourism
## 1932                       Business         Wildlife Tourism
## 1933           Leisure and Holidays            Beach Tourism
## 1934           Leisure and Holidays          Widlife Tourism
## 1935           Leisure and Holidays          Widlife Tourism
## 1936        Scientific and Academic         Wildlife Tourism
## 1937           Leisure and Holidays          Widlife Tourism
## 1938           Leisure and Holidays            Beach Tourism
## 1939           Leisure and Holidays        Mountain Climbing
## 1941           Leisure and Holidays            Beach Tourism
## 1943           Leisure and Holidays          Widlife Tourism
## 1944           Leisure and Holidays          Widlife Tourism
## 1945           Leisure and Holidays          Widlife Tourism
## 1946        Meetings and Conference          Widlife Tourism
## 1947           Leisure and Holidays         Wildlife Tourism
## 1948        Scientific and Academic          Hunting Tourism
## 1949           Leisure and Holidays          Widlife Tourism
## 1950           Leisure and Holidays          Widlife Tourism
## 1951        Meetings and Conference          Hunting Tourism
## 1952           Leisure and Holidays         Wildlife Tourism
## 1953           Leisure and Holidays         Wildlife Tourism
## 1954           Leisure and Holidays            Beach Tourism
## 1955           Leisure and Holidays          Widlife Tourism
## 1956           Leisure and Holidays       Conference Tourism
## 1957           Leisure and Holidays                 Business
## 1958 Visiting Friends and Relatives            Beach Tourism
## 1959        Meetings and Conference          Widlife Tourism
## 1960           Leisure and Holidays            Beach Tourism
## 1961           Leisure and Holidays            Beach Tourism
## 1962 Visiting Friends and Relatives         Cultural Tourism
## 1963           Leisure and Holidays         Wildlife Tourism
## 1964 Visiting Friends and Relatives          Hunting Tourism
## 1965           Leisure and Holidays          Widlife Tourism
## 1966           Leisure and Holidays            Beach Tourism
## 1967           Leisure and Holidays            Beach Tourism
## 1968                       Business          Hunting Tourism
## 1969           Leisure and Holidays         Wildlife Tourism
## 1970 Visiting Friends and Relatives         Cultural Tourism
## 1971                   Volunteering          Hunting Tourism
## 1972 Visiting Friends and Relatives         Cultural Tourism
## 1973        Meetings and Conference       Conference Tourism
## 1974 Visiting Friends and Relatives         Cultural Tourism
## 1975           Leisure and Holidays          Widlife Tourism
## 1977                          Other         Cultural Tourism
## 1979           Leisure and Holidays            Beach Tourism
## 1980        Meetings and Conference        Mountain Climbing
## 1981 Visiting Friends and Relatives            Beach Tourism
## 1982 Visiting Friends and Relatives          Hunting Tourism
## 1983           Leisure and Holidays          Hunting Tourism
## 1984           Leisure and Holidays         Cultural Tourism
## 1985                       Business            Beach Tourism
## 1986           Leisure and Holidays         Wildlife Tourism
## 1987           Leisure and Holidays            Beach Tourism
## 1988                       Business         Cultural Tourism
## 1989           Leisure and Holidays         Wildlife Tourism
## 1990           Leisure and Holidays          Widlife Tourism
## 1991           Leisure and Holidays         Wildlife Tourism
## 1992           Leisure and Holidays            Beach Tourism
## 1993        Meetings and Conference        Mountain Climbing
## 1994           Leisure and Holidays         Wildlife Tourism
## 1995           Leisure and Holidays         Wildlife Tourism
## 1996 Visiting Friends and Relatives         Wildlife Tourism
## 1997        Meetings and Conference         Cultural Tourism
## 1998           Leisure and Holidays       Conference Tourism
## 1999           Leisure and Holidays         Wildlife Tourism
## 2000           Leisure and Holidays          Widlife Tourism
## 2001           Leisure and Holidays          Widlife Tourism
## 2002        Meetings and Conference          Widlife Tourism
## 2003 Visiting Friends and Relatives            Beach Tourism
## 2004           Leisure and Holidays          Widlife Tourism
## 2005           Leisure and Holidays         Wildlife Tourism
## 2006                       Business        Mountain Climbing
## 2007           Leisure and Holidays          Widlife Tourism
## 2008 Visiting Friends and Relatives          Hunting Tourism
## 2009 Visiting Friends and Relatives          Hunting Tourism
## 2010           Leisure and Holidays            Beach Tourism
## 2011        Scientific and Academic       Conference Tourism
## 2013           Leisure and Holidays          Widlife Tourism
## 2015           Leisure and Holidays       Conference Tourism
## 2016           Leisure and Holidays            Beach Tourism
## 2017           Leisure and Holidays          Hunting Tourism
## 2018 Visiting Friends and Relatives          Widlife Tourism
## 2019           Leisure and Holidays          Widlife Tourism
## 2020           Leisure and Holidays                 Business
## 2021           Leisure and Holidays          Widlife Tourism
## 2022           Leisure and Holidays            Beach Tourism
## 2023           Leisure and Holidays          Widlife Tourism
## 2024                       Business          Widlife Tourism
## 2025           Leisure and Holidays          Widlife Tourism
## 2026                          Other          Widlife Tourism
## 2027                       Business          Widlife Tourism
## 2028           Leisure and Holidays            Beach Tourism
## 2029        Meetings and Conference       Conference Tourism
## 2030                       Business          Hunting Tourism
## 2031                       Business         Wildlife Tourism
## 2032 Visiting Friends and Relatives          Hunting Tourism
## 2033                       Business          Hunting Tourism
## 2034 Visiting Friends and Relatives          Widlife Tourism
## 2035 Visiting Friends and Relatives            Beach Tourism
## 2036           Leisure and Holidays            Beach Tourism
## 2038           Leisure and Holidays             Bird Tourism
## 2039           Leisure and Holidays         Wildlife Tourism
## 2040 Visiting Friends and Relatives            Beach Tourism
## 2041 Visiting Friends and Relatives         Cultural Tourism
## 2042           Leisure and Holidays          Widlife Tourism
## 2043 Visiting Friends and Relatives            Beach Tourism
## 2044           Leisure and Holidays          Widlife Tourism
## 2045           Leisure and Holidays         Wildlife Tourism
## 2046 Visiting Friends and Relatives            Beach Tourism
## 2047           Leisure and Holidays         Wildlife Tourism
## 2048           Leisure and Holidays          Widlife Tourism
## 2049           Leisure and Holidays          Widlife Tourism
## 2050                       Business          Hunting Tourism
## 2052           Leisure and Holidays       Conference Tourism
## 2053           Leisure and Holidays          Widlife Tourism
## 2055           Leisure and Holidays          Widlife Tourism
## 2056                       Business         Wildlife Tourism
## 2057           Leisure and Holidays         Cultural Tourism
## 2058           Leisure and Holidays       Conference Tourism
## 2059           Leisure and Holidays         Wildlife Tourism
## 2061                       Business          Widlife Tourism
## 2062           Leisure and Holidays          Widlife Tourism
## 2063           Leisure and Holidays          Widlife Tourism
## 2064 Visiting Friends and Relatives         Cultural Tourism
## 2065 Visiting Friends and Relatives          Widlife Tourism
## 2067           Leisure and Holidays            Beach Tourism
## 2068        Meetings and Conference          Widlife Tourism
## 2069                       Business          Widlife Tourism
## 2071                       Business          Hunting Tourism
## 2072           Leisure and Holidays            Beach Tourism
## 2073           Leisure and Holidays          Widlife Tourism
## 2074                       Business         Wildlife Tourism
## 2075           Leisure and Holidays         Wildlife Tourism
## 2076           Leisure and Holidays            Beach Tourism
## 2077           Leisure and Holidays       Conference Tourism
## 2078 Visiting Friends and Relatives         Cultural Tourism
## 2079           Leisure and Holidays            Beach Tourism
## 2080           Leisure and Holidays          Widlife Tourism
## 2081        Meetings and Conference        Mountain Climbing
## 2082 Visiting Friends and Relatives          Hunting Tourism
## 2083           Leisure and Holidays          Widlife Tourism
## 2084        Meetings and Conference          Widlife Tourism
## 2085           Leisure and Holidays            Beach Tourism
## 2086           Leisure and Holidays         Wildlife Tourism
## 2087                       Business          Hunting Tourism
## 2088                       Business          Hunting Tourism
## 2089           Leisure and Holidays         Wildlife Tourism
## 2090                          Other       Conference Tourism
## 2092        Meetings and Conference        Mountain Climbing
## 2094                       Business         Wildlife Tourism
## 2095                       Business       Conference Tourism
## 2096                   Volunteering       Conference Tourism
## 2098           Leisure and Holidays          Widlife Tourism
## 2099           Leisure and Holidays            Beach Tourism
## 2100           Leisure and Holidays          Widlife Tourism
## 2101 Visiting Friends and Relatives         Cultural Tourism
## 2102           Leisure and Holidays            Beach Tourism
## 2103 Visiting Friends and Relatives          Hunting Tourism
## 2104           Leisure and Holidays       Conference Tourism
## 2105                       Business          Hunting Tourism
## 2106                       Business          Widlife Tourism
## 2107 Visiting Friends and Relatives          Hunting Tourism
## 2108           Leisure and Holidays          Widlife Tourism
## 2109           Leisure and Holidays            Beach Tourism
## 2110           Leisure and Holidays          Widlife Tourism
## 2111                       Business         Wildlife Tourism
## 2112                       Business          Widlife Tourism
## 2113           Leisure and Holidays       Conference Tourism
## 2114                       Business          Widlife Tourism
## 2115 Visiting Friends and Relatives         Cultural Tourism
## 2116           Leisure and Holidays       Conference Tourism
## 2117           Leisure and Holidays         Wildlife Tourism
## 2119           Leisure and Holidays          Widlife Tourism
## 2120           Leisure and Holidays          Widlife Tourism
## 2121        Meetings and Conference        Mountain Climbing
## 2122           Leisure and Holidays            Beach Tourism
## 2123           Leisure and Holidays       Conference Tourism
## 2126           Leisure and Holidays            Beach Tourism
## 2127           Leisure and Holidays          Widlife Tourism
## 2128           Leisure and Holidays         Wildlife Tourism
## 2129                   Volunteering          Hunting Tourism
## 2130                       Business            Beach Tourism
## 2131           Leisure and Holidays       Conference Tourism
## 2132        Meetings and Conference        Mountain Climbing
## 2133 Visiting Friends and Relatives            Beach Tourism
## 2134 Visiting Friends and Relatives          Hunting Tourism
## 2135                       Business            Beach Tourism
## 2136           Leisure and Holidays          Widlife Tourism
## 2137           Leisure and Holidays       Conference Tourism
## 2138                       Business          Widlife Tourism
## 2140 Visiting Friends and Relatives          Hunting Tourism
## 2141           Leisure and Holidays            Beach Tourism
## 2142           Leisure and Holidays            Beach Tourism
## 2143 Visiting Friends and Relatives            Beach Tourism
## 2144           Leisure and Holidays            Beach Tourism
## 2145           Leisure and Holidays         Cultural Tourism
## 2146           Leisure and Holidays            Beach Tourism
## 2147           Leisure and Holidays          Widlife Tourism
## 2148           Leisure and Holidays          Widlife Tourism
## 2149           Leisure and Holidays          Widlife Tourism
## 2150           Leisure and Holidays          Widlife Tourism
## 2151           Leisure and Holidays            Beach Tourism
## 2152           Leisure and Holidays          Widlife Tourism
## 2154                       Business          Hunting Tourism
## 2155           Leisure and Holidays          Widlife Tourism
## 2157           Leisure and Holidays          Widlife Tourism
## 2158 Visiting Friends and Relatives          Widlife Tourism
## 2160           Leisure and Holidays Diving and Sport Fishing
## 2161           Leisure and Holidays         Wildlife Tourism
## 2163           Leisure and Holidays         Wildlife Tourism
## 2164           Leisure and Holidays          Hunting Tourism
## 2165                       Business          Hunting Tourism
## 2166           Leisure and Holidays          Widlife Tourism
## 2167           Leisure and Holidays          Widlife Tourism
## 2169           Leisure and Holidays       Conference Tourism
## 2170           Leisure and Holidays            Beach Tourism
## 2171                          Other          Hunting Tourism
## 2172           Leisure and Holidays         Cultural Tourism
## 2174           Leisure and Holidays          Widlife Tourism
## 2175           Leisure and Holidays         Cultural Tourism
## 2176           Leisure and Holidays          Widlife Tourism
## 2177           Leisure and Holidays         Wildlife Tourism
## 2178 Visiting Friends and Relatives            Beach Tourism
## 2179                       Business          Widlife Tourism
## 2180           Leisure and Holidays          Widlife Tourism
## 2181           Leisure and Holidays         Cultural Tourism
## 2182                       Business            Beach Tourism
## 2183           Leisure and Holidays            Beach Tourism
## 2184                          Other          Widlife Tourism
## 2185                       Business          Widlife Tourism
## 2186                       Business          Hunting Tourism
## 2187           Leisure and Holidays            Beach Tourism
## 2188           Leisure and Holidays          Widlife Tourism
## 2189           Leisure and Holidays          Widlife Tourism
## 2190           Leisure and Holidays          Widlife Tourism
## 2192           Leisure and Holidays         Wildlife Tourism
## 2193 Visiting Friends and Relatives            Beach Tourism
## 2194           Leisure and Holidays         Wildlife Tourism
## 2195        Meetings and Conference          Hunting Tourism
## 2196           Leisure and Holidays       Conference Tourism
## 2197        Meetings and Conference        Mountain Climbing
## 2198           Leisure and Holidays            Beach Tourism
## 2199 Visiting Friends and Relatives            Beach Tourism
## 2200           Leisure and Holidays          Widlife Tourism
## 2201        Meetings and Conference            Beach Tourism
## 2202           Leisure and Holidays         Cultural Tourism
## 2203           Leisure and Holidays         Wildlife Tourism
## 2204                       Business          Widlife Tourism
## 2205                       Business        Mountain Climbing
## 2206           Leisure and Holidays          Widlife Tourism
## 2207           Leisure and Holidays       Conference Tourism
## 2208        Scientific and Academic            Beach Tourism
## 2209           Leisure and Holidays            Beach Tourism
## 2210                       Business          Hunting Tourism
## 2211 Visiting Friends and Relatives            Beach Tourism
## 2212           Leisure and Holidays         Cultural Tourism
## 2213           Leisure and Holidays          Widlife Tourism
## 2214           Leisure and Holidays            Beach Tourism
## 2215           Leisure and Holidays            Beach Tourism
## 2216                          Other            Beach Tourism
## 2217           Leisure and Holidays          Widlife Tourism
## 2218                       Business            Beach Tourism
## 2219           Leisure and Holidays          Widlife Tourism
## 2220           Leisure and Holidays         Wildlife Tourism
## 2221           Leisure and Holidays            Beach Tourism
## 2222        Meetings and Conference          Hunting Tourism
## 2223           Leisure and Holidays          Widlife Tourism
## 2224           Leisure and Holidays         Wildlife Tourism
## 2225 Visiting Friends and Relatives         Cultural Tourism
## 2226           Leisure and Holidays            Beach Tourism
## 2227           Leisure and Holidays         Wildlife Tourism
## 2228           Leisure and Holidays          Widlife Tourism
## 2229           Leisure and Holidays            Beach Tourism
## 2230        Meetings and Conference          Hunting Tourism
## 2232           Leisure and Holidays            Beach Tourism
## 2233           Leisure and Holidays          Widlife Tourism
## 2234           Leisure and Holidays          Widlife Tourism
## 2235                       Business            Beach Tourism
## 2236                       Business         Wildlife Tourism
## 2237                       Business         Wildlife Tourism
## 2239           Leisure and Holidays          Widlife Tourism
## 2240           Leisure and Holidays         Wildlife Tourism
## 2241           Leisure and Holidays       Conference Tourism
## 2242           Leisure and Holidays          Widlife Tourism
## 2243 Visiting Friends and Relatives            Beach Tourism
## 2244           Leisure and Holidays         Wildlife Tourism
## 2245           Leisure and Holidays            Beach Tourism
## 2246           Leisure and Holidays       Conference Tourism
## 2247 Visiting Friends and Relatives         Cultural Tourism
## 2248           Leisure and Holidays          Widlife Tourism
## 2249        Meetings and Conference        Mountain Climbing
## 2250           Leisure and Holidays          Widlife Tourism
## 2252 Visiting Friends and Relatives         Cultural Tourism
## 2253                       Business          Widlife Tourism
## 2254        Meetings and Conference        Mountain Climbing
## 2255        Meetings and Conference            Beach Tourism
## 2256           Leisure and Holidays            Beach Tourism
## 2257                       Business            Beach Tourism
## 2258           Leisure and Holidays            Beach Tourism
## 2260           Leisure and Holidays          Widlife Tourism
## 2261 Visiting Friends and Relatives         Wildlife Tourism
## 2262                       Business          Hunting Tourism
## 2263           Leisure and Holidays          Widlife Tourism
## 2264        Meetings and Conference        Mountain Climbing
## 2265           Leisure and Holidays         Cultural Tourism
## 2266           Leisure and Holidays            Beach Tourism
## 2267           Leisure and Holidays          Widlife Tourism
## 2268 Visiting Friends and Relatives          Widlife Tourism
## 2269           Leisure and Holidays          Widlife Tourism
## 2270           Leisure and Holidays         Cultural Tourism
## 2271           Leisure and Holidays            Beach Tourism
## 2272                          Other       Conference Tourism
## 2273           Leisure and Holidays          Widlife Tourism
## 2274           Leisure and Holidays       Conference Tourism
## 2275           Leisure and Holidays          Widlife Tourism
## 2276                       Business                 Business
## 2277           Leisure and Holidays            Beach Tourism
## 2278 Visiting Friends and Relatives            Beach Tourism
## 2279                       Business          Widlife Tourism
## 2280           Leisure and Holidays          Widlife Tourism
## 2281           Leisure and Holidays         Wildlife Tourism
## 2282           Leisure and Holidays         Cultural Tourism
## 2283           Leisure and Holidays       Conference Tourism
## 2284           Leisure and Holidays          Widlife Tourism
## 2285           Leisure and Holidays       Conference Tourism
## 2286           Leisure and Holidays          Widlife Tourism
## 2287 Visiting Friends and Relatives         Cultural Tourism
## 2288           Leisure and Holidays            Beach Tourism
## 2289        Meetings and Conference        Mountain Climbing
## 2290           Leisure and Holidays          Widlife Tourism
## 2291                       Business            Beach Tourism
## 2292           Leisure and Holidays          Widlife Tourism
## 2293           Leisure and Holidays            Beach Tourism
## 2294                       Business       Conference Tourism
## 2295        Meetings and Conference        Mountain Climbing
## 2297           Leisure and Holidays         Wildlife Tourism
## 2298           Leisure and Holidays          Widlife Tourism
## 2299                       Business         Wildlife Tourism
## 2300           Leisure and Holidays          Widlife Tourism
## 2301           Leisure and Holidays          Widlife Tourism
## 2302           Leisure and Holidays          Widlife Tourism
## 2303           Leisure and Holidays          Widlife Tourism
## 2304           Leisure and Holidays          Widlife Tourism
## 2305           Leisure and Holidays            Beach Tourism
## 2306           Leisure and Holidays            Beach Tourism
## 2307           Leisure and Holidays          Widlife Tourism
## 2308           Leisure and Holidays         Wildlife Tourism
## 2309           Leisure and Holidays          Widlife Tourism
## 2310           Leisure and Holidays            Beach Tourism
## 2311           Leisure and Holidays            Beach Tourism
## 2312           Leisure and Holidays            Beach Tourism
## 2313           Leisure and Holidays            Beach Tourism
## 2314           Leisure and Holidays          Widlife Tourism
## 2315           Leisure and Holidays            Beach Tourism
## 2316           Leisure and Holidays          Widlife Tourism
## 2317           Leisure and Holidays          Widlife Tourism
## 2318           Leisure and Holidays         Wildlife Tourism
## 2319           Leisure and Holidays            Beach Tourism
## 2321           Leisure and Holidays          Widlife Tourism
## 2322           Leisure and Holidays       Conference Tourism
## 2323           Leisure and Holidays       Conference Tourism
## 2324                       Business            Beach Tourism
## 2325 Visiting Friends and Relatives         Cultural Tourism
## 2326           Leisure and Holidays         Cultural Tourism
## 2327           Leisure and Holidays          Widlife Tourism
## 2328           Leisure and Holidays          Widlife Tourism
## 2329           Leisure and Holidays                 Business
## 2330           Leisure and Holidays          Widlife Tourism
## 2331           Leisure and Holidays            Beach Tourism
## 2332           Leisure and Holidays            Beach Tourism
## 2333           Leisure and Holidays         Wildlife Tourism
## 2334           Leisure and Holidays          Widlife Tourism
## 2336           Leisure and Holidays                 Business
## 2337           Leisure and Holidays          Widlife Tourism
## 2338           Leisure and Holidays         Cultural Tourism
## 2339           Leisure and Holidays          Widlife Tourism
## 2340           Leisure and Holidays          Widlife Tourism
## 2341           Leisure and Holidays       Conference Tourism
## 2342           Leisure and Holidays          Widlife Tourism
## 2343           Leisure and Holidays         Cultural Tourism
## 2344 Visiting Friends and Relatives         Cultural Tourism
## 2345           Leisure and Holidays            Beach Tourism
## 2346 Visiting Friends and Relatives            Beach Tourism
## 2347           Leisure and Holidays       Conference Tourism
## 2348           Leisure and Holidays          Widlife Tourism
## 2349           Leisure and Holidays          Widlife Tourism
## 2350                       Business                 Business
## 2351                       Business            Beach Tourism
## 2352           Leisure and Holidays            Beach Tourism
## 2354        Meetings and Conference         Cultural Tourism
## 2355           Leisure and Holidays          Widlife Tourism
## 2356        Meetings and Conference          Widlife Tourism
## 2357        Meetings and Conference       Conference Tourism
## 2358           Leisure and Holidays         Wildlife Tourism
## 2359 Visiting Friends and Relatives            Beach Tourism
## 2360           Leisure and Holidays            Beach Tourism
## 2361        Meetings and Conference       Conference Tourism
## 2362           Leisure and Holidays          Widlife Tourism
## 2363           Leisure and Holidays          Widlife Tourism
## 2364           Leisure and Holidays          Widlife Tourism
## 2365           Leisure and Holidays            Beach Tourism
## 2366           Leisure and Holidays          Widlife Tourism
## 2367                          Other          Hunting Tourism
## 2368           Leisure and Holidays          Widlife Tourism
## 2369        Meetings and Conference        Mountain Climbing
## 2370           Leisure and Holidays       Conference Tourism
## 2371           Leisure and Holidays            Beach Tourism
## 2372           Leisure and Holidays       Conference Tourism
## 2373           Leisure and Holidays         Cultural Tourism
## 2374                   Volunteering         Cultural Tourism
## 2375           Leisure and Holidays            Beach Tourism
## 2376        Meetings and Conference       Conference Tourism
## 2377           Leisure and Holidays          Widlife Tourism
## 2378           Leisure and Holidays          Widlife Tourism
## 2379                   Volunteering          Widlife Tourism
## 2380           Leisure and Holidays       Conference Tourism
## 2381           Leisure and Holidays          Widlife Tourism
## 2382 Visiting Friends and Relatives       Conference Tourism
## 2383                       Business            Beach Tourism
## 2384                       Business          Widlife Tourism
## 2385                       Business          Widlife Tourism
## 2386           Leisure and Holidays         Wildlife Tourism
## 2387                       Business          Widlife Tourism
## 2388           Leisure and Holidays          Widlife Tourism
## 2389           Leisure and Holidays          Widlife Tourism
## 2390           Leisure and Holidays         Wildlife Tourism
## 2391                       Business         Wildlife Tourism
## 2392           Leisure and Holidays       Conference Tourism
## 2393           Leisure and Holidays          Widlife Tourism
## 2394                          Other          Hunting Tourism
## 2395           Leisure and Holidays       Conference Tourism
## 2396           Leisure and Holidays          Hunting Tourism
## 2397           Leisure and Holidays         Wildlife Tourism
## 2398        Meetings and Conference        Mountain Climbing
## 2399           Leisure and Holidays         Wildlife Tourism
## 2401 Visiting Friends and Relatives         Cultural Tourism
## 2402 Visiting Friends and Relatives         Cultural Tourism
## 2403                       Business          Widlife Tourism
## 2404           Leisure and Holidays          Widlife Tourism
## 2405 Visiting Friends and Relatives          Hunting Tourism
## 2406           Leisure and Holidays          Widlife Tourism
## 2407           Leisure and Holidays            Beach Tourism
## 2408           Leisure and Holidays         Wildlife Tourism
## 2409           Leisure and Holidays          Widlife Tourism
## 2410           Leisure and Holidays          Widlife Tourism
## 2411 Visiting Friends and Relatives          Widlife Tourism
## 2412 Visiting Friends and Relatives            Beach Tourism
## 2413           Leisure and Holidays            Beach Tourism
## 2414           Leisure and Holidays            Beach Tourism
## 2417           Leisure and Holidays       Conference Tourism
## 2418           Leisure and Holidays             Bird Tourism
## 2419           Leisure and Holidays            Beach Tourism
## 2420           Leisure and Holidays         Wildlife Tourism
## 2421           Leisure and Holidays            Beach Tourism
## 2422        Scientific and Academic       Conference Tourism
## 2424                          Other            Beach Tourism
## 2425           Leisure and Holidays          Widlife Tourism
## 2426           Leisure and Holidays          Widlife Tourism
## 2427           Leisure and Holidays            Beach Tourism
## 2428 Visiting Friends and Relatives          Hunting Tourism
## 2430 Visiting Friends and Relatives            Beach Tourism
## 2431        Meetings and Conference        Mountain Climbing
## 2432           Leisure and Holidays            Beach Tourism
## 2433           Leisure and Holidays         Cultural Tourism
## 2435           Leisure and Holidays          Widlife Tourism
## 2436           Leisure and Holidays          Widlife Tourism
## 2437                       Business          Widlife Tourism
## 2438           Leisure and Holidays            Beach Tourism
## 2439           Leisure and Holidays          Widlife Tourism
## 2440           Leisure and Holidays       Conference Tourism
## 2441           Leisure and Holidays          Widlife Tourism
## 2442           Leisure and Holidays         Wildlife Tourism
## 2443           Leisure and Holidays          Widlife Tourism
## 2444           Leisure and Holidays            Beach Tourism
## 2445                          Other          Hunting Tourism
## 2446           Leisure and Holidays       Conference Tourism
## 2447           Leisure and Holidays       Conference Tourism
## 2448                       Business            Beach Tourism
## 2449        Meetings and Conference         Wildlife Tourism
## 2450           Leisure and Holidays          Widlife Tourism
## 2451                       Business         Cultural Tourism
## 2452           Leisure and Holidays            Beach Tourism
## 2453           Leisure and Holidays          Widlife Tourism
## 2454           Leisure and Holidays          Widlife Tourism
## 2455 Visiting Friends and Relatives          Widlife Tourism
## 2456        Scientific and Academic          Hunting Tourism
## 2457           Leisure and Holidays            Beach Tourism
## 2458                       Business            Beach Tourism
## 2459           Leisure and Holidays            Beach Tourism
## 2460 Visiting Friends and Relatives            Beach Tourism
## 2461           Leisure and Holidays          Widlife Tourism
## 2462        Meetings and Conference          Widlife Tourism
## 2463                       Business          Hunting Tourism
## 2464           Leisure and Holidays       Conference Tourism
## 2465                   Volunteering            Beach Tourism
## 2467                       Business          Widlife Tourism
## 2468           Leisure and Holidays          Widlife Tourism
## 2469           Leisure and Holidays          Widlife Tourism
## 2470 Visiting Friends and Relatives          Hunting Tourism
## 2471                       Business          Widlife Tourism
## 2472           Leisure and Holidays            Beach Tourism
## 2473           Leisure and Holidays          Widlife Tourism
## 2474           Leisure and Holidays            Beach Tourism
## 2475           Leisure and Holidays          Widlife Tourism
## 2477                       Business          Widlife Tourism
## 2478           Leisure and Holidays          Widlife Tourism
## 2479           Leisure and Holidays         Wildlife Tourism
## 2480           Leisure and Holidays          Widlife Tourism
## 2481           Leisure and Holidays            Beach Tourism
## 2482           Leisure and Holidays          Widlife Tourism
## 2483                       Business        Mountain Climbing
## 2484 Visiting Friends and Relatives         Cultural Tourism
## 2485        Meetings and Conference       Conference Tourism
## 2486                   Volunteering         Cultural Tourism
## 2487 Visiting Friends and Relatives            Beach Tourism
## 2488           Leisure and Holidays                 Business
## 2489           Leisure and Holidays          Widlife Tourism
## 2490 Visiting Friends and Relatives          Hunting Tourism
## 2491                       Business       Conference Tourism
## 2492                       Business         Wildlife Tourism
## 2493           Leisure and Holidays            Beach Tourism
## 2494           Leisure and Holidays         Wildlife Tourism
## 2495           Leisure and Holidays          Widlife Tourism
## 2497                       Business          Widlife Tourism
## 2498           Leisure and Holidays          Widlife Tourism
## 2499           Leisure and Holidays         Wildlife Tourism
## 2500                       Business            Beach Tourism
## 2502           Leisure and Holidays            Beach Tourism
## 2503           Leisure and Holidays            Beach Tourism
## 2504           Leisure and Holidays         Wildlife Tourism
## 2506           Leisure and Holidays          Widlife Tourism
## 2507           Leisure and Holidays          Widlife Tourism
## 2508           Leisure and Holidays                 Business
## 2509                       Business          Widlife Tourism
## 2510           Leisure and Holidays            Beach Tourism
## 2511           Leisure and Holidays            Beach Tourism
## 2512           Leisure and Holidays         Cultural Tourism
## 2513           Leisure and Holidays            Beach Tourism
## 2514           Leisure and Holidays            Beach Tourism
## 2515        Meetings and Conference          Widlife Tourism
## 2516           Leisure and Holidays         Cultural Tourism
## 2517                       Business          Hunting Tourism
## 2518           Leisure and Holidays            Beach Tourism
## 2519           Leisure and Holidays            Beach Tourism
## 2520           Leisure and Holidays          Widlife Tourism
## 2521                   Volunteering          Widlife Tourism
## 2522           Leisure and Holidays            Beach Tourism
## 2523 Visiting Friends and Relatives            Beach Tourism
## 2524                   Volunteering          Hunting Tourism
## 2525 Visiting Friends and Relatives            Beach Tourism
## 2526           Leisure and Holidays          Widlife Tourism
## 2527           Leisure and Holidays          Widlife Tourism
## 2528           Leisure and Holidays         Wildlife Tourism
## 2529           Leisure and Holidays          Widlife Tourism
## 2530        Meetings and Conference         Wildlife Tourism
## 2531           Leisure and Holidays            Beach Tourism
## 2532           Leisure and Holidays       Conference Tourism
## 2533                       Business         Cultural Tourism
## 2534        Meetings and Conference         Wildlife Tourism
## 2535           Leisure and Holidays         Cultural Tourism
## 2536           Leisure and Holidays                 Business
## 2537           Leisure and Holidays            Beach Tourism
## 2538           Leisure and Holidays         Wildlife Tourism
## 2539 Visiting Friends and Relatives            Beach Tourism
## 2540           Leisure and Holidays          Widlife Tourism
## 2541 Visiting Friends and Relatives         Cultural Tourism
## 2542                       Business          Hunting Tourism
## 2543                   Volunteering            Beach Tourism
## 2544           Leisure and Holidays          Widlife Tourism
## 2545           Leisure and Holidays            Beach Tourism
## 2546                          Other            Beach Tourism
## 2547           Leisure and Holidays          Widlife Tourism
## 2548           Leisure and Holidays       Conference Tourism
## 2549        Meetings and Conference        Mountain Climbing
## 2550        Meetings and Conference          Widlife Tourism
## 2551           Leisure and Holidays       Conference Tourism
## 2552           Leisure and Holidays         Cultural Tourism
## 2553                   Volunteering       Conference Tourism
## 2554           Leisure and Holidays            Beach Tourism
## 2555           Leisure and Holidays          Widlife Tourism
## 2556           Leisure and Holidays         Wildlife Tourism
## 2557           Leisure and Holidays            Beach Tourism
## 2558           Leisure and Holidays            Beach Tourism
## 2559 Visiting Friends and Relatives          Hunting Tourism
## 2560           Leisure and Holidays          Widlife Tourism
## 2561                          Other          Hunting Tourism
## 2562           Leisure and Holidays          Widlife Tourism
## 2563                       Business       Conference Tourism
## 2564           Leisure and Holidays          Widlife Tourism
## 2566           Leisure and Holidays         Cultural Tourism
## 2567           Leisure and Holidays          Widlife Tourism
## 2568           Leisure and Holidays          Widlife Tourism
## 2569        Meetings and Conference        Mountain Climbing
## 2570                       Business          Widlife Tourism
## 2571 Visiting Friends and Relatives        Mountain Climbing
## 2572                       Business        Mountain Climbing
## 2573           Leisure and Holidays       Conference Tourism
## 2574                       Business            Beach Tourism
## 2576        Meetings and Conference            Beach Tourism
## 2577 Visiting Friends and Relatives         Cultural Tourism
## 2578 Visiting Friends and Relatives             Bird Tourism
## 2579                       Business          Hunting Tourism
## 2580           Leisure and Holidays            Beach Tourism
## 2581                   Volunteering          Hunting Tourism
## 2582                   Volunteering         Cultural Tourism
## 2583           Leisure and Holidays            Beach Tourism
## 2584        Meetings and Conference       Conference Tourism
## 2585        Meetings and Conference          Widlife Tourism
## 2586           Leisure and Holidays          Widlife Tourism
## 2587           Leisure and Holidays          Widlife Tourism
## 2588           Leisure and Holidays            Beach Tourism
## 2589           Leisure and Holidays            Beach Tourism
## 2590                       Business         Wildlife Tourism
## 2591                       Business         Wildlife Tourism
## 2592           Leisure and Holidays          Widlife Tourism
## 2593           Leisure and Holidays            Beach Tourism
## 2594           Leisure and Holidays         Cultural Tourism
## 2595           Leisure and Holidays          Widlife Tourism
## 2596        Meetings and Conference          Widlife Tourism
## 2597           Leisure and Holidays          Widlife Tourism
## 2598 Visiting Friends and Relatives          Widlife Tourism
## 2599           Leisure and Holidays            Beach Tourism
## 2600           Leisure and Holidays          Widlife Tourism
## 2601           Leisure and Holidays       Conference Tourism
## 2602           Leisure and Holidays            Beach Tourism
## 2603 Visiting Friends and Relatives          Widlife Tourism
## 2604                       Business            Beach Tourism
## 2605 Visiting Friends and Relatives         Wildlife Tourism
## 2606           Leisure and Holidays          Widlife Tourism
## 2607           Leisure and Holidays          Widlife Tourism
## 2609 Visiting Friends and Relatives            Beach Tourism
## 2610           Leisure and Holidays          Hunting Tourism
## 2611                       Business       Conference Tourism
## 2612           Leisure and Holidays         Cultural Tourism
## 2613        Meetings and Conference         Cultural Tourism
## 2614           Leisure and Holidays          Widlife Tourism
## 2615           Leisure and Holidays         Wildlife Tourism
## 2616           Leisure and Holidays            Beach Tourism
## 2617        Meetings and Conference        Mountain Climbing
## 2618           Leisure and Holidays          Widlife Tourism
## 2620           Leisure and Holidays          Widlife Tourism
## 2621           Leisure and Holidays          Widlife Tourism
## 2623           Leisure and Holidays         Wildlife Tourism
## 2624           Leisure and Holidays          Widlife Tourism
## 2625        Meetings and Conference        Mountain Climbing
## 2626           Leisure and Holidays            Beach Tourism
## 2627           Leisure and Holidays            Beach Tourism
## 2628           Leisure and Holidays          Widlife Tourism
## 2629           Leisure and Holidays          Widlife Tourism
## 2630           Leisure and Holidays       Conference Tourism
## 2631           Leisure and Holidays            Beach Tourism
## 2632        Meetings and Conference        Mountain Climbing
## 2633           Leisure and Holidays       Conference Tourism
## 2635        Meetings and Conference        Mountain Climbing
## 2636           Leisure and Holidays          Widlife Tourism
## 2637 Visiting Friends and Relatives          Hunting Tourism
## 2638           Leisure and Holidays          Widlife Tourism
## 2639           Leisure and Holidays          Widlife Tourism
## 2640           Leisure and Holidays          Widlife Tourism
## 2641           Leisure and Holidays         Wildlife Tourism
## 2642           Leisure and Holidays       Conference Tourism
## 2643           Leisure and Holidays          Hunting Tourism
## 2645 Visiting Friends and Relatives          Widlife Tourism
## 2646           Leisure and Holidays         Wildlife Tourism
## 2647           Leisure and Holidays         Cultural Tourism
## 2648           Leisure and Holidays          Widlife Tourism
## 2649           Leisure and Holidays            Beach Tourism
## 2650           Leisure and Holidays          Widlife Tourism
## 2651           Leisure and Holidays          Widlife Tourism
## 2652           Leisure and Holidays       Conference Tourism
## 2653           Leisure and Holidays          Widlife Tourism
## 2654           Leisure and Holidays          Widlife Tourism
## 2655           Leisure and Holidays          Widlife Tourism
## 2656           Leisure and Holidays       Conference Tourism
## 2657        Scientific and Academic          Hunting Tourism
## 2658           Leisure and Holidays       Conference Tourism
## 2659           Leisure and Holidays            Beach Tourism
## 2660 Visiting Friends and Relatives            Beach Tourism
## 2661           Leisure and Holidays            Beach Tourism
## 2662           Leisure and Holidays                 Business
## 2663 Visiting Friends and Relatives            Beach Tourism
## 2664                       Business            Beach Tourism
## 2665           Leisure and Holidays          Widlife Tourism
## 2666           Leisure and Holidays          Widlife Tourism
## 2667 Visiting Friends and Relatives          Widlife Tourism
## 2668 Visiting Friends and Relatives          Widlife Tourism
## 2669                       Business          Hunting Tourism
## 2671           Leisure and Holidays         Cultural Tourism
## 2672        Meetings and Conference         Cultural Tourism
## 2674           Leisure and Holidays          Widlife Tourism
## 2675           Leisure and Holidays         Wildlife Tourism
## 2676                   Volunteering          Hunting Tourism
## 2677                       Business                 Business
## 2678        Meetings and Conference          Widlife Tourism
## 2679           Leisure and Holidays       Conference Tourism
## 2680           Leisure and Holidays            Beach Tourism
## 2681           Leisure and Holidays         Cultural Tourism
## 2682           Leisure and Holidays       Conference Tourism
## 2683                       Business         Wildlife Tourism
## 2684 Visiting Friends and Relatives            Beach Tourism
## 2685           Leisure and Holidays         Wildlife Tourism
## 2686        Meetings and Conference       Conference Tourism
## 2687                       Business         Wildlife Tourism
## 2688           Leisure and Holidays          Widlife Tourism
## 2689           Leisure and Holidays            Beach Tourism
## 2690           Leisure and Holidays            Beach Tourism
## 2691           Leisure and Holidays          Widlife Tourism
## 2692           Leisure and Holidays         Wildlife Tourism
## 2693           Leisure and Holidays          Widlife Tourism
## 2694                       Business          Hunting Tourism
## 2695                       Business          Widlife Tourism
## 2696           Leisure and Holidays            Beach Tourism
## 2697           Leisure and Holidays          Widlife Tourism
## 2698           Leisure and Holidays            Beach Tourism
## 2699 Visiting Friends and Relatives            Beach Tourism
## 2700           Leisure and Holidays       Conference Tourism
## 2701        Meetings and Conference        Mountain Climbing
## 2702                       Business          Hunting Tourism
## 2703           Leisure and Holidays         Cultural Tourism
## 2704           Leisure and Holidays          Widlife Tourism
## 2705 Visiting Friends and Relatives          Hunting Tourism
## 2706           Leisure and Holidays          Widlife Tourism
## 2707           Leisure and Holidays          Widlife Tourism
## 2708           Leisure and Holidays         Wildlife Tourism
## 2709           Leisure and Holidays                 Business
## 2711                       Business         Wildlife Tourism
## 2712           Leisure and Holidays            Beach Tourism
## 2713           Leisure and Holidays          Widlife Tourism
## 2714           Leisure and Holidays         Wildlife Tourism
## 2715        Meetings and Conference        Mountain Climbing
## 2716                       Business          Hunting Tourism
## 2717           Leisure and Holidays          Widlife Tourism
## 2718           Leisure and Holidays            Beach Tourism
## 2719                       Business          Hunting Tourism
## 2720                          Other         Cultural Tourism
## 2721 Visiting Friends and Relatives          Widlife Tourism
## 2723                       Business            Beach Tourism
## 2724           Leisure and Holidays         Wildlife Tourism
## 2725           Leisure and Holidays          Widlife Tourism
## 2726           Leisure and Holidays          Widlife Tourism
## 2727           Leisure and Holidays          Widlife Tourism
## 2728        Meetings and Conference          Widlife Tourism
## 2729           Leisure and Holidays          Widlife Tourism
## 2730                       Business         Cultural Tourism
## 2731           Leisure and Holidays          Widlife Tourism
## 2732        Meetings and Conference          Widlife Tourism
## 2733                       Business            Beach Tourism
## 2734           Leisure and Holidays         Wildlife Tourism
## 2735 Visiting Friends and Relatives         Cultural Tourism
## 2737           Leisure and Holidays            Beach Tourism
## 2738           Leisure and Holidays            Beach Tourism
## 2739           Leisure and Holidays         Wildlife Tourism
## 2741           Leisure and Holidays         Wildlife Tourism
## 2742 Visiting Friends and Relatives            Beach Tourism
## 2743           Leisure and Holidays          Widlife Tourism
## 2744                          Other          Widlife Tourism
## 2745           Leisure and Holidays         Cultural Tourism
## 2746        Meetings and Conference            Beach Tourism
## 2748           Leisure and Holidays            Beach Tourism
## 2749           Leisure and Holidays            Beach Tourism
## 2750           Leisure and Holidays            Beach Tourism
## 2751           Leisure and Holidays            Beach Tourism
## 2752           Leisure and Holidays         Wildlife Tourism
## 2753           Leisure and Holidays          Widlife Tourism
## 2754                       Business            Beach Tourism
## 2755           Leisure and Holidays          Widlife Tourism
## 2757           Leisure and Holidays          Widlife Tourism
## 2758           Leisure and Holidays          Widlife Tourism
## 2759                       Business          Hunting Tourism
## 2760           Leisure and Holidays         Wildlife Tourism
## 2761           Leisure and Holidays          Widlife Tourism
## 2762           Leisure and Holidays       Conference Tourism
## 2763 Visiting Friends and Relatives            Beach Tourism
## 2764                       Business            Beach Tourism
## 2765           Leisure and Holidays         Cultural Tourism
## 2766           Leisure and Holidays       Conference Tourism
## 2767           Leisure and Holidays          Widlife Tourism
## 2768           Leisure and Holidays         Wildlife Tourism
## 2769           Leisure and Holidays          Widlife Tourism
## 2770           Leisure and Holidays          Widlife Tourism
## 2771           Leisure and Holidays          Widlife Tourism
## 2772                       Business          Widlife Tourism
## 2773           Leisure and Holidays            Beach Tourism
## 2774        Meetings and Conference        Mountain Climbing
## 2775           Leisure and Holidays          Widlife Tourism
## 2776           Leisure and Holidays            Beach Tourism
## 2778           Leisure and Holidays          Widlife Tourism
## 2779           Leisure and Holidays       Conference Tourism
## 2780           Leisure and Holidays          Widlife Tourism
## 2781                   Volunteering       Conference Tourism
## 2782        Meetings and Conference        Mountain Climbing
## 2783           Leisure and Holidays         Cultural Tourism
## 2784        Meetings and Conference         Cultural Tourism
## 2785           Leisure and Holidays          Widlife Tourism
## 2787           Leisure and Holidays       Conference Tourism
## 2788           Leisure and Holidays       Conference Tourism
## 2789        Meetings and Conference        Mountain Climbing
## 2790           Leisure and Holidays          Widlife Tourism
## 2791           Leisure and Holidays            Beach Tourism
## 2792           Leisure and Holidays         Wildlife Tourism
## 2793           Leisure and Holidays            Beach Tourism
## 2794           Leisure and Holidays          Widlife Tourism
## 2795 Visiting Friends and Relatives        Mountain Climbing
## 2796           Leisure and Holidays          Widlife Tourism
## 2797           Leisure and Holidays          Widlife Tourism
## 2798                          Other          Hunting Tourism
## 2799                       Business          Widlife Tourism
## 2801           Leisure and Holidays         Cultural Tourism
## 2802           Leisure and Holidays          Widlife Tourism
## 2803           Leisure and Holidays            Beach Tourism
## 2804           Leisure and Holidays            Beach Tourism
## 2805                       Business          Hunting Tourism
## 2806           Leisure and Holidays          Widlife Tourism
## 2807           Leisure and Holidays            Beach Tourism
## 2808 Visiting Friends and Relatives            Beach Tourism
## 2809           Leisure and Holidays          Widlife Tourism
## 2810           Leisure and Holidays         Wildlife Tourism
## 2811           Leisure and Holidays       Conference Tourism
## 2812                       Business          Hunting Tourism
## 2814           Leisure and Holidays            Beach Tourism
## 2815                       Business          Hunting Tourism
## 2816           Leisure and Holidays         Wildlife Tourism
## 2817           Leisure and Holidays       Conference Tourism
## 2818                       Business         Wildlife Tourism
## 2819           Leisure and Holidays          Widlife Tourism
## 2820           Leisure and Holidays         Cultural Tourism
## 2821                       Business                 Business
## 2822           Leisure and Holidays            Beach Tourism
## 2823           Leisure and Holidays         Wildlife Tourism
## 2825           Leisure and Holidays            Beach Tourism
## 2826 Visiting Friends and Relatives          Hunting Tourism
## 2827           Leisure and Holidays          Widlife Tourism
## 2829           Leisure and Holidays       Conference Tourism
## 2830           Leisure and Holidays         Cultural Tourism
## 2831           Leisure and Holidays         Cultural Tourism
## 2832                       Business         Wildlife Tourism
## 2834 Visiting Friends and Relatives            Beach Tourism
## 2835           Leisure and Holidays          Widlife Tourism
## 2836           Leisure and Holidays          Widlife Tourism
## 2837           Leisure and Holidays          Widlife Tourism
## 2838           Leisure and Holidays       Conference Tourism
## 2839           Leisure and Holidays          Widlife Tourism
## 2840 Visiting Friends and Relatives         Wildlife Tourism
## 2841           Leisure and Holidays         Wildlife Tourism
## 2842           Leisure and Holidays          Widlife Tourism
## 2843           Leisure and Holidays          Widlife Tourism
## 2844           Leisure and Holidays       Conference Tourism
## 2845           Leisure and Holidays       Conference Tourism
## 2846           Leisure and Holidays          Widlife Tourism
## 2847           Leisure and Holidays       Conference Tourism
## 2848                   Volunteering          Widlife Tourism
## 2849           Leisure and Holidays          Widlife Tourism
## 2850           Leisure and Holidays       Conference Tourism
## 2851           Leisure and Holidays          Widlife Tourism
## 2852           Leisure and Holidays       Conference Tourism
## 2853           Leisure and Holidays       Conference Tourism
## 2855           Leisure and Holidays          Widlife Tourism
## 2856 Visiting Friends and Relatives         Cultural Tourism
## 2857           Leisure and Holidays            Beach Tourism
## 2858           Leisure and Holidays            Beach Tourism
## 2859           Leisure and Holidays         Wildlife Tourism
## 2860           Leisure and Holidays          Widlife Tourism
## 2861           Leisure and Holidays          Widlife Tourism
## 2862           Leisure and Holidays         Wildlife Tourism
## 2863 Visiting Friends and Relatives            Beach Tourism
## 2865           Leisure and Holidays          Widlife Tourism
## 2866           Leisure and Holidays            Beach Tourism
## 2867        Meetings and Conference         Cultural Tourism
## 2869                   Volunteering         Cultural Tourism
## 2870           Leisure and Holidays            Beach Tourism
## 2871           Leisure and Holidays         Wildlife Tourism
## 2872           Leisure and Holidays         Cultural Tourism
## 2873           Leisure and Holidays            Beach Tourism
## 2874                       Business          Hunting Tourism
## 2875           Leisure and Holidays            Beach Tourism
## 2876           Leisure and Holidays          Hunting Tourism
## 2877           Leisure and Holidays         Wildlife Tourism
## 2878                       Business            Beach Tourism
## 2879           Leisure and Holidays            Beach Tourism
## 2880           Leisure and Holidays            Beach Tourism
## 2881                          Other          Hunting Tourism
## 2882           Leisure and Holidays          Widlife Tourism
## 2883           Leisure and Holidays         Cultural Tourism
## 2884           Leisure and Holidays       Conference Tourism
## 2885                       Business            Beach Tourism
## 2886           Leisure and Holidays          Widlife Tourism
## 2887           Leisure and Holidays       Conference Tourism
## 2888           Leisure and Holidays          Widlife Tourism
## 2889           Leisure and Holidays            Beach Tourism
## 2890           Leisure and Holidays          Widlife Tourism
## 2891           Leisure and Holidays          Widlife Tourism
## 2892           Leisure and Holidays          Widlife Tourism
## 2893           Leisure and Holidays          Widlife Tourism
## 2894           Leisure and Holidays            Beach Tourism
## 2895                       Business          Widlife Tourism
## 2896           Leisure and Holidays       Conference Tourism
## 2898 Visiting Friends and Relatives         Cultural Tourism
## 2900           Leisure and Holidays       Conference Tourism
## 2901           Leisure and Holidays          Widlife Tourism
## 2902                   Volunteering          Hunting Tourism
## 2903                          Other          Hunting Tourism
## 2904                       Business          Hunting Tourism
## 2905           Leisure and Holidays          Widlife Tourism
## 2906           Leisure and Holidays          Widlife Tourism
## 2907        Meetings and Conference         Wildlife Tourism
## 2908 Visiting Friends and Relatives          Hunting Tourism
## 2909 Visiting Friends and Relatives         Cultural Tourism
## 2910           Leisure and Holidays       Conference Tourism
## 2911           Leisure and Holidays            Beach Tourism
## 2912 Visiting Friends and Relatives          Hunting Tourism
## 2913        Meetings and Conference        Mountain Climbing
## 2914           Leisure and Holidays          Widlife Tourism
## 2915           Leisure and Holidays          Widlife Tourism
## 2917           Leisure and Holidays          Widlife Tourism
## 2918 Visiting Friends and Relatives          Widlife Tourism
## 2919           Leisure and Holidays          Widlife Tourism
## 2921           Leisure and Holidays          Widlife Tourism
## 2922                       Business            Beach Tourism
## 2923           Leisure and Holidays            Beach Tourism
## 2924 Visiting Friends and Relatives          Hunting Tourism
## 2925                       Business          Widlife Tourism
## 2926           Leisure and Holidays          Widlife Tourism
## 2927 Visiting Friends and Relatives         Cultural Tourism
## 2928           Leisure and Holidays          Widlife Tourism
## 2929        Meetings and Conference       Conference Tourism
## 2930           Leisure and Holidays          Widlife Tourism
## 2932           Leisure and Holidays         Cultural Tourism
## 2934        Meetings and Conference        Mountain Climbing
## 2935           Leisure and Holidays         Wildlife Tourism
## 2936           Leisure and Holidays          Widlife Tourism
## 2937                       Business            Beach Tourism
## 2938        Meetings and Conference          Widlife Tourism
## 2939           Leisure and Holidays          Widlife Tourism
## 2940 Visiting Friends and Relatives            Beach Tourism
## 2941           Leisure and Holidays          Widlife Tourism
## 2942           Leisure and Holidays          Widlife Tourism
## 2943           Leisure and Holidays          Widlife Tourism
## 2944           Leisure and Holidays       Conference Tourism
## 2945           Leisure and Holidays          Widlife Tourism
## 2946           Leisure and Holidays       Conference Tourism
## 2947           Leisure and Holidays          Widlife Tourism
## 2948           Leisure and Holidays            Beach Tourism
## 2949                       Business          Widlife Tourism
## 2950           Leisure and Holidays            Beach Tourism
## 2951           Leisure and Holidays          Widlife Tourism
## 2952           Leisure and Holidays          Widlife Tourism
## 2953           Leisure and Holidays            Beach Tourism
## 2954           Leisure and Holidays       Conference Tourism
## 2955 Visiting Friends and Relatives          Hunting Tourism
## 2956           Leisure and Holidays                 Business
## 2957           Leisure and Holidays         Wildlife Tourism
## 2958           Leisure and Holidays          Widlife Tourism
## 2959           Leisure and Holidays         Wildlife Tourism
## 2960           Leisure and Holidays            Beach Tourism
## 2961           Leisure and Holidays          Widlife Tourism
## 2962           Leisure and Holidays         Cultural Tourism
## 2963           Leisure and Holidays          Widlife Tourism
## 2964                       Business            Beach Tourism
## 2965           Leisure and Holidays            Beach Tourism
## 2966           Leisure and Holidays          Widlife Tourism
## 2967        Meetings and Conference       Conference Tourism
## 2968           Leisure and Holidays            Beach Tourism
## 2969 Visiting Friends and Relatives          Widlife Tourism
## 2971           Leisure and Holidays          Widlife Tourism
## 2972                       Business          Hunting Tourism
## 2973                       Business          Hunting Tourism
## 2974           Leisure and Holidays            Beach Tourism
## 2975                       Business          Hunting Tourism
## 2976        Scientific and Academic          Widlife Tourism
## 2977 Visiting Friends and Relatives         Cultural Tourism
## 2978           Leisure and Holidays          Widlife Tourism
## 2979                       Business          Hunting Tourism
## 2980           Leisure and Holidays            Beach Tourism
## 2981                          Other          Hunting Tourism
## 2982                       Business          Widlife Tourism
## 2983 Visiting Friends and Relatives          Hunting Tourism
## 2984 Visiting Friends and Relatives          Hunting Tourism
## 2985           Leisure and Holidays       Conference Tourism
## 2986           Leisure and Holidays            Beach Tourism
## 2987           Leisure and Holidays            Beach Tourism
## 2988           Leisure and Holidays         Cultural Tourism
## 2989           Leisure and Holidays       Conference Tourism
## 2990 Visiting Friends and Relatives          Widlife Tourism
## 2991                       Business          Hunting Tourism
## 2993 Visiting Friends and Relatives            Beach Tourism
## 2994           Leisure and Holidays         Wildlife Tourism
## 2995           Leisure and Holidays          Widlife Tourism
## 2996           Leisure and Holidays         Cultural Tourism
## 2997           Leisure and Holidays          Widlife Tourism
## 2998 Visiting Friends and Relatives            Beach Tourism
## 2999           Leisure and Holidays             Bird Tourism
## 3000           Leisure and Holidays            Beach Tourism
## 3001           Leisure and Holidays          Widlife Tourism
## 3002                       Business            Beach Tourism
## 3003           Leisure and Holidays       Conference Tourism
## 3004           Leisure and Holidays          Widlife Tourism
## 3005           Leisure and Holidays       Conference Tourism
## 3006                   Volunteering            Beach Tourism
## 3007        Scientific and Academic          Widlife Tourism
## 3008           Leisure and Holidays            Beach Tourism
## 3010        Scientific and Academic          Hunting Tourism
## 3011           Leisure and Holidays          Widlife Tourism
## 3012           Leisure and Holidays         Wildlife Tourism
## 3013           Leisure and Holidays       Conference Tourism
## 3014           Leisure and Holidays          Widlife Tourism
## 3015           Leisure and Holidays          Widlife Tourism
## 3016           Leisure and Holidays         Wildlife Tourism
## 3017           Leisure and Holidays          Widlife Tourism
## 3018           Leisure and Holidays          Widlife Tourism
## 3019           Leisure and Holidays          Widlife Tourism
## 3020           Leisure and Holidays       Conference Tourism
## 3021                       Business            Beach Tourism
## 3022                       Business            Beach Tourism
## 3023                       Business            Beach Tourism
## 3024           Leisure and Holidays          Widlife Tourism
## 3025           Leisure and Holidays       Conference Tourism
## 3026           Leisure and Holidays          Widlife Tourism
## 3027                       Business            Beach Tourism
## 3028                       Business         Wildlife Tourism
## 3029           Leisure and Holidays          Widlife Tourism
## 3030           Leisure and Holidays          Widlife Tourism
## 3031           Leisure and Holidays            Beach Tourism
## 3032                       Business          Hunting Tourism
## 3033 Visiting Friends and Relatives          Widlife Tourism
## 3034           Leisure and Holidays            Beach Tourism
## 3035           Leisure and Holidays         Wildlife Tourism
## 3036           Leisure and Holidays            Beach Tourism
## 3037        Meetings and Conference            Beach Tourism
## 3038                          Other       Conference Tourism
## 3040           Leisure and Holidays            Beach Tourism
## 3041        Meetings and Conference        Mountain Climbing
## 3042           Leisure and Holidays            Beach Tourism
## 3043           Leisure and Holidays          Widlife Tourism
## 3044                       Business         Cultural Tourism
## 3045           Leisure and Holidays          Widlife Tourism
## 3046                       Business         Cultural Tourism
## 3047        Meetings and Conference          Widlife Tourism
## 3048 Visiting Friends and Relatives         Cultural Tourism
## 3049           Leisure and Holidays          Widlife Tourism
## 3050           Leisure and Holidays            Beach Tourism
## 3051           Leisure and Holidays          Widlife Tourism
## 3052           Leisure and Holidays         Cultural Tourism
## 3054           Leisure and Holidays          Widlife Tourism
## 3055           Leisure and Holidays            Beach Tourism
## 3057           Leisure and Holidays       Conference Tourism
## 3058 Visiting Friends and Relatives         Cultural Tourism
## 3059           Leisure and Holidays            Beach Tourism
## 3060           Leisure and Holidays          Widlife Tourism
## 3061           Leisure and Holidays          Widlife Tourism
## 3063           Leisure and Holidays       Conference Tourism
## 3064           Leisure and Holidays          Widlife Tourism
## 3065           Leisure and Holidays            Beach Tourism
## 3066                          Other                 Business
## 3067                          Other          Hunting Tourism
## 3068           Leisure and Holidays            Beach Tourism
## 3069           Leisure and Holidays          Widlife Tourism
## 3070           Leisure and Holidays          Widlife Tourism
## 3071        Scientific and Academic        Mountain Climbing
## 3072           Leisure and Holidays            Beach Tourism
## 3073           Leisure and Holidays       Conference Tourism
## 3075           Leisure and Holidays       Conference Tourism
## 3076           Leisure and Holidays            Beach Tourism
## 3078           Leisure and Holidays       Conference Tourism
## 3079           Leisure and Holidays         Wildlife Tourism
## 3080           Leisure and Holidays         Wildlife Tourism
## 3081 Visiting Friends and Relatives          Widlife Tourism
## 3082                       Business         Wildlife Tourism
## 3083           Leisure and Holidays       Conference Tourism
## 3084           Leisure and Holidays          Widlife Tourism
## 3085           Leisure and Holidays          Widlife Tourism
## 3086           Leisure and Holidays          Widlife Tourism
## 3087           Leisure and Holidays       Conference Tourism
## 3088        Meetings and Conference        Mountain Climbing
## 3089           Leisure and Holidays         Wildlife Tourism
## 3090 Visiting Friends and Relatives         Cultural Tourism
## 3091           Leisure and Holidays         Wildlife Tourism
## 3092 Visiting Friends and Relatives             Bird Tourism
## 3093           Leisure and Holidays            Beach Tourism
## 3094           Leisure and Holidays          Widlife Tourism
## 3095 Visiting Friends and Relatives         Cultural Tourism
## 3096                       Business         Wildlife Tourism
## 3097                       Business          Widlife Tourism
## 3098           Leisure and Holidays            Beach Tourism
## 3099           Leisure and Holidays          Widlife Tourism
## 3100           Leisure and Holidays          Widlife Tourism
## 3101           Leisure and Holidays            Beach Tourism
## 3102           Leisure and Holidays       Conference Tourism
## 3103 Visiting Friends and Relatives          Hunting Tourism
## 3104           Leisure and Holidays       Conference Tourism
## 3105                       Business          Widlife Tourism
## 3107           Leisure and Holidays         Wildlife Tourism
## 3108        Meetings and Conference          Widlife Tourism
## 3109        Scientific and Academic          Hunting Tourism
## 3110                       Business          Hunting Tourism
## 3111           Leisure and Holidays       Conference Tourism
## 3112                   Volunteering          Widlife Tourism
## 3113                          Other            Beach Tourism
## 3114                       Business          Widlife Tourism
## 3115                          Other          Hunting Tourism
## 3116                       Business         Cultural Tourism
## 3117           Leisure and Holidays          Widlife Tourism
## 3118           Leisure and Holidays       Conference Tourism
## 3119           Leisure and Holidays       Conference Tourism
## 3120                          Other            Beach Tourism
## 3121        Meetings and Conference          Widlife Tourism
## 3122                       Business          Widlife Tourism
## 3123                       Business         Wildlife Tourism
## 3124           Leisure and Holidays       Conference Tourism
## 3126           Leisure and Holidays            Beach Tourism
## 3127 Visiting Friends and Relatives            Beach Tourism
## 3128           Leisure and Holidays          Widlife Tourism
## 3129           Leisure and Holidays          Widlife Tourism
## 3130 Visiting Friends and Relatives          Widlife Tourism
## 3131           Leisure and Holidays          Widlife Tourism
## 3132           Leisure and Holidays         Cultural Tourism
## 3133                   Volunteering          Widlife Tourism
## 3134 Visiting Friends and Relatives            Beach Tourism
## 3135           Leisure and Holidays          Widlife Tourism
## 3136                       Business        Mountain Climbing
## 3137           Leisure and Holidays       Conference Tourism
## 3138           Leisure and Holidays          Widlife Tourism
## 3139 Visiting Friends and Relatives          Hunting Tourism
## 3140 Visiting Friends and Relatives          Hunting Tourism
## 3141           Leisure and Holidays          Widlife Tourism
## 3142           Leisure and Holidays         Cultural Tourism
## 3143        Meetings and Conference            Beach Tourism
## 3144           Leisure and Holidays                 Business
## 3145           Leisure and Holidays          Widlife Tourism
## 3146           Leisure and Holidays          Widlife Tourism
## 3148           Leisure and Holidays         Cultural Tourism
## 3149           Leisure and Holidays          Widlife Tourism
## 3150           Leisure and Holidays            Beach Tourism
## 3151                       Business          Hunting Tourism
## 3152 Visiting Friends and Relatives          Widlife Tourism
## 3153           Leisure and Holidays          Widlife Tourism
## 3154           Leisure and Holidays       Conference Tourism
## 3155           Leisure and Holidays          Widlife Tourism
## 3156           Leisure and Holidays         Wildlife Tourism
## 3157           Leisure and Holidays          Widlife Tourism
## 3161                       Business       Conference Tourism
## 3162           Leisure and Holidays          Widlife Tourism
## 3163           Leisure and Holidays          Widlife Tourism
## 3164 Visiting Friends and Relatives            Beach Tourism
## 3166                       Business            Beach Tourism
## 3168           Leisure and Holidays         Wildlife Tourism
## 3169           Leisure and Holidays          Widlife Tourism
## 3170           Leisure and Holidays       Conference Tourism
## 3172           Leisure and Holidays          Widlife Tourism
## 3173        Meetings and Conference            Beach Tourism
## 3175           Leisure and Holidays            Beach Tourism
## 3176                       Business         Cultural Tourism
## 3178 Visiting Friends and Relatives            Beach Tourism
## 3179           Leisure and Holidays          Widlife Tourism
## 3180           Leisure and Holidays          Widlife Tourism
## 3182           Leisure and Holidays       Conference Tourism
## 3183                       Business         Wildlife Tourism
## 3184           Leisure and Holidays            Beach Tourism
## 3185           Leisure and Holidays         Wildlife Tourism
## 3186           Leisure and Holidays          Widlife Tourism
## 3187        Meetings and Conference          Widlife Tourism
## 3188           Leisure and Holidays          Widlife Tourism
## 3189           Leisure and Holidays          Widlife Tourism
## 3190        Meetings and Conference          Widlife Tourism
## 3191           Leisure and Holidays         Cultural Tourism
## 3192           Leisure and Holidays       Conference Tourism
## 3193           Leisure and Holidays         Wildlife Tourism
## 3194 Visiting Friends and Relatives            Beach Tourism
## 3197           Leisure and Holidays          Widlife Tourism
## 3198        Scientific and Academic            Beach Tourism
## 3199           Leisure and Holidays         Wildlife Tourism
## 3200        Meetings and Conference       Conference Tourism
## 3201           Leisure and Holidays         Wildlife Tourism
## 3202           Leisure and Holidays        Mountain Climbing
## 3203                       Business          Widlife Tourism
## 3204 Visiting Friends and Relatives          Hunting Tourism
## 3205           Leisure and Holidays          Widlife Tourism
## 3206           Leisure and Holidays          Widlife Tourism
## 3207           Leisure and Holidays       Conference Tourism
## 3208           Leisure and Holidays          Widlife Tourism
## 3209           Leisure and Holidays          Widlife Tourism
## 3210                          Other          Hunting Tourism
## 3211           Leisure and Holidays          Widlife Tourism
## 3212           Leisure and Holidays            Beach Tourism
## 3213           Leisure and Holidays          Widlife Tourism
## 3214           Leisure and Holidays          Widlife Tourism
## 3215           Leisure and Holidays          Widlife Tourism
## 3216           Leisure and Holidays            Beach Tourism
## 3218           Leisure and Holidays         Cultural Tourism
## 3219           Leisure and Holidays            Beach Tourism
## 3220                       Business          Widlife Tourism
## 3221           Leisure and Holidays            Beach Tourism
## 3222           Leisure and Holidays          Widlife Tourism
## 3223           Leisure and Holidays       Conference Tourism
## 3224 Visiting Friends and Relatives          Hunting Tourism
## 3225           Leisure and Holidays            Beach Tourism
## 3226           Leisure and Holidays          Widlife Tourism
## 3227                       Business          Widlife Tourism
## 3228           Leisure and Holidays            Beach Tourism
## 3229           Leisure and Holidays            Beach Tourism
## 3230 Visiting Friends and Relatives          Widlife Tourism
## 3231 Visiting Friends and Relatives         Cultural Tourism
## 3232           Leisure and Holidays         Wildlife Tourism
## 3234           Leisure and Holidays         Wildlife Tourism
## 3235           Leisure and Holidays            Beach Tourism
## 3236           Leisure and Holidays       Conference Tourism
## 3237           Leisure and Holidays                 Business
## 3238 Visiting Friends and Relatives            Beach Tourism
## 3239           Leisure and Holidays            Beach Tourism
## 3240           Leisure and Holidays          Widlife Tourism
## 3241           Leisure and Holidays            Beach Tourism
## 3242           Leisure and Holidays            Beach Tourism
## 3243           Leisure and Holidays          Widlife Tourism
## 3245 Visiting Friends and Relatives         Cultural Tourism
## 3246 Visiting Friends and Relatives          Widlife Tourism
## 3248        Meetings and Conference        Mountain Climbing
## 3249           Leisure and Holidays          Widlife Tourism
## 3251        Meetings and Conference            Beach Tourism
## 3252           Leisure and Holidays            Beach Tourism
## 3253           Leisure and Holidays            Beach Tourism
## 3254           Leisure and Holidays            Beach Tourism
## 3255        Meetings and Conference          Hunting Tourism
## 3256 Visiting Friends and Relatives          Widlife Tourism
## 3258           Leisure and Holidays            Beach Tourism
## 3259           Leisure and Holidays          Widlife Tourism
## 3260           Leisure and Holidays          Widlife Tourism
## 3262           Leisure and Holidays          Widlife Tourism
## 3263 Visiting Friends and Relatives         Cultural Tourism
## 3264           Leisure and Holidays                 Business
## 3265 Visiting Friends and Relatives          Hunting Tourism
## 3266           Leisure and Holidays            Beach Tourism
## 3267                       Business        Mountain Climbing
## 3268           Leisure and Holidays          Widlife Tourism
## 3269           Leisure and Holidays            Beach Tourism
## 3270           Leisure and Holidays       Conference Tourism
## 3271 Visiting Friends and Relatives         Wildlife Tourism
## 3272           Leisure and Holidays          Widlife Tourism
## 3273           Leisure and Holidays          Widlife Tourism
## 3274           Leisure and Holidays            Beach Tourism
## 3275 Visiting Friends and Relatives            Beach Tourism
## 3276           Leisure and Holidays          Widlife Tourism
## 3277 Visiting Friends and Relatives         Cultural Tourism
## 3278                       Business          Hunting Tourism
## 3279           Leisure and Holidays          Widlife Tourism
## 3280                       Business            Beach Tourism
## 3281                          Other            Beach Tourism
## 3282                       Business         Wildlife Tourism
## 3283                       Business        Mountain Climbing
## 3284           Leisure and Holidays         Cultural Tourism
## 3285           Leisure and Holidays            Beach Tourism
## 3287           Leisure and Holidays          Widlife Tourism
## 3288           Leisure and Holidays          Widlife Tourism
## 3289           Leisure and Holidays         Wildlife Tourism
## 3290 Visiting Friends and Relatives          Widlife Tourism
## 3291           Leisure and Holidays          Widlife Tourism
## 3292        Scientific and Academic            Beach Tourism
## 3293           Leisure and Holidays         Wildlife Tourism
## 3294 Visiting Friends and Relatives            Beach Tourism
## 3295           Leisure and Holidays          Widlife Tourism
## 3296           Leisure and Holidays         Wildlife Tourism
## 3297 Visiting Friends and Relatives            Beach Tourism
## 3298        Meetings and Conference        Mountain Climbing
## 3299           Leisure and Holidays          Widlife Tourism
## 3300           Leisure and Holidays          Widlife Tourism
## 3301           Leisure and Holidays       Conference Tourism
## 3303           Leisure and Holidays          Widlife Tourism
## 3304           Leisure and Holidays            Beach Tourism
## 3305           Leisure and Holidays          Widlife Tourism
## 3306           Leisure and Holidays          Widlife Tourism
## 3307        Scientific and Academic          Widlife Tourism
## 3308           Leisure and Holidays       Conference Tourism
## 3309                       Business         Wildlife Tourism
## 3310           Leisure and Holidays          Widlife Tourism
## 3311           Leisure and Holidays          Widlife Tourism
## 3312           Leisure and Holidays            Beach Tourism
## 3313           Leisure and Holidays            Beach Tourism
## 3314           Leisure and Holidays         Wildlife Tourism
## 3315           Leisure and Holidays            Beach Tourism
## 3316           Leisure and Holidays       Conference Tourism
## 3317           Leisure and Holidays            Beach Tourism
## 3318           Leisure and Holidays          Widlife Tourism
## 3320           Leisure and Holidays          Widlife Tourism
## 3321           Leisure and Holidays          Widlife Tourism
## 3322           Leisure and Holidays          Widlife Tourism
## 3323           Leisure and Holidays            Beach Tourism
## 3324 Visiting Friends and Relatives       Conference Tourism
## 3325           Leisure and Holidays          Widlife Tourism
## 3326           Leisure and Holidays            Beach Tourism
## 3327           Leisure and Holidays       Conference Tourism
## 3328 Visiting Friends and Relatives          Hunting Tourism
## 3329           Leisure and Holidays          Widlife Tourism
## 3330           Leisure and Holidays          Widlife Tourism
## 3331           Leisure and Holidays       Conference Tourism
## 3332        Meetings and Conference        Mountain Climbing
## 3333           Leisure and Holidays       Conference Tourism
## 3334                       Business            Beach Tourism
## 3335           Leisure and Holidays       Conference Tourism
## 3336 Visiting Friends and Relatives          Widlife Tourism
## 3337 Visiting Friends and Relatives          Widlife Tourism
## 3338           Leisure and Holidays          Widlife Tourism
## 3339           Leisure and Holidays          Hunting Tourism
## 3340           Leisure and Holidays          Widlife Tourism
## 3341 Visiting Friends and Relatives          Hunting Tourism
## 3342           Leisure and Holidays       Conference Tourism
## 3343           Leisure and Holidays          Widlife Tourism
## 3344           Leisure and Holidays          Widlife Tourism
## 3345           Leisure and Holidays         Cultural Tourism
## 3346           Leisure and Holidays            Beach Tourism
## 3347        Scientific and Academic          Hunting Tourism
## 3349                       Business          Widlife Tourism
## 3350           Leisure and Holidays         Wildlife Tourism
## 3351           Leisure and Holidays          Widlife Tourism
## 3352        Meetings and Conference        Mountain Climbing
## 3353           Leisure and Holidays         Wildlife Tourism
## 3354                       Business          Widlife Tourism
## 3355           Leisure and Holidays            Beach Tourism
## 3356           Leisure and Holidays            Beach Tourism
## 3357                       Business         Wildlife Tourism
## 3358           Leisure and Holidays            Beach Tourism
## 3359           Leisure and Holidays         Cultural Tourism
## 3360                       Business          Widlife Tourism
## 3361           Leisure and Holidays         Cultural Tourism
## 3362           Leisure and Holidays          Hunting Tourism
## 3363           Leisure and Holidays          Widlife Tourism
## 3365                       Business          Widlife Tourism
## 3366 Visiting Friends and Relatives          Hunting Tourism
## 3367           Leisure and Holidays            Beach Tourism
## 3368           Leisure and Holidays                 Business
## 3369           Leisure and Holidays          Widlife Tourism
## 3370           Leisure and Holidays            Beach Tourism
## 3372           Leisure and Holidays          Widlife Tourism
## 3373 Visiting Friends and Relatives          Widlife Tourism
## 3374           Leisure and Holidays          Widlife Tourism
## 3375           Leisure and Holidays       Conference Tourism
## 3376                          Other          Hunting Tourism
## 3377           Leisure and Holidays          Hunting Tourism
## 3378           Leisure and Holidays         Wildlife Tourism
## 3379           Leisure and Holidays          Widlife Tourism
## 3380           Leisure and Holidays          Widlife Tourism
## 3381           Leisure and Holidays          Widlife Tourism
## 3382 Visiting Friends and Relatives          Hunting Tourism
## 3383                       Business         Wildlife Tourism
## 3384                       Business         Cultural Tourism
## 3385           Leisure and Holidays          Widlife Tourism
## 3386           Leisure and Holidays         Wildlife Tourism
## 3387        Meetings and Conference        Mountain Climbing
## 3388           Leisure and Holidays          Widlife Tourism
## 3389                       Business        Mountain Climbing
## 3390           Leisure and Holidays            Beach Tourism
## 3391           Leisure and Holidays         Wildlife Tourism
## 3392           Leisure and Holidays            Beach Tourism
## 3393 Visiting Friends and Relatives          Hunting Tourism
## 3394           Leisure and Holidays          Widlife Tourism
## 3395           Leisure and Holidays            Beach Tourism
## 3396           Leisure and Holidays          Widlife Tourism
## 3397           Leisure and Holidays         Cultural Tourism
## 3398           Leisure and Holidays          Widlife Tourism
## 3399                   Volunteering         Cultural Tourism
## 3400           Leisure and Holidays         Wildlife Tourism
## 3402           Leisure and Holidays            Beach Tourism
## 3404 Visiting Friends and Relatives            Beach Tourism
## 3405           Leisure and Holidays         Cultural Tourism
## 3406           Leisure and Holidays          Widlife Tourism
## 3407           Leisure and Holidays          Widlife Tourism
## 3408                       Business          Widlife Tourism
## 3409        Meetings and Conference       Conference Tourism
## 3410           Leisure and Holidays       Conference Tourism
## 3411           Leisure and Holidays       Conference Tourism
## 3412           Leisure and Holidays          Widlife Tourism
## 3413 Visiting Friends and Relatives       Conference Tourism
## 3414           Leisure and Holidays       Conference Tourism
## 3415           Leisure and Holidays          Hunting Tourism
## 3416           Leisure and Holidays          Widlife Tourism
## 3417           Leisure and Holidays         Wildlife Tourism
## 3418           Leisure and Holidays          Widlife Tourism
## 3419        Meetings and Conference          Hunting Tourism
## 3420 Visiting Friends and Relatives          Widlife Tourism
## 3421           Leisure and Holidays            Beach Tourism
## 3422                          Other          Hunting Tourism
## 3423        Scientific and Academic          Widlife Tourism
## 3424           Leisure and Holidays          Widlife Tourism
## 3425           Leisure and Holidays          Widlife Tourism
## 3426           Leisure and Holidays            Beach Tourism
## 3427           Leisure and Holidays         Wildlife Tourism
## 3428           Leisure and Holidays          Widlife Tourism
## 3429 Visiting Friends and Relatives          Hunting Tourism
## 3430           Leisure and Holidays       Conference Tourism
## 3431           Leisure and Holidays            Beach Tourism
## 3432                       Business         Wildlife Tourism
## 3433 Visiting Friends and Relatives         Cultural Tourism
## 3434           Leisure and Holidays            Beach Tourism
## 3436           Leisure and Holidays            Beach Tourism
## 3437           Leisure and Holidays          Widlife Tourism
## 3438           Leisure and Holidays            Beach Tourism
## 3439           Leisure and Holidays          Widlife Tourism
## 3440           Leisure and Holidays         Cultural Tourism
## 3441           Leisure and Holidays       Conference Tourism
## 3442                       Business            Beach Tourism
## 3443        Meetings and Conference       Conference Tourism
## 3444           Leisure and Holidays          Widlife Tourism
## 3445           Leisure and Holidays          Widlife Tourism
## 3446           Leisure and Holidays         Wildlife Tourism
## 3447           Leisure and Holidays             Bird Tourism
## 3448           Leisure and Holidays          Widlife Tourism
## 3449           Leisure and Holidays         Cultural Tourism
## 3450           Leisure and Holidays            Beach Tourism
## 3451                       Business          Widlife Tourism
## 3452           Leisure and Holidays          Widlife Tourism
## 3453           Leisure and Holidays            Beach Tourism
## 3454                       Business          Widlife Tourism
## 3455           Leisure and Holidays             Bird Tourism
## 3456 Visiting Friends and Relatives            Beach Tourism
## 3457           Leisure and Holidays         Cultural Tourism
## 3458           Leisure and Holidays          Widlife Tourism
## 3459           Leisure and Holidays            Beach Tourism
## 3460           Leisure and Holidays         Wildlife Tourism
## 3461           Leisure and Holidays            Beach Tourism
## 3462 Visiting Friends and Relatives          Widlife Tourism
## 3463           Leisure and Holidays            Beach Tourism
## 3464           Leisure and Holidays            Beach Tourism
## 3465           Leisure and Holidays            Beach Tourism
## 3466           Leisure and Holidays            Beach Tourism
## 3467           Leisure and Holidays          Widlife Tourism
## 3468                   Volunteering         Cultural Tourism
## 3469                   Volunteering            Beach Tourism
## 3470           Leisure and Holidays         Wildlife Tourism
## 3471        Meetings and Conference        Mountain Climbing
## 3472           Leisure and Holidays         Cultural Tourism
## 3473           Leisure and Holidays         Wildlife Tourism
## 3474 Visiting Friends and Relatives          Widlife Tourism
## 3476           Leisure and Holidays          Widlife Tourism
## 3477           Leisure and Holidays       Conference Tourism
## 3478 Visiting Friends and Relatives            Beach Tourism
## 3479        Meetings and Conference       Conference Tourism
## 3480        Meetings and Conference          Hunting Tourism
## 3481                       Business        Mountain Climbing
## 3482           Leisure and Holidays          Widlife Tourism
## 3484        Meetings and Conference            Beach Tourism
## 3485                       Business                 Business
## 3486           Leisure and Holidays            Beach Tourism
## 3487 Visiting Friends and Relatives          Widlife Tourism
## 3488                       Business         Wildlife Tourism
## 3489           Leisure and Holidays          Widlife Tourism
## 3490                       Business            Beach Tourism
## 3491        Scientific and Academic         Wildlife Tourism
## 3492 Visiting Friends and Relatives          Hunting Tourism
## 3493           Leisure and Holidays          Widlife Tourism
## 3494 Visiting Friends and Relatives         Cultural Tourism
## 3495           Leisure and Holidays            Beach Tourism
## 3496           Leisure and Holidays            Beach Tourism
## 3497                       Business          Widlife Tourism
## 3498           Leisure and Holidays         Wildlife Tourism
## 3499        Scientific and Academic         Cultural Tourism
## 3500        Meetings and Conference        Mountain Climbing
## 3501 Visiting Friends and Relatives         Cultural Tourism
## 3502           Leisure and Holidays            Beach Tourism
## 3503           Leisure and Holidays            Beach Tourism
## 3504                       Business          Hunting Tourism
## 3505           Leisure and Holidays       Conference Tourism
## 3506           Leisure and Holidays            Beach Tourism
## 3508           Leisure and Holidays          Widlife Tourism
## 3509           Leisure and Holidays          Widlife Tourism
## 3510           Leisure and Holidays       Conference Tourism
## 3511 Visiting Friends and Relatives          Hunting Tourism
## 3512           Leisure and Holidays            Beach Tourism
## 3513           Leisure and Holidays            Beach Tourism
## 3514           Leisure and Holidays          Widlife Tourism
## 3515           Leisure and Holidays         Wildlife Tourism
## 3516                   Volunteering         Cultural Tourism
## 3517           Leisure and Holidays            Beach Tourism
## 3518 Visiting Friends and Relatives          Widlife Tourism
## 3519           Leisure and Holidays       Conference Tourism
## 3520        Meetings and Conference          Widlife Tourism
## 3521                       Business          Hunting Tourism
## 3522           Leisure and Holidays          Widlife Tourism
## 3523           Leisure and Holidays            Beach Tourism
## 3524           Leisure and Holidays            Beach Tourism
## 3525           Leisure and Holidays          Widlife Tourism
## 3526           Leisure and Holidays            Beach Tourism
## 3527                       Business            Beach Tourism
## 3528 Visiting Friends and Relatives          Hunting Tourism
## 3530        Scientific and Academic          Widlife Tourism
## 3531           Leisure and Holidays          Widlife Tourism
## 3532 Visiting Friends and Relatives          Hunting Tourism
## 3533 Visiting Friends and Relatives          Hunting Tourism
## 3535           Leisure and Holidays          Widlife Tourism
## 3536           Leisure and Holidays          Widlife Tourism
## 3537           Leisure and Holidays            Beach Tourism
## 3538           Leisure and Holidays            Beach Tourism
## 3539           Leisure and Holidays         Wildlife Tourism
## 3540           Leisure and Holidays          Widlife Tourism
## 3541           Leisure and Holidays                 Business
## 3542           Leisure and Holidays            Beach Tourism
## 3543           Leisure and Holidays            Beach Tourism
## 3545 Visiting Friends and Relatives          Hunting Tourism
## 3546 Visiting Friends and Relatives          Widlife Tourism
## 3547           Leisure and Holidays          Widlife Tourism
## 3548           Leisure and Holidays            Beach Tourism
## 3549           Leisure and Holidays       Conference Tourism
## 3550           Leisure and Holidays            Beach Tourism
## 3551           Leisure and Holidays          Widlife Tourism
## 3552           Leisure and Holidays          Widlife Tourism
## 3553           Leisure and Holidays         Wildlife Tourism
## 3554           Leisure and Holidays       Conference Tourism
## 3555           Leisure and Holidays            Beach Tourism
## 3556                          Other          Hunting Tourism
## 3557           Leisure and Holidays          Widlife Tourism
## 3558           Leisure and Holidays            Beach Tourism
## 3559           Leisure and Holidays            Beach Tourism
## 3560           Leisure and Holidays          Widlife Tourism
## 3561           Leisure and Holidays          Widlife Tourism
## 3562                       Business            Beach Tourism
## 3563           Leisure and Holidays         Wildlife Tourism
## 3564           Leisure and Holidays            Beach Tourism
## 3566           Leisure and Holidays                 Business
## 3567           Leisure and Holidays          Widlife Tourism
## 3568           Leisure and Holidays            Beach Tourism
## 3570           Leisure and Holidays         Cultural Tourism
## 3573           Leisure and Holidays          Widlife Tourism
## 3574           Leisure and Holidays            Beach Tourism
## 3576           Leisure and Holidays          Widlife Tourism
## 3577 Visiting Friends and Relatives         Wildlife Tourism
## 3578 Visiting Friends and Relatives          Hunting Tourism
## 3579 Visiting Friends and Relatives          Widlife Tourism
## 3580           Leisure and Holidays            Beach Tourism
## 3581           Leisure and Holidays            Beach Tourism
## 3582           Leisure and Holidays          Widlife Tourism
## 3583           Leisure and Holidays          Widlife Tourism
## 3584 Visiting Friends and Relatives            Beach Tourism
## 3585           Leisure and Holidays          Widlife Tourism
## 3586                       Business          Widlife Tourism
## 3587           Leisure and Holidays            Beach Tourism
## 3588           Leisure and Holidays          Widlife Tourism
## 3589           Leisure and Holidays          Widlife Tourism
## 3591           Leisure and Holidays            Beach Tourism
## 3592           Leisure and Holidays          Widlife Tourism
## 3593                       Business            Beach Tourism
## 3594           Leisure and Holidays            Beach Tourism
## 3595           Leisure and Holidays            Beach Tourism
## 3596           Leisure and Holidays            Beach Tourism
## 3597           Leisure and Holidays         Wildlife Tourism
## 3598           Leisure and Holidays         Cultural Tourism
## 3599        Meetings and Conference       Conference Tourism
## 3600           Leisure and Holidays          Widlife Tourism
## 3601           Leisure and Holidays            Beach Tourism
## 3602           Leisure and Holidays          Widlife Tourism
## 3603           Leisure and Holidays          Widlife Tourism
## 3605           Leisure and Holidays            Beach Tourism
## 3606                   Volunteering          Widlife Tourism
## 3608           Leisure and Holidays            Beach Tourism
## 3609                       Business       Conference Tourism
## 3610                       Business          Widlife Tourism
## 3611           Leisure and Holidays          Widlife Tourism
## 3612 Visiting Friends and Relatives          Hunting Tourism
## 3613           Leisure and Holidays          Widlife Tourism
## 3614           Leisure and Holidays            Beach Tourism
## 3615           Leisure and Holidays          Widlife Tourism
## 3616           Leisure and Holidays          Widlife Tourism
## 3617           Leisure and Holidays          Widlife Tourism
## 3618           Leisure and Holidays          Widlife Tourism
## 3619                       Business            Beach Tourism
## 3620 Visiting Friends and Relatives         Cultural Tourism
## 3621                       Business         Cultural Tourism
## 3622           Leisure and Holidays          Widlife Tourism
## 3623 Visiting Friends and Relatives         Cultural Tourism
## 3624 Visiting Friends and Relatives            Beach Tourism
## 3625           Leisure and Holidays          Widlife Tourism
## 3626           Leisure and Holidays         Wildlife Tourism
## 3627           Leisure and Holidays            Beach Tourism
## 3628 Visiting Friends and Relatives          Widlife Tourism
## 3629           Leisure and Holidays            Beach Tourism
## 3630 Visiting Friends and Relatives         Cultural Tourism
## 3632           Leisure and Holidays       Conference Tourism
## 3633           Leisure and Holidays          Widlife Tourism
## 3634                       Business          Widlife Tourism
## 3635           Leisure and Holidays          Widlife Tourism
## 3636           Leisure and Holidays       Conference Tourism
## 3637 Visiting Friends and Relatives          Widlife Tourism
## 3638                       Business            Beach Tourism
## 3639           Leisure and Holidays          Widlife Tourism
## 3640           Leisure and Holidays         Cultural Tourism
## 3641           Leisure and Holidays            Beach Tourism
## 3642        Meetings and Conference          Widlife Tourism
## 3643 Visiting Friends and Relatives          Hunting Tourism
## 3644                       Business            Beach Tourism
## 3645           Leisure and Holidays          Widlife Tourism
## 3646 Visiting Friends and Relatives            Beach Tourism
## 3647           Leisure and Holidays            Beach Tourism
## 3648           Leisure and Holidays            Beach Tourism
## 3649           Leisure and Holidays          Widlife Tourism
## 3651           Leisure and Holidays          Widlife Tourism
## 3652           Leisure and Holidays          Widlife Tourism
## 3653           Leisure and Holidays         Cultural Tourism
## 3654           Leisure and Holidays          Widlife Tourism
## 3655           Leisure and Holidays            Beach Tourism
## 3656           Leisure and Holidays            Beach Tourism
## 3657 Visiting Friends and Relatives            Beach Tourism
## 3658        Meetings and Conference          Widlife Tourism
## 3659           Leisure and Holidays       Conference Tourism
## 3660                       Business            Beach Tourism
## 3661           Leisure and Holidays            Beach Tourism
## 3662           Leisure and Holidays            Beach Tourism
## 3663           Leisure and Holidays       Conference Tourism
## 3664                       Business          Hunting Tourism
## 3665           Leisure and Holidays          Widlife Tourism
## 3666           Leisure and Holidays            Beach Tourism
## 3667           Leisure and Holidays          Widlife Tourism
## 3668           Leisure and Holidays         Cultural Tourism
## 3669           Leisure and Holidays          Widlife Tourism
## 3671           Leisure and Holidays          Widlife Tourism
## 3672           Leisure and Holidays          Widlife Tourism
## 3673                       Business          Widlife Tourism
## 3675        Meetings and Conference       Conference Tourism
## 3676           Leisure and Holidays       Conference Tourism
## 3677           Leisure and Holidays       Conference Tourism
## 3678           Leisure and Holidays          Widlife Tourism
## 3679           Leisure and Holidays          Widlife Tourism
## 3680           Leisure and Holidays          Widlife Tourism
## 3681 Visiting Friends and Relatives            Beach Tourism
## 3682           Leisure and Holidays          Widlife Tourism
## 3683        Meetings and Conference          Widlife Tourism
## 3684                       Business          Widlife Tourism
## 3685           Leisure and Holidays            Beach Tourism
## 3686           Leisure and Holidays          Widlife Tourism
## 3687           Leisure and Holidays          Widlife Tourism
## 3688 Visiting Friends and Relatives          Hunting Tourism
## 3689           Leisure and Holidays       Conference Tourism
## 3690           Leisure and Holidays          Widlife Tourism
## 3691           Leisure and Holidays          Widlife Tourism
## 3692           Leisure and Holidays          Widlife Tourism
## 3693           Leisure and Holidays          Widlife Tourism
## 3694                       Business       Conference Tourism
## 3695           Leisure and Holidays          Widlife Tourism
## 3696           Leisure and Holidays            Beach Tourism
## 3697           Leisure and Holidays            Beach Tourism
## 3698           Leisure and Holidays       Conference Tourism
## 3699           Leisure and Holidays         Wildlife Tourism
## 3700           Leisure and Holidays          Widlife Tourism
## 3701           Leisure and Holidays         Wildlife Tourism
## 3702           Leisure and Holidays       Conference Tourism
## 3703           Leisure and Holidays            Beach Tourism
## 3704 Visiting Friends and Relatives            Beach Tourism
## 3705           Leisure and Holidays            Beach Tourism
## 3706 Visiting Friends and Relatives            Beach Tourism
## 3707           Leisure and Holidays          Widlife Tourism
## 3708           Leisure and Holidays          Widlife Tourism
## 3709                       Business          Widlife Tourism
## 3710           Leisure and Holidays            Beach Tourism
## 3711           Leisure and Holidays          Widlife Tourism
## 3712 Visiting Friends and Relatives            Beach Tourism
## 3713           Leisure and Holidays            Beach Tourism
## 3714        Meetings and Conference        Mountain Climbing
## 3715                       Business            Beach Tourism
## 3716           Leisure and Holidays          Widlife Tourism
## 3717           Leisure and Holidays          Widlife Tourism
## 3718                       Business       Conference Tourism
## 3719 Visiting Friends and Relatives         Wildlife Tourism
## 3720           Leisure and Holidays         Wildlife Tourism
## 3721                       Business            Beach Tourism
## 3722           Leisure and Holidays       Conference Tourism
## 3723           Leisure and Holidays         Cultural Tourism
## 3724 Visiting Friends and Relatives         Wildlife Tourism
## 3725           Leisure and Holidays          Widlife Tourism
## 3726           Leisure and Holidays          Widlife Tourism
## 3727           Leisure and Holidays            Beach Tourism
## 3728           Leisure and Holidays            Beach Tourism
## 3729                       Business         Wildlife Tourism
## 3730           Leisure and Holidays                 Business
## 3731           Leisure and Holidays         Wildlife Tourism
## 3732           Leisure and Holidays            Beach Tourism
## 3733           Leisure and Holidays       Conference Tourism
## 3734 Visiting Friends and Relatives         Cultural Tourism
## 3735           Leisure and Holidays          Widlife Tourism
## 3736           Leisure and Holidays          Widlife Tourism
## 3737           Leisure and Holidays          Widlife Tourism
## 3738           Leisure and Holidays            Beach Tourism
## 3739           Leisure and Holidays            Beach Tourism
## 3740           Leisure and Holidays          Widlife Tourism
## 3741           Leisure and Holidays         Cultural Tourism
## 3742           Leisure and Holidays          Widlife Tourism
## 3743           Leisure and Holidays       Conference Tourism
## 3744           Leisure and Holidays          Widlife Tourism
## 3745           Leisure and Holidays       Conference Tourism
## 3746           Leisure and Holidays       Conference Tourism
## 3747           Leisure and Holidays          Widlife Tourism
## 3748           Leisure and Holidays          Widlife Tourism
## 3749        Meetings and Conference       Conference Tourism
## 3750 Visiting Friends and Relatives         Cultural Tourism
## 3751 Visiting Friends and Relatives         Cultural Tourism
## 3752           Leisure and Holidays          Widlife Tourism
## 3753 Visiting Friends and Relatives         Cultural Tourism
## 3754           Leisure and Holidays            Beach Tourism
## 3755           Leisure and Holidays       Conference Tourism
## 3756           Leisure and Holidays          Widlife Tourism
## 3757 Visiting Friends and Relatives            Beach Tourism
## 3758           Leisure and Holidays       Conference Tourism
## 3759           Leisure and Holidays          Widlife Tourism
## 3760 Visiting Friends and Relatives        Mountain Climbing
## 3761                          Other          Hunting Tourism
## 3762           Leisure and Holidays            Beach Tourism
## 3763           Leisure and Holidays          Hunting Tourism
## 3764           Leisure and Holidays            Beach Tourism
## 3765                       Business          Widlife Tourism
## 3766                       Business             Bird Tourism
## 3767           Leisure and Holidays          Widlife Tourism
## 3769           Leisure and Holidays          Widlife Tourism
## 3770 Visiting Friends and Relatives            Beach Tourism
## 3771           Leisure and Holidays          Widlife Tourism
## 3772        Meetings and Conference       Conference Tourism
## 3773                   Volunteering       Conference Tourism
## 3774           Leisure and Holidays       Conference Tourism
## 3775 Visiting Friends and Relatives            Beach Tourism
## 3776        Meetings and Conference        Mountain Climbing
## 3777                       Business          Hunting Tourism
## 3778                       Business          Hunting Tourism
## 3779           Leisure and Holidays         Wildlife Tourism
## 3780           Leisure and Holidays            Beach Tourism
## 3781           Leisure and Holidays         Wildlife Tourism
## 3782                          Other            Beach Tourism
## 3783                          Other         Cultural Tourism
## 3785                       Business       Conference Tourism
## 3786           Leisure and Holidays       Conference Tourism
## 3787                       Business            Beach Tourism
## 3788                       Business          Hunting Tourism
## 3789           Leisure and Holidays         Wildlife Tourism
## 3790           Leisure and Holidays            Beach Tourism
## 3791 Visiting Friends and Relatives          Widlife Tourism
## 3792        Meetings and Conference          Widlife Tourism
## 3793 Visiting Friends and Relatives          Hunting Tourism
## 3794           Leisure and Holidays          Widlife Tourism
## 3795                       Business          Widlife Tourism
## 3796                       Business          Widlife Tourism
## 3797                       Business          Hunting Tourism
## 3798           Leisure and Holidays            Beach Tourism
## 3799           Leisure and Holidays         Wildlife Tourism
## 3800        Scientific and Academic         Cultural Tourism
## 3801           Leisure and Holidays          Widlife Tourism
## 3802           Leisure and Holidays       Conference Tourism
## 3803           Leisure and Holidays             Bird Tourism
## 3805        Meetings and Conference        Mountain Climbing
## 3806                       Business          Widlife Tourism
## 3807 Visiting Friends and Relatives            Beach Tourism
## 3808           Leisure and Holidays            Beach Tourism
## 3809           Leisure and Holidays          Widlife Tourism
## 3810                          Other          Hunting Tourism
## 3811 Visiting Friends and Relatives         Cultural Tourism
## 3812                        Medical            Beach Tourism
## 3813 Visiting Friends and Relatives          Widlife Tourism
## 3814           Leisure and Holidays          Widlife Tourism
## 3815           Leisure and Holidays          Widlife Tourism
## 3816           Leisure and Holidays          Widlife Tourism
## 3817           Leisure and Holidays         Cultural Tourism
## 3818           Leisure and Holidays          Widlife Tourism
## 3819                       Business            Beach Tourism
## 3820           Leisure and Holidays       Conference Tourism
## 3821 Visiting Friends and Relatives            Beach Tourism
## 3822                   Volunteering          Widlife Tourism
## 3823           Leisure and Holidays         Cultural Tourism
## 3824        Meetings and Conference        Mountain Climbing
## 3825 Visiting Friends and Relatives          Hunting Tourism
## 3826           Leisure and Holidays          Widlife Tourism
## 3827           Leisure and Holidays            Beach Tourism
## 3828           Leisure and Holidays                 Business
## 3829        Meetings and Conference         Cultural Tourism
## 3830                       Business         Wildlife Tourism
## 3831           Leisure and Holidays         Wildlife Tourism
## 3832           Leisure and Holidays         Cultural Tourism
## 3833           Leisure and Holidays         Cultural Tourism
## 3834           Leisure and Holidays       Conference Tourism
## 3835           Leisure and Holidays          Widlife Tourism
## 3836           Leisure and Holidays            Beach Tourism
## 3837                       Business          Widlife Tourism
## 3838           Leisure and Holidays          Hunting Tourism
## 3839 Visiting Friends and Relatives          Hunting Tourism
## 3840           Leisure and Holidays                 Business
## 3841                       Business            Beach Tourism
## 3842           Leisure and Holidays       Conference Tourism
## 3843           Leisure and Holidays          Widlife Tourism
## 3844           Leisure and Holidays          Widlife Tourism
## 3845        Meetings and Conference            Beach Tourism
## 3847                   Volunteering         Wildlife Tourism
## 3848           Leisure and Holidays         Wildlife Tourism
## 3849           Leisure and Holidays            Beach Tourism
## 3850                       Business         Wildlife Tourism
## 3851 Visiting Friends and Relatives          Hunting Tourism
## 3852           Leisure and Holidays          Widlife Tourism
## 3853           Leisure and Holidays         Cultural Tourism
## 3855           Leisure and Holidays            Beach Tourism
## 3856                       Business          Hunting Tourism
## 3857                          Other          Hunting Tourism
## 3858           Leisure and Holidays            Beach Tourism
## 3859           Leisure and Holidays            Beach Tourism
## 3860           Leisure and Holidays         Wildlife Tourism
## 3863           Leisure and Holidays       Conference Tourism
## 3864           Leisure and Holidays          Widlife Tourism
## 3865           Leisure and Holidays          Widlife Tourism
## 3866 Visiting Friends and Relatives         Cultural Tourism
## 3867           Leisure and Holidays       Conference Tourism
## 3868 Visiting Friends and Relatives          Hunting Tourism
## 3869                       Business         Wildlife Tourism
## 3870                   Volunteering          Widlife Tourism
## 3871           Leisure and Holidays       Conference Tourism
## 3872 Visiting Friends and Relatives          Hunting Tourism
## 3873                   Volunteering          Hunting Tourism
## 3874           Leisure and Holidays          Widlife Tourism
## 3875           Leisure and Holidays          Widlife Tourism
## 3876 Visiting Friends and Relatives         Cultural Tourism
## 3877           Leisure and Holidays         Cultural Tourism
## 3878 Visiting Friends and Relatives         Cultural Tourism
## 3879        Scientific and Academic       Conference Tourism
## 3880           Leisure and Holidays         Cultural Tourism
## 3882        Meetings and Conference          Widlife Tourism
## 3883           Leisure and Holidays       Conference Tourism
## 3884 Visiting Friends and Relatives          Widlife Tourism
## 3885           Leisure and Holidays          Widlife Tourism
## 3886           Leisure and Holidays         Cultural Tourism
## 3887                       Business          Widlife Tourism
## 3888           Leisure and Holidays         Cultural Tourism
## 3889                       Business          Widlife Tourism
## 3891           Leisure and Holidays          Widlife Tourism
## 3892           Leisure and Holidays         Wildlife Tourism
## 3893           Leisure and Holidays            Beach Tourism
## 3894           Leisure and Holidays            Beach Tourism
## 3895           Leisure and Holidays         Wildlife Tourism
## 3896           Leisure and Holidays            Beach Tourism
## 3897           Leisure and Holidays         Wildlife Tourism
## 3898 Visiting Friends and Relatives          Hunting Tourism
## 3900 Visiting Friends and Relatives          Hunting Tourism
## 3901           Leisure and Holidays            Beach Tourism
## 3902        Meetings and Conference          Hunting Tourism
## 3903           Leisure and Holidays            Beach Tourism
## 3905           Leisure and Holidays         Wildlife Tourism
## 3906           Leisure and Holidays          Widlife Tourism
## 3907 Visiting Friends and Relatives          Widlife Tourism
## 3908 Visiting Friends and Relatives          Hunting Tourism
## 3909                       Business         Cultural Tourism
## 3910 Visiting Friends and Relatives            Beach Tourism
## 3911                       Business          Hunting Tourism
## 3912                       Business          Widlife Tourism
## 3913           Leisure and Holidays       Conference Tourism
## 3914           Leisure and Holidays            Beach Tourism
## 3915           Leisure and Holidays         Wildlife Tourism
## 3916                          Other          Hunting Tourism
## 3917           Leisure and Holidays            Beach Tourism
## 3918           Leisure and Holidays          Widlife Tourism
## 3919           Leisure and Holidays         Cultural Tourism
## 3920                       Business                 Business
## 3921           Leisure and Holidays            Beach Tourism
## 3922           Leisure and Holidays          Widlife Tourism
## 3923           Leisure and Holidays            Beach Tourism
## 3924           Leisure and Holidays            Beach Tourism
## 3925           Leisure and Holidays       Conference Tourism
## 3926           Leisure and Holidays          Widlife Tourism
## 3927                       Business            Beach Tourism
## 3928                       Business            Beach Tourism
## 3929           Leisure and Holidays          Widlife Tourism
## 3930           Leisure and Holidays          Widlife Tourism
## 3931           Leisure and Holidays          Widlife Tourism
## 3932                       Business          Widlife Tourism
## 3934        Meetings and Conference          Hunting Tourism
## 3935           Leisure and Holidays       Conference Tourism
## 3936           Leisure and Holidays       Conference Tourism
## 3937           Leisure and Holidays          Widlife Tourism
## 3938           Leisure and Holidays            Beach Tourism
## 3939           Leisure and Holidays          Widlife Tourism
## 3940           Leisure and Holidays          Widlife Tourism
## 3941 Visiting Friends and Relatives          Hunting Tourism
## 3942           Leisure and Holidays       Conference Tourism
## 3943 Visiting Friends and Relatives         Cultural Tourism
## 3944           Leisure and Holidays         Wildlife Tourism
## 3945                       Business          Widlife Tourism
## 3946           Leisure and Holidays       Conference Tourism
## 3947           Leisure and Holidays          Widlife Tourism
## 3948           Leisure and Holidays         Wildlife Tourism
## 3949                       Business                 Business
## 3951                       Business          Hunting Tourism
## 3952 Visiting Friends and Relatives          Hunting Tourism
## 3953 Visiting Friends and Relatives          Hunting Tourism
## 3954           Leisure and Holidays          Widlife Tourism
## 3955           Leisure and Holidays            Beach Tourism
## 3956           Leisure and Holidays            Beach Tourism
## 3957           Leisure and Holidays          Widlife Tourism
## 3958           Leisure and Holidays          Widlife Tourism
## 3959           Leisure and Holidays       Conference Tourism
## 3960           Leisure and Holidays          Widlife Tourism
## 3961           Leisure and Holidays         Wildlife Tourism
## 3963           Leisure and Holidays          Widlife Tourism
## 3964           Leisure and Holidays         Wildlife Tourism
## 3966           Leisure and Holidays         Wildlife Tourism
## 3967           Leisure and Holidays          Widlife Tourism
## 3969           Leisure and Holidays          Widlife Tourism
## 3970           Leisure and Holidays          Widlife Tourism
## 3971           Leisure and Holidays          Hunting Tourism
## 3972 Visiting Friends and Relatives            Beach Tourism
## 3973                       Business          Widlife Tourism
## 3974           Leisure and Holidays         Wildlife Tourism
## 3975                       Business          Widlife Tourism
## 3976 Visiting Friends and Relatives          Widlife Tourism
## 3977 Visiting Friends and Relatives          Hunting Tourism
## 3978           Leisure and Holidays            Beach Tourism
## 3979           Leisure and Holidays          Widlife Tourism
## 3980           Leisure and Holidays            Beach Tourism
## 3981           Leisure and Holidays          Widlife Tourism
## 3982                   Volunteering            Beach Tourism
## 3983 Visiting Friends and Relatives          Hunting Tourism
## 3984           Leisure and Holidays            Beach Tourism
## 3985                       Business            Beach Tourism
## 3986           Leisure and Holidays            Beach Tourism
## 3987           Leisure and Holidays            Beach Tourism
## 3988           Leisure and Holidays         Wildlife Tourism
## 3989           Leisure and Holidays            Beach Tourism
## 3990 Visiting Friends and Relatives          Hunting Tourism
## 3991           Leisure and Holidays         Wildlife Tourism
## 3992           Leisure and Holidays          Widlife Tourism
## 3993 Visiting Friends and Relatives          Hunting Tourism
## 3994           Leisure and Holidays       Conference Tourism
## 3995           Leisure and Holidays       Conference Tourism
## 3996 Visiting Friends and Relatives          Hunting Tourism
## 3997 Visiting Friends and Relatives            Beach Tourism
## 3998           Leisure and Holidays            Beach Tourism
## 3999           Leisure and Holidays          Widlife Tourism
## 4000           Leisure and Holidays            Beach Tourism
## 4001           Leisure and Holidays         Wildlife Tourism
## 4002                       Business          Hunting Tourism
## 4003           Leisure and Holidays          Widlife Tourism
## 4004           Leisure and Holidays          Widlife Tourism
## 4007           Leisure and Holidays          Widlife Tourism
## 4008           Leisure and Holidays          Widlife Tourism
## 4009           Leisure and Holidays            Beach Tourism
## 4010        Meetings and Conference       Conference Tourism
## 4012 Visiting Friends and Relatives            Beach Tourism
## 4013                   Volunteering          Hunting Tourism
## 4014           Leisure and Holidays            Beach Tourism
## 4015           Leisure and Holidays            Beach Tourism
## 4016           Leisure and Holidays            Beach Tourism
## 4017 Visiting Friends and Relatives         Cultural Tourism
## 4018           Leisure and Holidays            Beach Tourism
## 4019                       Business          Widlife Tourism
## 4020           Leisure and Holidays          Widlife Tourism
## 4021           Leisure and Holidays          Hunting Tourism
## 4022           Leisure and Holidays       Conference Tourism
## 4023                       Business         Wildlife Tourism
## 4025 Visiting Friends and Relatives          Widlife Tourism
## 4027           Leisure and Holidays         Wildlife Tourism
## 4028           Leisure and Holidays            Beach Tourism
## 4029 Visiting Friends and Relatives         Cultural Tourism
## 4030                       Business          Widlife Tourism
## 4031           Leisure and Holidays          Widlife Tourism
## 4032        Meetings and Conference          Widlife Tourism
## 4033        Meetings and Conference       Conference Tourism
## 4034                   Volunteering         Cultural Tourism
## 4035           Leisure and Holidays          Widlife Tourism
## 4036        Meetings and Conference          Widlife Tourism
## 4037           Leisure and Holidays          Widlife Tourism
## 4038           Leisure and Holidays       Conference Tourism
## 4039                   Volunteering          Widlife Tourism
## 4040           Leisure and Holidays          Widlife Tourism
## 4041                       Business          Widlife Tourism
## 4042           Leisure and Holidays         Wildlife Tourism
## 4043 Visiting Friends and Relatives            Beach Tourism
## 4044           Leisure and Holidays                 Business
## 4045        Meetings and Conference       Conference Tourism
## 4046                       Business            Beach Tourism
## 4047           Leisure and Holidays          Widlife Tourism
## 4048           Leisure and Holidays          Widlife Tourism
## 4049                       Business         Cultural Tourism
## 4050                       Business            Beach Tourism
## 4051           Leisure and Holidays            Beach Tourism
## 4052           Leisure and Holidays         Wildlife Tourism
## 4053        Meetings and Conference        Mountain Climbing
## 4054           Leisure and Holidays          Widlife Tourism
## 4055        Meetings and Conference        Mountain Climbing
## 4056                          Other          Hunting Tourism
## 4057           Leisure and Holidays       Conference Tourism
## 4058 Visiting Friends and Relatives         Wildlife Tourism
## 4059 Visiting Friends and Relatives            Beach Tourism
## 4060           Leisure and Holidays          Widlife Tourism
## 4061           Leisure and Holidays            Beach Tourism
## 4062           Leisure and Holidays            Beach Tourism
## 4063           Leisure and Holidays          Widlife Tourism
## 4064           Leisure and Holidays          Widlife Tourism
## 4065           Leisure and Holidays            Beach Tourism
## 4066                       Business         Cultural Tourism
## 4067           Leisure and Holidays         Cultural Tourism
## 4068           Leisure and Holidays          Widlife Tourism
## 4069           Leisure and Holidays       Conference Tourism
## 4070           Leisure and Holidays          Widlife Tourism
## 4071 Visiting Friends and Relatives          Hunting Tourism
## 4072           Leisure and Holidays          Widlife Tourism
## 4073           Leisure and Holidays          Widlife Tourism
## 4075           Leisure and Holidays         Cultural Tourism
## 4076           Leisure and Holidays            Beach Tourism
## 4077                       Business          Widlife Tourism
## 4078 Visiting Friends and Relatives         Cultural Tourism
## 4079 Visiting Friends and Relatives         Cultural Tourism
## 4080           Leisure and Holidays            Beach Tourism
## 4081           Leisure and Holidays                 Business
## 4082           Leisure and Holidays          Widlife Tourism
## 4083           Leisure and Holidays          Widlife Tourism
## 4084                       Business          Widlife Tourism
## 4085           Leisure and Holidays          Widlife Tourism
## 4086        Meetings and Conference        Mountain Climbing
## 4088           Leisure and Holidays       Conference Tourism
## 4089           Leisure and Holidays          Widlife Tourism
## 4090                       Business          Widlife Tourism
## 4091           Leisure and Holidays          Widlife Tourism
## 4092           Leisure and Holidays            Beach Tourism
## 4093           Leisure and Holidays          Widlife Tourism
## 4094           Leisure and Holidays          Widlife Tourism
## 4095                          Other          Widlife Tourism
## 4096           Leisure and Holidays            Beach Tourism
## 4097 Visiting Friends and Relatives         Cultural Tourism
## 4098           Leisure and Holidays          Widlife Tourism
## 4099 Visiting Friends and Relatives       Conference Tourism
## 4100        Meetings and Conference       Conference Tourism
## 4102                       Business         Wildlife Tourism
## 4103           Leisure and Holidays         Wildlife Tourism
## 4104           Leisure and Holidays            Beach Tourism
## 4105           Leisure and Holidays         Wildlife Tourism
## 4106           Leisure and Holidays         Wildlife Tourism
## 4107           Leisure and Holidays       Conference Tourism
## 4108                   Volunteering            Beach Tourism
## 4109           Leisure and Holidays                 Business
## 4111           Leisure and Holidays          Widlife Tourism
## 4112           Leisure and Holidays            Beach Tourism
## 4113           Leisure and Holidays          Widlife Tourism
## 4114           Leisure and Holidays          Widlife Tourism
## 4115                       Business            Beach Tourism
## 4116           Leisure and Holidays         Wildlife Tourism
## 4117           Leisure and Holidays          Widlife Tourism
## 4118           Leisure and Holidays            Beach Tourism
## 4119 Visiting Friends and Relatives            Beach Tourism
## 4120           Leisure and Holidays         Wildlife Tourism
## 4122           Leisure and Holidays         Cultural Tourism
## 4123           Leisure and Holidays            Beach Tourism
## 4124           Leisure and Holidays         Wildlife Tourism
## 4125                       Business         Cultural Tourism
## 4126           Leisure and Holidays          Widlife Tourism
## 4127        Meetings and Conference        Mountain Climbing
## 4128           Leisure and Holidays            Beach Tourism
## 4129        Meetings and Conference        Mountain Climbing
## 4130 Visiting Friends and Relatives         Cultural Tourism
## 4131           Leisure and Holidays         Cultural Tourism
## 4132           Leisure and Holidays       Conference Tourism
## 4133           Leisure and Holidays       Conference Tourism
## 4134        Meetings and Conference        Mountain Climbing
## 4135           Leisure and Holidays            Beach Tourism
## 4136           Leisure and Holidays          Widlife Tourism
## 4137           Leisure and Holidays          Widlife Tourism
## 4138           Leisure and Holidays            Beach Tourism
## 4139           Leisure and Holidays            Beach Tourism
## 4140           Leisure and Holidays         Wildlife Tourism
## 4141 Visiting Friends and Relatives            Beach Tourism
## 4142           Leisure and Holidays            Beach Tourism
## 4143           Leisure and Holidays       Conference Tourism
## 4144        Meetings and Conference          Widlife Tourism
## 4145                       Business            Beach Tourism
## 4146           Leisure and Holidays       Conference Tourism
## 4147                       Business          Hunting Tourism
## 4148 Visiting Friends and Relatives            Beach Tourism
## 4149                       Business          Widlife Tourism
## 4150           Leisure and Holidays          Widlife Tourism
## 4151           Leisure and Holidays          Widlife Tourism
## 4152           Leisure and Holidays          Widlife Tourism
## 4153                       Business         Cultural Tourism
## 4154           Leisure and Holidays          Widlife Tourism
## 4155 Visiting Friends and Relatives            Beach Tourism
## 4156           Leisure and Holidays            Beach Tourism
## 4157           Leisure and Holidays          Widlife Tourism
## 4159           Leisure and Holidays          Widlife Tourism
## 4160        Meetings and Conference        Mountain Climbing
## 4161           Leisure and Holidays       Conference Tourism
## 4162 Visiting Friends and Relatives            Beach Tourism
## 4163                       Business          Hunting Tourism
## 4164           Leisure and Holidays          Widlife Tourism
## 4165           Leisure and Holidays       Conference Tourism
## 4166           Leisure and Holidays          Widlife Tourism
## 4167 Visiting Friends and Relatives          Widlife Tourism
## 4168        Meetings and Conference          Widlife Tourism
## 4169           Leisure and Holidays            Beach Tourism
## 4170           Leisure and Holidays       Conference Tourism
## 4171           Leisure and Holidays          Widlife Tourism
## 4172                       Business         Cultural Tourism
## 4173           Leisure and Holidays          Widlife Tourism
## 4174 Visiting Friends and Relatives          Widlife Tourism
## 4175 Visiting Friends and Relatives            Beach Tourism
## 4176           Leisure and Holidays            Beach Tourism
## 4177           Leisure and Holidays          Widlife Tourism
## 4178                       Business          Widlife Tourism
## 4179           Leisure and Holidays          Widlife Tourism
## 4180 Visiting Friends and Relatives          Widlife Tourism
## 4181           Leisure and Holidays         Wildlife Tourism
## 4182           Leisure and Holidays          Widlife Tourism
## 4183                       Business          Hunting Tourism
## 4184           Leisure and Holidays            Beach Tourism
## 4185           Leisure and Holidays          Widlife Tourism
## 4186           Leisure and Holidays         Cultural Tourism
## 4187           Leisure and Holidays            Beach Tourism
## 4188           Leisure and Holidays          Widlife Tourism
## 4189 Visiting Friends and Relatives          Widlife Tourism
## 4190           Leisure and Holidays          Widlife Tourism
## 4191                       Business          Widlife Tourism
## 4192 Visiting Friends and Relatives         Cultural Tourism
## 4193                       Business          Widlife Tourism
## 4194           Leisure and Holidays          Widlife Tourism
## 4195           Leisure and Holidays            Beach Tourism
## 4196 Visiting Friends and Relatives            Beach Tourism
## 4197           Leisure and Holidays          Widlife Tourism
## 4198           Leisure and Holidays            Beach Tourism
## 4199           Leisure and Holidays          Widlife Tourism
## 4200        Meetings and Conference        Mountain Climbing
## 4201 Visiting Friends and Relatives          Widlife Tourism
## 4202           Leisure and Holidays            Beach Tourism
## 4203           Leisure and Holidays            Beach Tourism
## 4204           Leisure and Holidays         Wildlife Tourism
## 4205           Leisure and Holidays            Beach Tourism
## 4206           Leisure and Holidays            Beach Tourism
## 4207           Leisure and Holidays          Widlife Tourism
## 4208           Leisure and Holidays          Widlife Tourism
## 4209 Visiting Friends and Relatives          Hunting Tourism
## 4210           Leisure and Holidays            Beach Tourism
## 4211        Meetings and Conference        Mountain Climbing
## 4212           Leisure and Holidays            Beach Tourism
## 4213           Leisure and Holidays       Conference Tourism
## 4214           Leisure and Holidays          Widlife Tourism
## 4215           Leisure and Holidays            Beach Tourism
## 4216           Leisure and Holidays            Beach Tourism
## 4218                       Business        Mountain Climbing
## 4219           Leisure and Holidays          Widlife Tourism
## 4220           Leisure and Holidays          Widlife Tourism
## 4221           Leisure and Holidays       Conference Tourism
## 4222           Leisure and Holidays          Widlife Tourism
## 4223                       Business            Beach Tourism
## 4224           Leisure and Holidays          Widlife Tourism
## 4225           Leisure and Holidays         Wildlife Tourism
## 4226        Meetings and Conference        Mountain Climbing
## 4227           Leisure and Holidays         Wildlife Tourism
## 4228        Meetings and Conference          Widlife Tourism
## 4229           Leisure and Holidays          Widlife Tourism
## 4230           Leisure and Holidays       Conference Tourism
## 4231           Leisure and Holidays                 Business
## 4232           Leisure and Holidays         Cultural Tourism
## 4233           Leisure and Holidays          Widlife Tourism
## 4234           Leisure and Holidays          Widlife Tourism
## 4235        Meetings and Conference        Mountain Climbing
## 4236           Leisure and Holidays          Widlife Tourism
## 4238 Visiting Friends and Relatives          Widlife Tourism
## 4239           Leisure and Holidays         Cultural Tourism
## 4240                       Business         Cultural Tourism
## 4241           Leisure and Holidays          Widlife Tourism
## 4242           Leisure and Holidays            Beach Tourism
## 4243           Leisure and Holidays            Beach Tourism
## 4244        Meetings and Conference       Conference Tourism
## 4245                       Business          Hunting Tourism
## 4246           Leisure and Holidays         Wildlife Tourism
## 4247           Leisure and Holidays          Widlife Tourism
## 4248           Leisure and Holidays            Beach Tourism
## 4249 Visiting Friends and Relatives          Widlife Tourism
## 4250           Leisure and Holidays          Widlife Tourism
## 4251           Leisure and Holidays          Widlife Tourism
## 4252           Leisure and Holidays          Widlife Tourism
## 4253           Leisure and Holidays          Widlife Tourism
## 4254           Leisure and Holidays          Widlife Tourism
## 4255                       Business          Hunting Tourism
## 4256           Leisure and Holidays          Widlife Tourism
## 4257           Leisure and Holidays         Wildlife Tourism
## 4258           Leisure and Holidays            Beach Tourism
## 4259           Leisure and Holidays          Widlife Tourism
## 4260           Leisure and Holidays         Cultural Tourism
## 4261           Leisure and Holidays       Conference Tourism
## 4262           Leisure and Holidays          Widlife Tourism
## 4263           Leisure and Holidays         Cultural Tourism
## 4264 Visiting Friends and Relatives            Beach Tourism
## 4265           Leisure and Holidays            Beach Tourism
## 4266        Meetings and Conference       Conference Tourism
## 4267 Visiting Friends and Relatives          Hunting Tourism
## 4268           Leisure and Holidays          Widlife Tourism
## 4269                       Business         Wildlife Tourism
## 4270           Leisure and Holidays         Cultural Tourism
## 4271           Leisure and Holidays         Wildlife Tourism
## 4272           Leisure and Holidays          Widlife Tourism
## 4273        Meetings and Conference          Widlife Tourism
## 4274 Visiting Friends and Relatives          Hunting Tourism
## 4275 Visiting Friends and Relatives         Cultural Tourism
## 4276           Leisure and Holidays            Beach Tourism
## 4277           Leisure and Holidays            Beach Tourism
## 4278           Leisure and Holidays          Widlife Tourism
## 4279           Leisure and Holidays          Widlife Tourism
## 4280 Visiting Friends and Relatives          Widlife Tourism
## 4281           Leisure and Holidays            Beach Tourism
## 4282           Leisure and Holidays          Widlife Tourism
## 4283                       Business          Widlife Tourism
## 4284           Leisure and Holidays         Wildlife Tourism
## 4285 Visiting Friends and Relatives         Wildlife Tourism
## 4286           Leisure and Holidays            Beach Tourism
## 4287           Leisure and Holidays            Beach Tourism
## 4288           Leisure and Holidays                 Business
## 4289           Leisure and Holidays         Cultural Tourism
## 4290           Leisure and Holidays         Wildlife Tourism
## 4291           Leisure and Holidays         Wildlife Tourism
## 4292           Leisure and Holidays          Widlife Tourism
## 4293           Leisure and Holidays       Conference Tourism
## 4294           Leisure and Holidays            Beach Tourism
## 4295 Visiting Friends and Relatives          Hunting Tourism
## 4296        Scientific and Academic            Beach Tourism
## 4297           Leisure and Holidays          Widlife Tourism
## 4298           Leisure and Holidays            Beach Tourism
## 4299           Leisure and Holidays            Beach Tourism
## 4300           Leisure and Holidays          Widlife Tourism
## 4301           Leisure and Holidays       Conference Tourism
## 4302           Leisure and Holidays       Conference Tourism
## 4303        Meetings and Conference            Beach Tourism
## 4304           Leisure and Holidays            Beach Tourism
## 4305           Leisure and Holidays            Beach Tourism
## 4306           Leisure and Holidays          Widlife Tourism
## 4307           Leisure and Holidays            Beach Tourism
## 4308                       Business          Widlife Tourism
## 4309           Leisure and Holidays            Beach Tourism
## 4310           Leisure and Holidays          Widlife Tourism
## 4311           Leisure and Holidays            Beach Tourism
## 4312           Leisure and Holidays         Cultural Tourism
## 4313 Visiting Friends and Relatives       Conference Tourism
## 4315        Meetings and Conference          Widlife Tourism
## 4316           Leisure and Holidays            Beach Tourism
## 4317                       Business         Wildlife Tourism
## 4318           Leisure and Holidays            Beach Tourism
## 4319           Leisure and Holidays          Widlife Tourism
## 4320           Leisure and Holidays         Cultural Tourism
## 4321           Leisure and Holidays            Beach Tourism
## 4323           Leisure and Holidays          Widlife Tourism
## 4324                       Business          Hunting Tourism
## 4325           Leisure and Holidays         Wildlife Tourism
## 4326        Meetings and Conference        Mountain Climbing
## 4327           Leisure and Holidays            Beach Tourism
## 4328           Leisure and Holidays            Beach Tourism
## 4329        Meetings and Conference            Beach Tourism
## 4330 Visiting Friends and Relatives            Beach Tourism
## 4331 Visiting Friends and Relatives          Hunting Tourism
## 4332                       Business         Cultural Tourism
## 4333           Leisure and Holidays       Conference Tourism
## 4335           Leisure and Holidays            Beach Tourism
## 4336                       Business         Wildlife Tourism
## 4337           Leisure and Holidays          Widlife Tourism
## 4338 Visiting Friends and Relatives         Wildlife Tourism
## 4341           Leisure and Holidays            Beach Tourism
## 4342           Leisure and Holidays          Widlife Tourism
## 4343                          Other          Widlife Tourism
## 4344           Leisure and Holidays          Widlife Tourism
## 4345           Leisure and Holidays          Widlife Tourism
## 4346           Leisure and Holidays            Beach Tourism
## 4347 Visiting Friends and Relatives          Hunting Tourism
## 4348 Visiting Friends and Relatives          Hunting Tourism
## 4349           Leisure and Holidays          Widlife Tourism
## 4350           Leisure and Holidays       Conference Tourism
## 4351           Leisure and Holidays          Widlife Tourism
## 4352           Leisure and Holidays            Beach Tourism
## 4353                       Business         Cultural Tourism
## 4354           Leisure and Holidays       Conference Tourism
## 4355           Leisure and Holidays          Widlife Tourism
## 4356                       Business          Widlife Tourism
## 4357           Leisure and Holidays          Widlife Tourism
## 4358 Visiting Friends and Relatives          Hunting Tourism
## 4359 Visiting Friends and Relatives            Beach Tourism
## 4360 Visiting Friends and Relatives         Cultural Tourism
## 4361           Leisure and Holidays          Widlife Tourism
## 4362        Meetings and Conference          Widlife Tourism
## 4364 Visiting Friends and Relatives         Cultural Tourism
## 4365 Visiting Friends and Relatives            Beach Tourism
## 4366           Leisure and Holidays       Conference Tourism
## 4367           Leisure and Holidays            Beach Tourism
## 4368 Visiting Friends and Relatives         Cultural Tourism
## 4369                       Business          Hunting Tourism
## 4370                       Business          Hunting Tourism
## 4371                       Business          Widlife Tourism
## 4372           Leisure and Holidays            Beach Tourism
## 4373           Leisure and Holidays          Widlife Tourism
## 4374           Leisure and Holidays            Beach Tourism
## 4376           Leisure and Holidays            Beach Tourism
## 4377 Visiting Friends and Relatives          Widlife Tourism
## 4378           Leisure and Holidays       Conference Tourism
## 4379 Visiting Friends and Relatives         Cultural Tourism
## 4380                       Business          Hunting Tourism
## 4381        Meetings and Conference            Beach Tourism
## 4382           Leisure and Holidays         Wildlife Tourism
## 4383 Visiting Friends and Relatives          Hunting Tourism
## 4384                   Volunteering         Cultural Tourism
## 4385           Leisure and Holidays         Cultural Tourism
## 4386           Leisure and Holidays          Widlife Tourism
## 4387 Visiting Friends and Relatives          Hunting Tourism
## 4388           Leisure and Holidays            Beach Tourism
## 4389                       Business          Widlife Tourism
## 4390 Visiting Friends and Relatives          Hunting Tourism
## 4391           Leisure and Holidays            Beach Tourism
## 4392           Leisure and Holidays            Beach Tourism
## 4393           Leisure and Holidays          Widlife Tourism
## 4394           Leisure and Holidays         Wildlife Tourism
## 4395           Leisure and Holidays       Conference Tourism
## 4396           Leisure and Holidays          Widlife Tourism
## 4397           Leisure and Holidays            Beach Tourism
## 4398           Leisure and Holidays          Widlife Tourism
## 4400 Visiting Friends and Relatives         Cultural Tourism
## 4401           Leisure and Holidays          Widlife Tourism
## 4403           Leisure and Holidays          Widlife Tourism
## 4404           Leisure and Holidays         Cultural Tourism
## 4405           Leisure and Holidays          Widlife Tourism
## 4406        Scientific and Academic         Wildlife Tourism
## 4407           Leisure and Holidays          Widlife Tourism
## 4408           Leisure and Holidays       Conference Tourism
## 4409           Leisure and Holidays            Beach Tourism
## 4410           Leisure and Holidays            Beach Tourism
## 4411           Leisure and Holidays       Conference Tourism
## 4412           Leisure and Holidays          Widlife Tourism
## 4413 Visiting Friends and Relatives        Mountain Climbing
## 4414           Leisure and Holidays       Conference Tourism
## 4415           Leisure and Holidays       Conference Tourism
## 4416           Leisure and Holidays          Widlife Tourism
## 4417           Leisure and Holidays          Widlife Tourism
## 4418           Leisure and Holidays          Widlife Tourism
## 4419        Meetings and Conference        Mountain Climbing
## 4420           Leisure and Holidays          Widlife Tourism
## 4421 Visiting Friends and Relatives         Cultural Tourism
## 4423                       Business         Wildlife Tourism
## 4424        Meetings and Conference          Widlife Tourism
## 4425           Leisure and Holidays          Widlife Tourism
## 4426                       Business            Beach Tourism
## 4427           Leisure and Holidays         Wildlife Tourism
## 4428           Leisure and Holidays          Widlife Tourism
## 4429 Visiting Friends and Relatives          Widlife Tourism
## 4430           Leisure and Holidays       Conference Tourism
## 4431 Visiting Friends and Relatives         Cultural Tourism
## 4432           Leisure and Holidays          Widlife Tourism
## 4433           Leisure and Holidays         Wildlife Tourism
## 4434           Leisure and Holidays            Beach Tourism
## 4435           Leisure and Holidays          Widlife Tourism
## 4436           Leisure and Holidays          Widlife Tourism
## 4437           Leisure and Holidays            Beach Tourism
## 4438           Leisure and Holidays            Beach Tourism
## 4439           Leisure and Holidays         Wildlife Tourism
## 4440           Leisure and Holidays          Widlife Tourism
## 4441 Visiting Friends and Relatives             Bird Tourism
## 4442           Leisure and Holidays       Conference Tourism
## 4443           Leisure and Holidays                 Business
## 4444           Leisure and Holidays            Beach Tourism
## 4445        Meetings and Conference          Hunting Tourism
## 4447           Leisure and Holidays         Wildlife Tourism
## 4448        Meetings and Conference         Wildlife Tourism
## 4450        Meetings and Conference          Widlife Tourism
## 4451           Leisure and Holidays            Beach Tourism
## 4452           Leisure and Holidays          Widlife Tourism
## 4453                       Business          Hunting Tourism
## 4454           Leisure and Holidays            Beach Tourism
## 4455 Visiting Friends and Relatives          Hunting Tourism
## 4456                       Business          Hunting Tourism
## 4457           Leisure and Holidays          Widlife Tourism
## 4458           Leisure and Holidays                 Business
## 4459           Leisure and Holidays         Wildlife Tourism
## 4460           Leisure and Holidays            Beach Tourism
## 4461 Visiting Friends and Relatives            Beach Tourism
## 4463           Leisure and Holidays         Wildlife Tourism
## 4464           Leisure and Holidays          Widlife Tourism
## 4465                       Business         Wildlife Tourism
## 4466           Leisure and Holidays         Cultural Tourism
## 4467        Meetings and Conference            Beach Tourism
## 4468           Leisure and Holidays                 Business
## 4469        Meetings and Conference          Widlife Tourism
## 4470           Leisure and Holidays          Widlife Tourism
## 4471           Leisure and Holidays          Widlife Tourism
## 4472           Leisure and Holidays          Widlife Tourism
## 4473           Leisure and Holidays          Widlife Tourism
## 4474           Leisure and Holidays         Wildlife Tourism
## 4475           Leisure and Holidays            Beach Tourism
## 4476           Leisure and Holidays         Wildlife Tourism
## 4477           Leisure and Holidays         Wildlife Tourism
## 4478                       Business         Cultural Tourism
## 4479           Leisure and Holidays            Beach Tourism
## 4480           Leisure and Holidays Diving and Sport Fishing
## 4481 Visiting Friends and Relatives            Beach Tourism
## 4482           Leisure and Holidays            Beach Tourism
## 4483           Leisure and Holidays         Wildlife Tourism
## 4484 Visiting Friends and Relatives          Widlife Tourism
## 4485           Leisure and Holidays          Widlife Tourism
## 4486           Leisure and Holidays          Widlife Tourism
## 4487                       Business       Conference Tourism
## 4488           Leisure and Holidays         Cultural Tourism
## 4489 Visiting Friends and Relatives       Conference Tourism
## 4490        Meetings and Conference        Mountain Climbing
## 4491        Meetings and Conference       Conference Tourism
## 4492           Leisure and Holidays          Widlife Tourism
## 4493                   Volunteering          Hunting Tourism
## 4494                       Business       Conference Tourism
## 4495                       Business          Widlife Tourism
## 4496                   Volunteering          Hunting Tourism
## 4497           Leisure and Holidays          Widlife Tourism
## 4498           Leisure and Holidays            Beach Tourism
## 4499           Leisure and Holidays          Widlife Tourism
## 4500           Leisure and Holidays          Widlife Tourism
## 4501           Leisure and Holidays            Beach Tourism
## 4502           Leisure and Holidays            Beach Tourism
## 4503                   Volunteering          Hunting Tourism
## 4504           Leisure and Holidays          Widlife Tourism
## 4505           Leisure and Holidays       Conference Tourism
## 4506           Leisure and Holidays             Bird Tourism
## 4507           Leisure and Holidays          Widlife Tourism
## 4508           Leisure and Holidays       Conference Tourism
## 4509           Leisure and Holidays            Beach Tourism
## 4510 Visiting Friends and Relatives            Beach Tourism
## 4511        Meetings and Conference       Conference Tourism
## 4512           Leisure and Holidays       Conference Tourism
## 4513           Leisure and Holidays            Beach Tourism
## 4514 Visiting Friends and Relatives            Beach Tourism
## 4515                          Other          Widlife Tourism
## 4516                       Business          Widlife Tourism
## 4517                       Business            Beach Tourism
## 4518                   Volunteering         Cultural Tourism
## 4519        Meetings and Conference            Beach Tourism
## 4520           Leisure and Holidays       Conference Tourism
## 4521           Leisure and Holidays          Widlife Tourism
## 4522 Visiting Friends and Relatives       Conference Tourism
## 4523           Leisure and Holidays            Beach Tourism
## 4524           Leisure and Holidays          Widlife Tourism
## 4525           Leisure and Holidays            Beach Tourism
## 4526           Leisure and Holidays       Conference Tourism
## 4527                       Business       Conference Tourism
## 4528           Leisure and Holidays            Beach Tourism
## 4529           Leisure and Holidays          Widlife Tourism
## 4530           Leisure and Holidays       Conference Tourism
## 4531           Leisure and Holidays          Widlife Tourism
## 4532           Leisure and Holidays          Widlife Tourism
## 4533           Leisure and Holidays            Beach Tourism
## 4534           Leisure and Holidays       Conference Tourism
## 4536           Leisure and Holidays            Beach Tourism
## 4537        Meetings and Conference         Cultural Tourism
## 4538           Leisure and Holidays            Beach Tourism
## 4539           Leisure and Holidays         Wildlife Tourism
## 4540           Leisure and Holidays          Widlife Tourism
## 4541           Leisure and Holidays            Beach Tourism
## 4542 Visiting Friends and Relatives          Widlife Tourism
## 4543                       Business        Mountain Climbing
## 4544           Leisure and Holidays            Beach Tourism
## 4545           Leisure and Holidays       Conference Tourism
## 4546                       Business         Wildlife Tourism
## 4547           Leisure and Holidays          Widlife Tourism
## 4548           Leisure and Holidays         Wildlife Tourism
## 4549           Leisure and Holidays            Beach Tourism
## 4551           Leisure and Holidays         Cultural Tourism
## 4552                          Other            Beach Tourism
## 4553           Leisure and Holidays          Widlife Tourism
## 4554        Scientific and Academic       Conference Tourism
## 4555           Leisure and Holidays       Conference Tourism
## 4557 Visiting Friends and Relatives          Widlife Tourism
## 4558           Leisure and Holidays       Conference Tourism
## 4559 Visiting Friends and Relatives          Hunting Tourism
## 4560 Visiting Friends and Relatives          Widlife Tourism
## 4561           Leisure and Holidays         Wildlife Tourism
## 4562                   Volunteering         Cultural Tourism
## 4563        Meetings and Conference       Conference Tourism
## 4564           Leisure and Holidays          Widlife Tourism
## 4565           Leisure and Holidays          Widlife Tourism
## 4566 Visiting Friends and Relatives         Cultural Tourism
## 4567           Leisure and Holidays       Conference Tourism
## 4568                          Other       Conference Tourism
## 4569           Leisure and Holidays          Widlife Tourism
## 4570           Leisure and Holidays            Beach Tourism
## 4572           Leisure and Holidays            Beach Tourism
## 4573           Leisure and Holidays            Beach Tourism
## 4574           Leisure and Holidays       Conference Tourism
## 4575 Visiting Friends and Relatives         Cultural Tourism
## 4576                       Business       Conference Tourism
## 4577           Leisure and Holidays          Widlife Tourism
## 4578                       Business          Widlife Tourism
## 4579           Leisure and Holidays          Widlife Tourism
## 4581                       Business          Widlife Tourism
## 4582           Leisure and Holidays          Widlife Tourism
## 4583           Leisure and Holidays          Widlife Tourism
## 4584           Leisure and Holidays          Widlife Tourism
## 4585           Leisure and Holidays          Widlife Tourism
## 4586 Visiting Friends and Relatives          Hunting Tourism
## 4587 Visiting Friends and Relatives        Mountain Climbing
## 4588 Visiting Friends and Relatives          Widlife Tourism
## 4589           Leisure and Holidays            Beach Tourism
## 4590                       Business          Widlife Tourism
## 4591           Leisure and Holidays         Wildlife Tourism
## 4592           Leisure and Holidays          Widlife Tourism
## 4594           Leisure and Holidays          Widlife Tourism
## 4595           Leisure and Holidays                 Business
## 4596        Meetings and Conference        Mountain Climbing
## 4597           Leisure and Holidays          Widlife Tourism
## 4598 Visiting Friends and Relatives            Beach Tourism
## 4599                       Business            Beach Tourism
## 4600                       Business          Widlife Tourism
## 4601           Leisure and Holidays         Wildlife Tourism
## 4602                          Other          Hunting Tourism
## 4603           Leisure and Holidays         Wildlife Tourism
## 4604           Leisure and Holidays          Widlife Tourism
## 4605                       Business        Mountain Climbing
## 4606 Visiting Friends and Relatives            Beach Tourism
## 4608           Leisure and Holidays          Widlife Tourism
## 4609           Leisure and Holidays       Conference Tourism
## 4610 Visiting Friends and Relatives         Cultural Tourism
## 4611           Leisure and Holidays          Widlife Tourism
## 4612                       Business             Bird Tourism
## 4613                   Volunteering          Widlife Tourism
## 4614           Leisure and Holidays          Widlife Tourism
## 4616           Leisure and Holidays         Cultural Tourism
## 4617           Leisure and Holidays            Beach Tourism
## 4618           Leisure and Holidays          Widlife Tourism
## 4619        Meetings and Conference         Wildlife Tourism
## 4620        Meetings and Conference          Hunting Tourism
## 4621           Leisure and Holidays         Cultural Tourism
## 4622                       Business         Cultural Tourism
## 4623                       Business          Widlife Tourism
## 4624           Leisure and Holidays            Beach Tourism
## 4625                   Volunteering             Bird Tourism
## 4626           Leisure and Holidays       Conference Tourism
## 4627                       Business          Widlife Tourism
## 4628                       Business       Conference Tourism
## 4630           Leisure and Holidays            Beach Tourism
## 4631           Leisure and Holidays         Wildlife Tourism
## 4632        Meetings and Conference            Beach Tourism
## 4633                       Business          Widlife Tourism
## 4634           Leisure and Holidays       Conference Tourism
## 4635        Meetings and Conference        Mountain Climbing
## 4636           Leisure and Holidays         Wildlife Tourism
## 4637           Leisure and Holidays         Cultural Tourism
## 4638           Leisure and Holidays            Beach Tourism
## 4639           Leisure and Holidays            Beach Tourism
## 4640           Leisure and Holidays            Beach Tourism
## 4641 Visiting Friends and Relatives            Beach Tourism
## 4642           Leisure and Holidays          Widlife Tourism
## 4643           Leisure and Holidays            Beach Tourism
## 4645           Leisure and Holidays          Widlife Tourism
## 4646        Meetings and Conference       Conference Tourism
## 4647           Leisure and Holidays          Widlife Tourism
## 4648           Leisure and Holidays          Widlife Tourism
## 4649           Leisure and Holidays         Wildlife Tourism
## 4650 Visiting Friends and Relatives          Widlife Tourism
## 4651           Leisure and Holidays         Cultural Tourism
## 4652           Leisure and Holidays                 Business
## 4654        Meetings and Conference        Mountain Climbing
## 4655                       Business            Beach Tourism
## 4656           Leisure and Holidays          Widlife Tourism
## 4658                       Business          Widlife Tourism
## 4659           Leisure and Holidays          Widlife Tourism
## 4660 Visiting Friends and Relatives         Cultural Tourism
## 4661           Leisure and Holidays          Widlife Tourism
## 4662 Visiting Friends and Relatives          Widlife Tourism
## 4663           Leisure and Holidays            Beach Tourism
## 4664                       Business          Widlife Tourism
## 4665           Leisure and Holidays                 Business
## 4666 Visiting Friends and Relatives            Beach Tourism
## 4667 Visiting Friends and Relatives            Beach Tourism
## 4668           Leisure and Holidays          Widlife Tourism
## 4669           Leisure and Holidays       Conference Tourism
## 4670                       Business         Wildlife Tourism
## 4671           Leisure and Holidays          Widlife Tourism
## 4672           Leisure and Holidays            Beach Tourism
## 4673        Meetings and Conference         Wildlife Tourism
## 4674                       Business         Wildlife Tourism
## 4675           Leisure and Holidays          Widlife Tourism
## 4676           Leisure and Holidays       Conference Tourism
## 4677           Leisure and Holidays          Widlife Tourism
## 4678           Leisure and Holidays          Widlife Tourism
## 4679           Leisure and Holidays         Wildlife Tourism
## 4680           Leisure and Holidays          Widlife Tourism
## 4681           Leisure and Holidays          Widlife Tourism
## 4682           Leisure and Holidays          Widlife Tourism
## 4683        Meetings and Conference        Mountain Climbing
## 4684        Meetings and Conference        Mountain Climbing
## 4685           Leisure and Holidays          Widlife Tourism
## 4686                       Business         Cultural Tourism
## 4687 Visiting Friends and Relatives          Hunting Tourism
## 4688                       Business         Cultural Tourism
## 4689           Leisure and Holidays          Widlife Tourism
## 4690           Leisure and Holidays            Beach Tourism
## 4691           Leisure and Holidays            Beach Tourism
## 4692           Leisure and Holidays          Widlife Tourism
## 4693 Visiting Friends and Relatives          Hunting Tourism
## 4694           Leisure and Holidays         Cultural Tourism
## 4695 Visiting Friends and Relatives            Beach Tourism
## 4696                       Business         Cultural Tourism
## 4697        Scientific and Academic         Wildlife Tourism
## 4698           Leisure and Holidays          Widlife Tourism
## 4699 Visiting Friends and Relatives         Cultural Tourism
## 4700           Leisure and Holidays         Wildlife Tourism
## 4701                       Business         Wildlife Tourism
## 4702           Leisure and Holidays          Widlife Tourism
## 4703        Scientific and Academic            Beach Tourism
## 4704        Scientific and Academic         Wildlife Tourism
## 4705           Leisure and Holidays          Widlife Tourism
## 4706           Leisure and Holidays          Hunting Tourism
## 4707 Visiting Friends and Relatives          Hunting Tourism
## 4708 Visiting Friends and Relatives          Widlife Tourism
## 4709           Leisure and Holidays         Cultural Tourism
## 4711                   Volunteering         Cultural Tourism
## 4712                       Business         Cultural Tourism
## 4713           Leisure and Holidays            Beach Tourism
## 4714           Leisure and Holidays          Widlife Tourism
## 4715           Leisure and Holidays         Cultural Tourism
## 4717           Leisure and Holidays          Widlife Tourism
## 4718           Leisure and Holidays          Widlife Tourism
## 4719           Leisure and Holidays          Widlife Tourism
## 4720 Visiting Friends and Relatives          Hunting Tourism
## 4721           Leisure and Holidays          Widlife Tourism
## 4722           Leisure and Holidays          Widlife Tourism
## 4723           Leisure and Holidays          Widlife Tourism
## 4724                       Business          Hunting Tourism
## 4725           Leisure and Holidays          Hunting Tourism
## 4726           Leisure and Holidays          Widlife Tourism
## 4727        Meetings and Conference        Mountain Climbing
## 4728        Meetings and Conference          Widlife Tourism
## 4729 Visiting Friends and Relatives         Cultural Tourism
## 4730           Leisure and Holidays            Beach Tourism
## 4731        Scientific and Academic          Hunting Tourism
## 4732        Meetings and Conference        Mountain Climbing
## 4733 Visiting Friends and Relatives         Cultural Tourism
## 4734           Leisure and Holidays          Widlife Tourism
## 4735        Meetings and Conference        Mountain Climbing
## 4736           Leisure and Holidays          Widlife Tourism
## 4737           Leisure and Holidays          Widlife Tourism
## 4738           Leisure and Holidays       Conference Tourism
## 4739           Leisure and Holidays       Conference Tourism
## 4740                       Business            Beach Tourism
## 4741           Leisure and Holidays          Widlife Tourism
## 4742 Visiting Friends and Relatives         Cultural Tourism
## 4743        Meetings and Conference            Beach Tourism
## 4744           Leisure and Holidays         Cultural Tourism
## 4745                       Business          Hunting Tourism
## 4746           Leisure and Holidays            Beach Tourism
## 4747 Visiting Friends and Relatives                 Business
## 4748           Leisure and Holidays         Wildlife Tourism
## 4749           Leisure and Holidays            Beach Tourism
## 4750                   Volunteering            Beach Tourism
## 4751                   Volunteering          Widlife Tourism
## 4752           Leisure and Holidays          Widlife Tourism
## 4753           Leisure and Holidays          Widlife Tourism
## 4754           Leisure and Holidays         Cultural Tourism
## 4755        Meetings and Conference          Widlife Tourism
## 4756           Leisure and Holidays            Beach Tourism
## 4757        Meetings and Conference          Widlife Tourism
## 4758           Leisure and Holidays            Beach Tourism
## 4759           Leisure and Holidays          Widlife Tourism
## 4760           Leisure and Holidays         Wildlife Tourism
## 4761           Leisure and Holidays         Cultural Tourism
## 4762           Leisure and Holidays          Widlife Tourism
## 4763        Meetings and Conference          Widlife Tourism
## 4764           Leisure and Holidays       Conference Tourism
## 4765           Leisure and Holidays          Widlife Tourism
## 4766                   Volunteering         Cultural Tourism
## 4767                       Business          Hunting Tourism
## 4768                   Volunteering          Widlife Tourism
## 4769 Visiting Friends and Relatives          Widlife Tourism
## 4770           Leisure and Holidays          Widlife Tourism
## 4771           Leisure and Holidays         Wildlife Tourism
## 4772                       Business         Cultural Tourism
## 4773           Leisure and Holidays         Cultural Tourism
## 4774 Visiting Friends and Relatives       Conference Tourism
## 4775           Leisure and Holidays          Widlife Tourism
## 4776           Leisure and Holidays          Widlife Tourism
## 4777           Leisure and Holidays          Widlife Tourism
## 4778                   Volunteering         Cultural Tourism
## 4780           Leisure and Holidays         Wildlife Tourism
## 4781           Leisure and Holidays         Wildlife Tourism
## 4782           Leisure and Holidays       Conference Tourism
## 4783           Leisure and Holidays         Cultural Tourism
## 4784           Leisure and Holidays          Widlife Tourism
## 4785 Visiting Friends and Relatives         Cultural Tourism
## 4786        Meetings and Conference            Beach Tourism
## 4788           Leisure and Holidays         Wildlife Tourism
## 4789                       Business          Widlife Tourism
## 4790                       Business          Hunting Tourism
## 4791           Leisure and Holidays            Beach Tourism
## 4792           Leisure and Holidays          Widlife Tourism
## 4793           Leisure and Holidays         Wildlife Tourism
## 4794 Visiting Friends and Relatives          Hunting Tourism
## 4795           Leisure and Holidays          Widlife Tourism
## 4796           Leisure and Holidays       Conference Tourism
## 4797           Leisure and Holidays         Wildlife Tourism
## 4798           Leisure and Holidays          Widlife Tourism
## 4799           Leisure and Holidays                 Business
## 4800           Leisure and Holidays          Widlife Tourism
## 4801 Visiting Friends and Relatives          Widlife Tourism
## 4802           Leisure and Holidays          Widlife Tourism
## 4803           Leisure and Holidays          Widlife Tourism
## 4804 Visiting Friends and Relatives            Beach Tourism
## 4806           Leisure and Holidays            Beach Tourism
## 4808           Leisure and Holidays            Beach Tourism
## 4810           Leisure and Holidays         Wildlife Tourism
## 4811                       Business        Mountain Climbing
## 4812           Leisure and Holidays          Widlife Tourism
## 4813           Leisure and Holidays            Beach Tourism
## 4815           Leisure and Holidays          Widlife Tourism
## 4816           Leisure and Holidays          Widlife Tourism
## 4817                       Business          Hunting Tourism
## 4818           Leisure and Holidays            Beach Tourism
## 4819           Leisure and Holidays          Hunting Tourism
## 4822                       Business          Widlife Tourism
## 4823           Leisure and Holidays            Beach Tourism
## 4824                       Business        Mountain Climbing
## 4825           Leisure and Holidays          Widlife Tourism
## 4826           Leisure and Holidays          Widlife Tourism
## 4827           Leisure and Holidays            Beach Tourism
## 4828           Leisure and Holidays       Conference Tourism
## 4829           Leisure and Holidays          Widlife Tourism
## 4830        Meetings and Conference        Mountain Climbing
## 4831           Leisure and Holidays          Widlife Tourism
## 4832           Leisure and Holidays       Conference Tourism
## 4833           Leisure and Holidays          Widlife Tourism
## 4834           Leisure and Holidays          Widlife Tourism
## 4835           Leisure and Holidays            Beach Tourism
## 4836                       Business          Widlife Tourism
## 4837           Leisure and Holidays         Cultural Tourism
## 4838           Leisure and Holidays          Hunting Tourism
## 4839        Meetings and Conference       Conference Tourism
## 4840           Leisure and Holidays            Beach Tourism
## 4842           Leisure and Holidays            Beach Tourism
## 4843           Leisure and Holidays          Widlife Tourism
## 4844           Leisure and Holidays            Beach Tourism
## 4845                       Business         Wildlife Tourism
## 4846           Leisure and Holidays       Conference Tourism
## 4847           Leisure and Holidays          Widlife Tourism
## 4848 Visiting Friends and Relatives            Beach Tourism
## 4849                          Other         Cultural Tourism
## 4850           Leisure and Holidays            Beach Tourism
## 4851                       Business          Hunting Tourism
## 4852           Leisure and Holidays                 Business
## 4853                       Business         Cultural Tourism
## 4854           Leisure and Holidays          Widlife Tourism
## 4855           Leisure and Holidays            Beach Tourism
## 4856           Leisure and Holidays          Widlife Tourism
## 4857                       Business            Beach Tourism
## 4858           Leisure and Holidays            Beach Tourism
## 4859           Leisure and Holidays          Widlife Tourism
## 4860                       Business         Wildlife Tourism
## 4861           Leisure and Holidays            Beach Tourism
## 4862 Visiting Friends and Relatives            Beach Tourism
## 4863           Leisure and Holidays          Widlife Tourism
## 4865                       Business          Hunting Tourism
## 4866 Visiting Friends and Relatives          Hunting Tourism
## 4867                          Other         Cultural Tourism
## 4868           Leisure and Holidays                 Business
## 4869                       Business       Conference Tourism
## 4870        Meetings and Conference         Cultural Tourism
## 4871           Leisure and Holidays         Wildlife Tourism
## 4872           Leisure and Holidays         Wildlife Tourism
## 4874           Leisure and Holidays            Beach Tourism
## 4875           Leisure and Holidays                 Business
## 4876           Leisure and Holidays            Beach Tourism
## 4877           Leisure and Holidays       Conference Tourism
## 4878                       Business         Wildlife Tourism
## 4879           Leisure and Holidays          Widlife Tourism
## 4880        Meetings and Conference            Beach Tourism
## 4881           Leisure and Holidays            Beach Tourism
## 4882           Leisure and Holidays          Widlife Tourism
## 4883           Leisure and Holidays            Beach Tourism
## 4884           Leisure and Holidays          Widlife Tourism
## 4885           Leisure and Holidays       Conference Tourism
## 4886                   Volunteering         Wildlife Tourism
## 4887           Leisure and Holidays          Widlife Tourism
## 4888           Leisure and Holidays          Widlife Tourism
## 4889           Leisure and Holidays          Widlife Tourism
## 4890           Leisure and Holidays            Beach Tourism
## 4891           Leisure and Holidays          Widlife Tourism
## 4892           Leisure and Holidays         Wildlife Tourism
## 4893 Visiting Friends and Relatives         Cultural Tourism
## 4894           Leisure and Holidays            Beach Tourism
## 4896           Leisure and Holidays         Wildlife Tourism
## 4897 Visiting Friends and Relatives            Beach Tourism
## 4898           Leisure and Holidays          Widlife Tourism
## 4899           Leisure and Holidays                 Business
## 4900           Leisure and Holidays       Conference Tourism
## 4901 Visiting Friends and Relatives          Widlife Tourism
## 4902           Leisure and Holidays          Widlife Tourism
## 4903 Visiting Friends and Relatives          Widlife Tourism
## 4904 Visiting Friends and Relatives         Wildlife Tourism
## 4905 Visiting Friends and Relatives         Cultural Tourism
## 4906           Leisure and Holidays                 Business
## 4907                       Business         Wildlife Tourism
## 4908        Meetings and Conference       Conference Tourism
## 4909        Meetings and Conference          Widlife Tourism
## 4910                          Other          Hunting Tourism
## 4911           Leisure and Holidays            Beach Tourism
## 4912           Leisure and Holidays       Conference Tourism
## 4913           Leisure and Holidays            Beach Tourism
## 4914           Leisure and Holidays          Widlife Tourism
## 4916           Leisure and Holidays            Beach Tourism
## 4917 Visiting Friends and Relatives            Beach Tourism
## 4918                          Other          Widlife Tourism
## 4919 Visiting Friends and Relatives          Widlife Tourism
## 4920                       Business          Widlife Tourism
## 4921 Visiting Friends and Relatives         Wildlife Tourism
## 4922           Leisure and Holidays            Beach Tourism
## 4923           Leisure and Holidays          Widlife Tourism
## 4924           Leisure and Holidays          Widlife Tourism
## 4925           Leisure and Holidays       Conference Tourism
## 4926           Leisure and Holidays       Conference Tourism
## 4927 Visiting Friends and Relatives          Hunting Tourism
## 4928                       Business            Beach Tourism
## 4929 Visiting Friends and Relatives          Hunting Tourism
## 4930           Leisure and Holidays       Conference Tourism
## 4931           Leisure and Holidays            Beach Tourism
## 4932                          Other          Hunting Tourism
## 4933           Leisure and Holidays          Widlife Tourism
## 4934           Leisure and Holidays            Beach Tourism
## 4936           Leisure and Holidays          Widlife Tourism
## 4937           Leisure and Holidays       Conference Tourism
## 4938           Leisure and Holidays            Beach Tourism
## 4939                       Business         Wildlife Tourism
## 4940 Visiting Friends and Relatives          Hunting Tourism
## 4941           Leisure and Holidays          Widlife Tourism
## 4942           Leisure and Holidays          Widlife Tourism
## 4944           Leisure and Holidays          Widlife Tourism
## 4945        Meetings and Conference         Wildlife Tourism
## 4946           Leisure and Holidays            Beach Tourism
## 4947           Leisure and Holidays          Widlife Tourism
## 4948           Leisure and Holidays         Wildlife Tourism
## 4949        Meetings and Conference        Mountain Climbing
## 4950           Leisure and Holidays          Widlife Tourism
## 4951           Leisure and Holidays       Conference Tourism
## 4952           Leisure and Holidays          Widlife Tourism
## 4953           Leisure and Holidays          Widlife Tourism
## 4954           Leisure and Holidays       Conference Tourism
## 4956           Leisure and Holidays         Cultural Tourism
## 4957           Leisure and Holidays            Beach Tourism
## 4959           Leisure and Holidays       Conference Tourism
## 4960 Visiting Friends and Relatives          Hunting Tourism
## 4961        Meetings and Conference       Conference Tourism
## 4962           Leisure and Holidays          Widlife Tourism
## 4963                   Volunteering       Conference Tourism
## 4964           Leisure and Holidays       Conference Tourism
## 4965                       Business         Wildlife Tourism
## 4966                          Other          Widlife Tourism
## 4967                   Volunteering          Widlife Tourism
## 4968           Leisure and Holidays          Widlife Tourism
## 4969 Visiting Friends and Relatives         Cultural Tourism
## 4970           Leisure and Holidays          Widlife Tourism
## 4972           Leisure and Holidays       Conference Tourism
## 4973           Leisure and Holidays          Hunting Tourism
## 4974           Leisure and Holidays          Widlife Tourism
## 4975 Visiting Friends and Relatives          Hunting Tourism
## 4976           Leisure and Holidays            Beach Tourism
## 4977           Leisure and Holidays            Beach Tourism
## 4978                       Business          Widlife Tourism
## 4979        Meetings and Conference        Mountain Climbing
## 4980           Leisure and Holidays          Widlife Tourism
## 4981           Leisure and Holidays          Widlife Tourism
## 4982           Leisure and Holidays          Widlife Tourism
## 4983                       Business        Mountain Climbing
## 4984           Leisure and Holidays          Widlife Tourism
## 4985           Leisure and Holidays            Beach Tourism
## 4986           Leisure and Holidays         Cultural Tourism
## 4987 Visiting Friends and Relatives       Conference Tourism
## 4988           Leisure and Holidays          Widlife Tourism
## 4989           Leisure and Holidays            Beach Tourism
## 4990           Leisure and Holidays          Widlife Tourism
## 4991           Leisure and Holidays          Widlife Tourism
## 4993                       Business         Wildlife Tourism
## 4994                       Business            Beach Tourism
## 4995           Leisure and Holidays          Widlife Tourism
## 4996           Leisure and Holidays          Widlife Tourism
## 4997           Leisure and Holidays            Beach Tourism
## 4998           Leisure and Holidays            Beach Tourism
## 4999        Meetings and Conference       Conference Tourism
## 5000           Leisure and Holidays         Cultural Tourism
## 5001                       Business          Widlife Tourism
## 5002        Meetings and Conference          Hunting Tourism
## 5003           Leisure and Holidays       Conference Tourism
## 5004        Meetings and Conference       Conference Tourism
## 5005        Scientific and Academic            Beach Tourism
## 5006                       Business            Beach Tourism
## 5007 Visiting Friends and Relatives          Widlife Tourism
## 5008                       Business          Hunting Tourism
## 5009           Leisure and Holidays            Beach Tourism
## 5010           Leisure and Holidays          Widlife Tourism
## 5011           Leisure and Holidays          Widlife Tourism
## 5012           Leisure and Holidays          Widlife Tourism
## 5013           Leisure and Holidays         Wildlife Tourism
## 5014           Leisure and Holidays          Widlife Tourism
## 5017           Leisure and Holidays         Wildlife Tourism
## 5018        Meetings and Conference         Cultural Tourism
## 5019           Leisure and Holidays          Widlife Tourism
## 5021           Leisure and Holidays            Beach Tourism
## 5022           Leisure and Holidays            Beach Tourism
## 5023 Visiting Friends and Relatives          Widlife Tourism
## 5024           Leisure and Holidays         Cultural Tourism
## 5025           Leisure and Holidays            Beach Tourism
## 5026        Meetings and Conference          Widlife Tourism
## 5027           Leisure and Holidays            Beach Tourism
## 5028           Leisure and Holidays       Conference Tourism
## 5029           Leisure and Holidays          Widlife Tourism
## 5030        Meetings and Conference       Conference Tourism
## 5031           Leisure and Holidays          Widlife Tourism
## 5032 Visiting Friends and Relatives            Beach Tourism
## 5033 Visiting Friends and Relatives            Beach Tourism
## 5034 Visiting Friends and Relatives                 Business
## 5035                          Other         Cultural Tourism
## 5036           Leisure and Holidays         Cultural Tourism
## 5037           Leisure and Holidays         Wildlife Tourism
## 5038                       Business          Widlife Tourism
## 5039           Leisure and Holidays            Beach Tourism
## 5040           Leisure and Holidays            Beach Tourism
## 5041           Leisure and Holidays          Widlife Tourism
## 5042           Leisure and Holidays            Beach Tourism
## 5043           Leisure and Holidays            Beach Tourism
## 5044           Leisure and Holidays            Beach Tourism
## 5045                   Volunteering            Beach Tourism
## 5046           Leisure and Holidays          Widlife Tourism
## 5047           Leisure and Holidays            Beach Tourism
## 5048           Leisure and Holidays         Cultural Tourism
## 5049                       Business            Beach Tourism
## 5050           Leisure and Holidays            Beach Tourism
## 5051           Leisure and Holidays            Beach Tourism
## 5052 Visiting Friends and Relatives          Hunting Tourism
## 5053 Visiting Friends and Relatives            Beach Tourism
## 5054           Leisure and Holidays            Beach Tourism
## 5055           Leisure and Holidays            Beach Tourism
## 5056           Leisure and Holidays         Wildlife Tourism
## 5057           Leisure and Holidays            Beach Tourism
## 5058           Leisure and Holidays         Cultural Tourism
## 5059           Leisure and Holidays          Widlife Tourism
## 5060                       Business          Widlife Tourism
## 5061           Leisure and Holidays            Beach Tourism
## 5062           Leisure and Holidays          Widlife Tourism
## 5063           Leisure and Holidays            Beach Tourism
## 5064 Visiting Friends and Relatives          Hunting Tourism
## 5065           Leisure and Holidays            Beach Tourism
## 5066                       Business          Widlife Tourism
## 5067           Leisure and Holidays            Beach Tourism
## 5068                   Volunteering            Beach Tourism
## 5070           Leisure and Holidays         Wildlife Tourism
## 5071           Leisure and Holidays          Widlife Tourism
## 5072        Meetings and Conference       Conference Tourism
## 5073 Visiting Friends and Relatives         Cultural Tourism
## 5074                       Business          Hunting Tourism
## 5075           Leisure and Holidays            Beach Tourism
## 5076 Visiting Friends and Relatives          Widlife Tourism
## 5077           Leisure and Holidays          Widlife Tourism
## 5078           Leisure and Holidays         Wildlife Tourism
## 5079                       Business             Bird Tourism
## 5080           Leisure and Holidays            Beach Tourism
## 5081 Visiting Friends and Relatives            Beach Tourism
## 5082           Leisure and Holidays          Widlife Tourism
## 5083                   Volunteering         Cultural Tourism
## 5085           Leisure and Holidays          Widlife Tourism
## 5086           Leisure and Holidays            Beach Tourism
## 5087           Leisure and Holidays            Beach Tourism
## 5088           Leisure and Holidays          Widlife Tourism
## 5089 Visiting Friends and Relatives       Conference Tourism
## 5090           Leisure and Holidays          Widlife Tourism
## 5091        Meetings and Conference          Widlife Tourism
## 5092           Leisure and Holidays          Widlife Tourism
## 5093                       Business         Wildlife Tourism
## 5094        Meetings and Conference            Beach Tourism
## 5095           Leisure and Holidays            Beach Tourism
## 5096        Meetings and Conference          Widlife Tourism
## 5097                       Business        Mountain Climbing
## 5098           Leisure and Holidays       Conference Tourism
## 5099           Leisure and Holidays         Cultural Tourism
## 5100           Leisure and Holidays            Beach Tourism
## 5101           Leisure and Holidays       Conference Tourism
##                          info_source tour_arrangement package_transport_int
## 1                             Others      Independent                    No
## 2        Travel agent, tour operator     Package Tour                   Yes
## 3        Travel agent, tour operator     Package Tour                   Yes
## 4                     Radio, TV, Web      Independent                    No
## 5                     Radio, TV, Web      Independent                    No
## 6                 Friends, relatives      Independent                    No
## 7        Travel agent, tour operator     Package Tour                   Yes
## 8                 Friends, relatives      Independent                    No
## 9                 Friends, relatives     Package Tour                    No
## 10                Friends, relatives      Independent                    No
## 11                            Others      Independent                    No
## 12       Travel agent, tour operator      Independent                    No
## 13       Travel agent, tour operator     Package Tour                   Yes
## 14                Friends, relatives      Independent                    No
## 16                Friends, relatives      Independent                    No
## 17       Travel agent, tour operator     Package Tour                   Yes
## 18                            Others      Independent                    No
## 19       Travel agent, tour operator     Package Tour                   Yes
## 20                Friends, relatives      Independent                    No
## 21                Inflight magazines      Independent                    No
## 22                            Others      Independent                    No
## 23                        Trade fair      Independent                    No
## 24       Travel agent, tour operator     Package Tour                   Yes
## 25                    Radio, TV, Web      Independent                    No
## 26                        Trade fair      Independent                    No
## 27       Travel agent, tour operator     Package Tour                   Yes
## 28                    Radio, TV, Web      Independent                    No
## 29       Travel agent, tour operator      Independent                    No
## 30       Travel agent, tour operator      Independent                    No
## 31                Friends, relatives      Independent                    No
## 32                            Others     Package Tour                    No
## 33       Travel agent, tour operator      Independent                    No
## 34                Friends, relatives      Independent                    No
## 35       Travel agent, tour operator     Package Tour                   Yes
## 36       Travel agent, tour operator     Package Tour                    No
## 37       Travel agent, tour operator     Package Tour                    No
## 38       Travel agent, tour operator     Package Tour                   Yes
## 39                Friends, relatives      Independent                    No
## 40       Travel agent, tour operator     Package Tour                    No
## 41                Friends, relatives      Independent                    No
## 43       Travel agent, tour operator     Package Tour                   Yes
## 44       Travel agent, tour operator     Package Tour                   Yes
## 45       Travel agent, tour operator      Independent                   Yes
## 46       Travel agent, tour operator     Package Tour                    No
## 47       Travel agent, tour operator     Package Tour                    No
## 48                Friends, relatives      Independent                    No
## 49                            Others      Independent                    No
## 50       Travel agent, tour operator      Independent                    No
## 51       Travel agent, tour operator     Package Tour                    No
## 52       Travel agent, tour operator     Package Tour                   Yes
## 53                            Others     Package Tour                   Yes
## 54   Newspaper, magazines, brochures      Independent                    No
## 55       Travel agent, tour operator     Package Tour                   Yes
## 56                    Radio, TV, Web     Package Tour                   Yes
## 57   Newspaper, magazines, brochures     Package Tour                    No
## 58       Travel agent, tour operator      Independent                    No
## 59       Travel agent, tour operator     Package Tour                   Yes
## 60       Travel agent, tour operator     Package Tour                   Yes
## 61       Travel agent, tour operator     Package Tour                   Yes
## 62       Travel agent, tour operator      Independent                    No
## 63       Travel agent, tour operator     Package Tour                   Yes
## 64       Travel agent, tour operator      Independent                    No
## 65                    Radio, TV, Web     Package Tour                   Yes
## 66       Travel agent, tour operator     Package Tour                   Yes
## 67                Friends, relatives      Independent                    No
## 68       Travel agent, tour operator     Package Tour                    No
## 69   Newspaper, magazines, brochures     Package Tour                   Yes
## 70                Friends, relatives     Package Tour                   Yes
## 71                Friends, relatives      Independent                    No
## 72       Travel agent, tour operator     Package Tour                   Yes
## 74                            Others      Independent                    No
## 75                Friends, relatives      Independent                    No
## 76                        Trade fair      Independent                    No
## 77       Travel agent, tour operator     Package Tour                   Yes
## 78                Friends, relatives      Independent                    No
## 79                    Radio, TV, Web      Independent                    No
## 80                Friends, relatives      Independent                    No
## 81                Inflight magazines     Package Tour                   Yes
## 82                Friends, relatives     Package Tour                   Yes
## 83                Friends, relatives      Independent                    No
## 84                        Trade fair     Package Tour                   Yes
## 85       Travel agent, tour operator     Package Tour                   Yes
## 86       Travel agent, tour operator     Package Tour                   Yes
## 87       Travel agent, tour operator      Independent                    No
## 88       Travel agent, tour operator     Package Tour                   Yes
## 89                    Radio, TV, Web      Independent                    No
## 90       Travel agent, tour operator     Package Tour                   Yes
## 92                    Radio, TV, Web      Independent                    No
## 93                            Others      Independent                    No
## 94       Travel agent, tour operator     Package Tour                   Yes
## 96       Travel agent, tour operator     Package Tour                   Yes
## 97                Friends, relatives     Package Tour                   Yes
## 98   Newspaper, magazines, brochures      Independent                    No
## 99       Travel agent, tour operator     Package Tour                   Yes
## 100               Friends, relatives     Package Tour                   Yes
## 101               Friends, relatives      Independent                    No
## 102      Travel agent, tour operator      Independent                    No
## 103               Friends, relatives      Independent                    No
## 104               Friends, relatives      Independent                    No
## 105      Travel agent, tour operator     Package Tour                    No
## 106      Travel agent, tour operator     Package Tour                    No
## 107          Tanzania Mission Abroad      Independent                    No
## 109                   Radio, TV, Web      Independent                    No
## 110  Newspaper, magazines, brochures     Package Tour                   Yes
## 112               Friends, relatives      Independent                    No
## 113               Friends, relatives      Independent                    No
## 114      Travel agent, tour operator     Package Tour                   Yes
## 115      Travel agent, tour operator     Package Tour                    No
## 116      Travel agent, tour operator     Package Tour                   Yes
## 117      Travel agent, tour operator     Package Tour                    No
## 118               Friends, relatives      Independent                    No
## 119      Travel agent, tour operator     Package Tour                   Yes
## 120               Friends, relatives      Independent                    No
## 121      Travel agent, tour operator     Package Tour                    No
## 122      Travel agent, tour operator      Independent                    No
## 123               Friends, relatives     Package Tour                   Yes
## 124               Friends, relatives      Independent                    No
## 125      Travel agent, tour operator     Package Tour                    No
## 126                       Trade fair     Package Tour                   Yes
## 127                   Radio, TV, Web      Independent                    No
## 128               Friends, relatives     Package Tour                    No
## 129                           Others     Package Tour                   Yes
## 130      Travel agent, tour operator     Package Tour                   Yes
## 131                           Others     Package Tour                   Yes
## 132                   Radio, TV, Web      Independent                    No
## 133      Travel agent, tour operator     Package Tour                   Yes
## 134      Travel agent, tour operator      Independent                    No
## 135      Travel agent, tour operator     Package Tour                    No
## 136      Travel agent, tour operator     Package Tour                   Yes
## 137      Travel agent, tour operator     Package Tour                   Yes
## 138                           Others      Independent                    No
## 139               Friends, relatives      Independent                    No
## 140               Friends, relatives      Independent                    No
## 141               Friends, relatives     Package Tour                   Yes
## 142      Travel agent, tour operator     Package Tour                   Yes
## 143               Friends, relatives     Package Tour                    No
## 144      Travel agent, tour operator     Package Tour                   Yes
## 145               Friends, relatives      Independent                    No
## 146      Travel agent, tour operator     Package Tour                   Yes
## 147               Friends, relatives     Package Tour                   Yes
## 148      Travel agent, tour operator     Package Tour                    No
## 149               Friends, relatives      Independent                    No
## 150                           Others      Independent                    No
## 151      Travel agent, tour operator     Package Tour                   Yes
## 152               Friends, relatives      Independent                    No
## 153               Friends, relatives     Package Tour                   Yes
## 155      Travel agent, tour operator     Package Tour                   Yes
## 156      Travel agent, tour operator     Package Tour                   Yes
## 157               Friends, relatives      Independent                    No
## 159                           Others     Package Tour                   Yes
## 160      Travel agent, tour operator     Package Tour                   Yes
## 161               Friends, relatives      Independent                    No
## 162  Newspaper, magazines, brochures     Package Tour                   Yes
## 163               Friends, relatives     Package Tour                   Yes
## 164      Travel agent, tour operator      Independent                    No
## 165                   Radio, TV, Web      Independent                    No
## 166      Travel agent, tour operator     Package Tour                    No
## 167               Friends, relatives      Independent                    No
## 168  Newspaper, magazines, brochures     Package Tour                   Yes
## 169               Friends, relatives      Independent                    No
## 170      Travel agent, tour operator     Package Tour                   Yes
## 171      Travel agent, tour operator     Package Tour                   Yes
## 172               Friends, relatives      Independent                    No
## 173               Friends, relatives     Package Tour                   Yes
## 174      Travel agent, tour operator     Package Tour                   Yes
## 175               Friends, relatives      Independent                    No
## 176                           Others     Package Tour                   Yes
## 177      Travel agent, tour operator      Independent                    No
## 178               Friends, relatives     Package Tour                    No
## 179      Travel agent, tour operator     Package Tour                   Yes
## 180               Friends, relatives      Independent                    No
## 181      Travel agent, tour operator      Independent                    No
## 182      Travel agent, tour operator     Package Tour                   Yes
## 183               Friends, relatives      Independent                    No
## 185      Travel agent, tour operator     Package Tour                   Yes
## 186  Newspaper, magazines, brochures     Package Tour                    No
## 187               Friends, relatives      Independent                    No
## 188      Travel agent, tour operator     Package Tour                   Yes
## 189               Friends, relatives      Independent                    No
## 190      Travel agent, tour operator     Package Tour                   Yes
## 191      Travel agent, tour operator     Package Tour                   Yes
## 192               Friends, relatives      Independent                    No
## 193      Travel agent, tour operator     Package Tour                   Yes
## 194               Friends, relatives      Independent                    No
## 195  Newspaper, magazines, brochures      Independent                    No
## 196               Friends, relatives      Independent                    No
## 197               Friends, relatives     Package Tour                   Yes
## 198      Travel agent, tour operator     Package Tour                   Yes
## 199               Friends, relatives      Independent                    No
## 201               Friends, relatives      Independent                    No
## 202                           Others      Independent                    No
## 203               Friends, relatives      Independent                    No
## 204      Travel agent, tour operator     Package Tour                   Yes
## 205      Travel agent, tour operator     Package Tour                   Yes
## 206                   Radio, TV, Web      Independent                    No
## 207      Travel agent, tour operator     Package Tour                   Yes
## 208                   Radio, TV, Web      Independent                    No
## 209  Newspaper, magazines, brochures      Independent                    No
## 210                           Others     Package Tour                   Yes
## 211                           Others      Independent                    No
## 212                           Others     Package Tour                    No
## 215      Travel agent, tour operator     Package Tour                   Yes
## 216  Newspaper, magazines, brochures     Package Tour                   Yes
## 217      Travel agent, tour operator     Package Tour                    No
## 218               Friends, relatives      Independent                    No
## 219               Friends, relatives      Independent                    No
## 220      Travel agent, tour operator     Package Tour                   Yes
## 221  Newspaper, magazines, brochures     Package Tour                    No
## 222      Travel agent, tour operator     Package Tour                    No
## 223      Travel agent, tour operator     Package Tour                   Yes
## 224      Travel agent, tour operator     Package Tour                    No
## 225          Tanzania Mission Abroad      Independent                    No
## 226                           Others      Independent                    No
## 227      Travel agent, tour operator      Independent                    No
## 228      Travel agent, tour operator     Package Tour                   Yes
## 229      Travel agent, tour operator     Package Tour                   Yes
## 231      Travel agent, tour operator     Package Tour                   Yes
## 232      Travel agent, tour operator     Package Tour                   Yes
## 233               Friends, relatives      Independent                    No
## 234               Friends, relatives      Independent                    No
## 235      Travel agent, tour operator     Package Tour                   Yes
## 236                           Others      Independent                    No
## 238                           Others      Independent                    No
## 239      Travel agent, tour operator     Package Tour                   Yes
## 240               Friends, relatives     Package Tour                    No
## 242                   Radio, TV, Web     Package Tour                    No
## 244          Tanzania Mission Abroad      Independent                    No
## 245               Friends, relatives      Independent                    No
## 246               Friends, relatives      Independent                    No
## 247               Friends, relatives      Independent                    No
## 248      Travel agent, tour operator     Package Tour                    No
## 249      Travel agent, tour operator     Package Tour                   Yes
## 250               Friends, relatives      Independent                    No
## 251      Travel agent, tour operator     Package Tour                    No
## 252                   Radio, TV, Web     Package Tour                    No
## 253          Tanzania Mission Abroad      Independent                    No
## 254      Travel agent, tour operator     Package Tour                    No
## 255      Travel agent, tour operator      Independent                    No
## 256      Travel agent, tour operator     Package Tour                   Yes
## 257      Travel agent, tour operator     Package Tour                   Yes
## 258                   Radio, TV, Web     Package Tour                    No
## 259               Friends, relatives      Independent                    No
## 260      Travel agent, tour operator     Package Tour                   Yes
## 262      Travel agent, tour operator     Package Tour                    No
## 263                           Others      Independent                    No
## 264      Travel agent, tour operator     Package Tour                   Yes
## 265      Travel agent, tour operator     Package Tour                    No
## 266               Friends, relatives      Independent                    No
## 267                           Others     Package Tour                    No
## 269               Friends, relatives     Package Tour                    No
## 270  Newspaper, magazines, brochures      Independent                    No
## 271                           Others      Independent                    No
## 272  Newspaper, magazines, brochures      Independent                    No
## 273               Friends, relatives      Independent                    No
## 274               Friends, relatives     Package Tour                   Yes
## 275               Friends, relatives      Independent                    No
## 277      Travel agent, tour operator     Package Tour                    No
## 278                           Others     Package Tour                    No
## 279      Travel agent, tour operator     Package Tour                   Yes
## 280  Newspaper, magazines, brochures     Package Tour                    No
## 282                           Others      Independent                    No
## 283                           Others      Independent                    No
## 284  Newspaper, magazines, brochures      Independent                    No
## 286               Friends, relatives      Independent                    No
## 287      Travel agent, tour operator     Package Tour                    No
## 288          Tanzania Mission Abroad      Independent                    No
## 289                   Radio, TV, Web      Independent                    No
## 290      Travel agent, tour operator     Package Tour                   Yes
## 291      Travel agent, tour operator     Package Tour                   Yes
## 292               Friends, relatives      Independent                    No
## 293      Travel agent, tour operator      Independent                    No
## 294      Travel agent, tour operator     Package Tour                   Yes
## 295               Friends, relatives      Independent                    No
## 296      Travel agent, tour operator     Package Tour                   Yes
## 297               Friends, relatives      Independent                    No
## 298      Travel agent, tour operator     Package Tour                   Yes
## 299               Friends, relatives      Independent                    No
## 300                   Radio, TV, Web      Independent                    No
## 301               Friends, relatives      Independent                    No
## 302  Newspaper, magazines, brochures      Independent                    No
## 303      Travel agent, tour operator     Package Tour                    No
## 304      Travel agent, tour operator     Package Tour                   Yes
## 305               Friends, relatives      Independent                    No
## 306               Friends, relatives      Independent                    No
## 307      Travel agent, tour operator      Independent                    No
## 309               Friends, relatives      Independent                    No
## 310      Travel agent, tour operator     Package Tour                   Yes
## 311               Friends, relatives      Independent                    No
## 312               Friends, relatives      Independent                    No
## 313      Travel agent, tour operator     Package Tour                   Yes
## 314      Travel agent, tour operator      Independent                    No
## 315  Newspaper, magazines, brochures      Independent                    No
## 316               Friends, relatives     Package Tour                    No
## 317               Friends, relatives     Package Tour                   Yes
## 318                   Radio, TV, Web     Package Tour                   Yes
## 319  Newspaper, magazines, brochures      Independent                    No
## 321      Travel agent, tour operator     Package Tour                    No
## 322                           Others      Independent                    No
## 323      Travel agent, tour operator     Package Tour                   Yes
## 324      Travel agent, tour operator      Independent                    No
## 325      Travel agent, tour operator      Independent                    No
## 326               Friends, relatives      Independent                    No
## 327      Travel agent, tour operator     Package Tour                   Yes
## 328               Friends, relatives     Package Tour                    No
## 330               Friends, relatives     Package Tour                    No
## 332               Friends, relatives      Independent                    No
## 333      Travel agent, tour operator     Package Tour                    No
## 334      Travel agent, tour operator     Package Tour                   Yes
## 335      Travel agent, tour operator     Package Tour                   Yes
## 336                           Others      Independent                    No
## 337      Travel agent, tour operator     Package Tour                   Yes
## 338      Travel agent, tour operator     Package Tour                   Yes
## 339               Friends, relatives      Independent                    No
## 340                   Radio, TV, Web      Independent                    No
## 341                           Others      Independent                    No
## 342  Newspaper, magazines, brochures      Independent                    No
## 343      Travel agent, tour operator     Package Tour                   Yes
## 344               Friends, relatives      Independent                    No
## 345      Travel agent, tour operator     Package Tour                    No
## 346      Travel agent, tour operator     Package Tour                    No
## 347      Travel agent, tour operator     Package Tour                   Yes
## 348      Travel agent, tour operator     Package Tour                   Yes
## 349                           Others      Independent                    No
## 350      Travel agent, tour operator     Package Tour                   Yes
## 351                   Radio, TV, Web      Independent                    No
## 352      Travel agent, tour operator     Package Tour                   Yes
## 353               Friends, relatives      Independent                    No
## 354      Travel agent, tour operator     Package Tour                   Yes
## 355  Newspaper, magazines, brochures      Independent                    No
## 356          Tanzania Mission Abroad     Package Tour                   Yes
## 357               Friends, relatives      Independent                    No
## 358               Friends, relatives      Independent                    No
## 359  Newspaper, magazines, brochures     Package Tour                    No
## 360               Friends, relatives     Package Tour                    No
## 361               Friends, relatives     Package Tour                   Yes
## 362                       Trade fair      Independent                    No
## 363                           Others     Package Tour                    No
## 364                           Others      Independent                    No
## 365      Travel agent, tour operator     Package Tour                   Yes
## 366      Travel agent, tour operator      Independent                    No
## 367  Newspaper, magazines, brochures      Independent                    No
## 368               Friends, relatives      Independent                    No
## 369               Friends, relatives     Package Tour                    No
## 370      Travel agent, tour operator     Package Tour                   Yes
## 371      Travel agent, tour operator     Package Tour                   Yes
## 372      Travel agent, tour operator     Package Tour                    No
## 373                   Radio, TV, Web      Independent                    No
## 374                   Radio, TV, Web      Independent                    No
## 375               Friends, relatives     Package Tour                    No
## 376      Travel agent, tour operator     Package Tour                   Yes
## 377      Travel agent, tour operator     Package Tour                    No
## 378               Friends, relatives      Independent                    No
## 379               Friends, relatives      Independent                    No
## 380               Friends, relatives      Independent                    No
## 381                   Radio, TV, Web     Package Tour                   Yes
## 382               Friends, relatives      Independent                    No
## 383                   Radio, TV, Web      Independent                    No
## 384      Travel agent, tour operator     Package Tour                    No
## 385                           Others      Independent                    No
## 386      Travel agent, tour operator     Package Tour                   Yes
## 388                           Others      Independent                    No
## 390      Travel agent, tour operator      Independent                    No
## 391      Travel agent, tour operator     Package Tour                   Yes
## 392      Travel agent, tour operator     Package Tour                   Yes
## 393      Travel agent, tour operator      Independent                    No
## 394      Travel agent, tour operator     Package Tour                   Yes
## 395               Friends, relatives      Independent                    No
## 396                           Others     Package Tour                    No
## 397               Friends, relatives      Independent                    No
## 398                   Radio, TV, Web     Package Tour                    No
## 399      Travel agent, tour operator      Independent                    No
## 400               Friends, relatives      Independent                    No
## 401      Travel agent, tour operator     Package Tour                    No
## 402                   Radio, TV, Web     Package Tour                   Yes
## 403      Travel agent, tour operator     Package Tour                    No
## 404      Travel agent, tour operator     Package Tour                   Yes
## 405               Friends, relatives      Independent                    No
## 406  Newspaper, magazines, brochures     Package Tour                   Yes
## 407               Friends, relatives     Package Tour                   Yes
## 408                       Trade fair      Independent                    No
## 409                           Others      Independent                    No
## 410      Travel agent, tour operator     Package Tour                   Yes
## 412      Travel agent, tour operator      Independent                    No
## 413  Newspaper, magazines, brochures      Independent                    No
## 414      Travel agent, tour operator     Package Tour                    No
## 415      Travel agent, tour operator     Package Tour                    No
## 417      Travel agent, tour operator     Package Tour                   Yes
## 419  Newspaper, magazines, brochures      Independent                    No
## 420      Travel agent, tour operator     Package Tour                   Yes
## 421               Friends, relatives      Independent                    No
## 422      Travel agent, tour operator     Package Tour                   Yes
## 423  Newspaper, magazines, brochures      Independent                    No
## 424      Travel agent, tour operator     Package Tour                   Yes
## 425      Travel agent, tour operator      Independent                    No
## 426      Travel agent, tour operator     Package Tour                    No
## 427                   Radio, TV, Web     Package Tour                   Yes
## 428      Travel agent, tour operator     Package Tour                    No
## 429               Friends, relatives      Independent                    No
## 430               Friends, relatives     Package Tour                   Yes
## 431               Friends, relatives      Independent                    No
## 432               Friends, relatives      Independent                    No
## 433                   Radio, TV, Web      Independent                    No
## 434      Travel agent, tour operator     Package Tour                   Yes
## 435               Friends, relatives      Independent                    No
## 436               Friends, relatives      Independent                    No
## 437                           Others      Independent                    No
## 438      Travel agent, tour operator     Package Tour                   Yes
## 439               Friends, relatives     Package Tour                   Yes
## 440      Travel agent, tour operator     Package Tour                   Yes
## 441               Friends, relatives     Package Tour                   Yes
## 442               Friends, relatives      Independent                    No
## 443      Travel agent, tour operator     Package Tour                   Yes
## 444      Travel agent, tour operator     Package Tour                    No
## 446               Friends, relatives      Independent                    No
## 448                   Radio, TV, Web     Package Tour                    No
## 449      Travel agent, tour operator     Package Tour                   Yes
## 450                       Trade fair      Independent                    No
## 451                   Radio, TV, Web      Independent                    No
## 452                   Radio, TV, Web     Package Tour                   Yes
## 453      Travel agent, tour operator     Package Tour                    No
## 454               Inflight magazines      Independent                    No
## 456                       Trade fair      Independent                    No
## 457                   Radio, TV, Web      Independent                    No
## 458      Travel agent, tour operator     Package Tour                   Yes
## 459  Newspaper, magazines, brochures      Independent                    No
## 460               Friends, relatives     Package Tour                    No
## 461  Newspaper, magazines, brochures     Package Tour                   Yes
## 462               Friends, relatives      Independent                    No
## 463      Travel agent, tour operator     Package Tour                    No
## 464  Newspaper, magazines, brochures      Independent                    No
## 465  Newspaper, magazines, brochures      Independent                    No
## 466  Newspaper, magazines, brochures     Package Tour                    No
## 467                           Others      Independent                    No
## 468               Friends, relatives     Package Tour                   Yes
## 469      Travel agent, tour operator     Package Tour                    No
## 470  Newspaper, magazines, brochures      Independent                    No
## 471      Travel agent, tour operator     Package Tour                   Yes
## 472               Friends, relatives      Independent                    No
## 473               Friends, relatives      Independent                    No
## 474      Travel agent, tour operator     Package Tour                   Yes
## 475      Travel agent, tour operator     Package Tour                    No
## 476      Travel agent, tour operator     Package Tour                   Yes
## 477                   Radio, TV, Web      Independent                    No
## 478                       Trade fair      Independent                    No
## 479      Travel agent, tour operator     Package Tour                   Yes
## 480               Friends, relatives      Independent                    No
## 481      Travel agent, tour operator      Independent                    No
## 482      Travel agent, tour operator     Package Tour                    No
## 483  Newspaper, magazines, brochures     Package Tour                   Yes
## 484      Travel agent, tour operator     Package Tour                   Yes
## 485               Friends, relatives      Independent                    No
## 486      Travel agent, tour operator     Package Tour                    No
## 487               Friends, relatives      Independent                    No
## 488               Friends, relatives      Independent                    No
## 489      Travel agent, tour operator     Package Tour                    No
## 490          Tanzania Mission Abroad      Independent                    No
## 491      Travel agent, tour operator     Package Tour                   Yes
## 492               Friends, relatives     Package Tour                    No
## 493  Newspaper, magazines, brochures     Package Tour                   Yes
## 494      Travel agent, tour operator     Package Tour                   Yes
## 495      Travel agent, tour operator      Independent                    No
## 496               Friends, relatives      Independent                    No
## 497      Travel agent, tour operator     Package Tour                   Yes
## 498               Friends, relatives      Independent                    No
## 499      Travel agent, tour operator     Package Tour                   Yes
## 500                           Others      Independent                    No
## 501      Travel agent, tour operator      Independent                    No
## 502               Friends, relatives      Independent                    No
## 503                   Radio, TV, Web     Package Tour                   Yes
## 504      Travel agent, tour operator     Package Tour                   Yes
## 505               Friends, relatives      Independent                    No
## 506               Friends, relatives      Independent                    No
## 507               Friends, relatives      Independent                    No
## 508      Travel agent, tour operator      Independent                    No
## 510                   Radio, TV, Web      Independent                    No
## 511               Friends, relatives      Independent                    No
## 512      Travel agent, tour operator     Package Tour                   Yes
## 513               Friends, relatives      Independent                    No
## 514               Friends, relatives     Package Tour                    No
## 515      Travel agent, tour operator     Package Tour                    No
## 516      Travel agent, tour operator     Package Tour                   Yes
## 517      Travel agent, tour operator     Package Tour                   Yes
## 518      Travel agent, tour operator     Package Tour                    No
## 519      Travel agent, tour operator      Independent                    No
## 520      Travel agent, tour operator      Independent                    No
## 521      Travel agent, tour operator     Package Tour                   Yes
## 522               Friends, relatives      Independent                    No
## 523               Inflight magazines      Independent                    No
## 524  Newspaper, magazines, brochures      Independent                    No
## 525      Travel agent, tour operator     Package Tour                   Yes
## 526               Friends, relatives     Package Tour                   Yes
## 527  Newspaper, magazines, brochures     Package Tour                    No
## 528      Travel agent, tour operator     Package Tour                   Yes
## 529               Friends, relatives      Independent                    No
## 530               Friends, relatives      Independent                    No
## 531      Travel agent, tour operator     Package Tour                   Yes
## 532      Travel agent, tour operator     Package Tour                   Yes
## 533               Friends, relatives      Independent                    No
## 534      Travel agent, tour operator     Package Tour                   Yes
## 535  Newspaper, magazines, brochures     Package Tour                    No
## 536  Newspaper, magazines, brochures      Independent                    No
## 537               Friends, relatives      Independent                    No
## 538               Friends, relatives      Independent                    No
## 539      Travel agent, tour operator     Package Tour                    No
## 540               Friends, relatives      Independent                    No
## 541      Travel agent, tour operator     Package Tour                   Yes
## 542      Travel agent, tour operator     Package Tour                   Yes
## 544      Travel agent, tour operator     Package Tour                   Yes
## 545                   Radio, TV, Web      Independent                    No
## 546               Friends, relatives      Independent                    No
## 547                           Others     Package Tour                    No
## 548      Travel agent, tour operator     Package Tour                    No
## 549      Travel agent, tour operator     Package Tour                    No
## 550                           Others      Independent                    No
## 551      Travel agent, tour operator     Package Tour                   Yes
## 552  Newspaper, magazines, brochures      Independent                    No
## 553               Friends, relatives      Independent                    No
## 554      Travel agent, tour operator     Package Tour                   Yes
## 555               Friends, relatives      Independent                    No
## 556               Friends, relatives      Independent                    No
## 557      Travel agent, tour operator     Package Tour                    No
## 558               Friends, relatives      Independent                    No
## 559      Travel agent, tour operator     Package Tour                   Yes
## 560               Friends, relatives     Package Tour                    No
## 561               Friends, relatives      Independent                    No
## 562      Travel agent, tour operator     Package Tour                   Yes
## 563               Friends, relatives     Package Tour                   Yes
## 564      Travel agent, tour operator     Package Tour                    No
## 565               Friends, relatives      Independent                    No
## 566      Travel agent, tour operator     Package Tour                   Yes
## 567      Travel agent, tour operator     Package Tour                   Yes
## 568  Newspaper, magazines, brochures      Independent                    No
## 570               Friends, relatives     Package Tour                   Yes
## 571      Travel agent, tour operator     Package Tour                    No
## 572          Tanzania Mission Abroad     Package Tour                   Yes
## 573      Travel agent, tour operator      Independent                    No
## 574      Travel agent, tour operator     Package Tour                   Yes
## 575               Friends, relatives     Package Tour                   Yes
## 576               Friends, relatives      Independent                    No
## 577  Newspaper, magazines, brochures      Independent                    No
## 578               Friends, relatives      Independent                    No
## 579      Travel agent, tour operator     Package Tour                   Yes
## 580               Friends, relatives      Independent                    No
## 581               Friends, relatives     Package Tour                   Yes
## 582      Travel agent, tour operator     Package Tour                   Yes
## 583      Travel agent, tour operator      Independent                    No
## 584      Travel agent, tour operator     Package Tour                   Yes
## 585      Travel agent, tour operator      Independent                   Yes
## 586      Travel agent, tour operator      Independent                    No
## 587      Travel agent, tour operator      Independent                    No
## 588               Friends, relatives      Independent                    No
## 589      Travel agent, tour operator     Package Tour                   Yes
## 590               Friends, relatives      Independent                    No
## 591      Travel agent, tour operator     Package Tour                    No
## 592      Travel agent, tour operator     Package Tour                    No
## 593      Travel agent, tour operator     Package Tour                    No
## 594      Travel agent, tour operator     Package Tour                    No
## 595      Travel agent, tour operator     Package Tour                   Yes
## 596                   Radio, TV, Web      Independent                    No
## 597  Newspaper, magazines, brochures      Independent                    No
## 598               Friends, relatives      Independent                    No
## 600      Travel agent, tour operator     Package Tour                   Yes
## 601                           Others      Independent                    No
## 602               Friends, relatives      Independent                    No
## 603  Newspaper, magazines, brochures      Independent                    No
## 604               Friends, relatives     Package Tour                   Yes
## 605               Friends, relatives     Package Tour                   Yes
## 606      Travel agent, tour operator     Package Tour                   Yes
## 607      Travel agent, tour operator     Package Tour                    No
## 608               Friends, relatives     Package Tour                   Yes
## 609          Tanzania Mission Abroad     Package Tour                   Yes
## 610               Friends, relatives     Package Tour                   Yes
## 612               Friends, relatives      Independent                    No
## 613      Travel agent, tour operator     Package Tour                   Yes
## 614               Friends, relatives      Independent                    No
## 615      Travel agent, tour operator     Package Tour                   Yes
## 616               Friends, relatives      Independent                    No
## 617                           Others      Independent                    No
## 618      Travel agent, tour operator     Package Tour                   Yes
## 620               Friends, relatives      Independent                    No
## 622  Newspaper, magazines, brochures     Package Tour                    No
## 623      Travel agent, tour operator     Package Tour                   Yes
## 624      Travel agent, tour operator     Package Tour                   Yes
## 625               Friends, relatives     Package Tour                   Yes
## 626      Travel agent, tour operator      Independent                    No
## 627               Friends, relatives      Independent                    No
## 628  Newspaper, magazines, brochures      Independent                    No
## 629      Travel agent, tour operator     Package Tour                    No
## 630               Friends, relatives      Independent                    No
## 631      Travel agent, tour operator     Package Tour                    No
## 632      Travel agent, tour operator     Package Tour                    No
## 633      Travel agent, tour operator      Independent                    No
## 634      Travel agent, tour operator     Package Tour                    No
## 635      Travel agent, tour operator     Package Tour                   Yes
## 636               Friends, relatives      Independent                    No
## 637               Friends, relatives      Independent                    No
## 638               Friends, relatives     Package Tour                   Yes
## 639      Travel agent, tour operator     Package Tour                   Yes
## 640               Friends, relatives      Independent                    No
## 641      Travel agent, tour operator     Package Tour                   Yes
## 642      Travel agent, tour operator     Package Tour                   Yes
## 643               Friends, relatives      Independent                    No
## 644      Travel agent, tour operator     Package Tour                   Yes
## 645                           Others      Independent                    No
## 646                           Others      Independent                    No
## 647               Friends, relatives      Independent                    No
## 648               Friends, relatives      Independent                    No
## 649      Travel agent, tour operator     Package Tour                   Yes
## 650               Friends, relatives      Independent                    No
## 651               Friends, relatives      Independent                    No
## 652               Friends, relatives      Independent                    No
## 653      Travel agent, tour operator     Package Tour                   Yes
## 655               Friends, relatives     Package Tour                   Yes
## 657  Newspaper, magazines, brochures     Package Tour                   Yes
## 658      Travel agent, tour operator     Package Tour                    No
## 659               Friends, relatives      Independent                    No
## 660               Friends, relatives      Independent                    No
## 661               Friends, relatives     Package Tour                    No
## 662                   Radio, TV, Web      Independent                    No
## 663               Friends, relatives     Package Tour                   Yes
## 664               Friends, relatives      Independent                    No
## 665               Friends, relatives      Independent                    No
## 666      Travel agent, tour operator     Package Tour                    No
## 667      Travel agent, tour operator     Package Tour                   Yes
## 668      Travel agent, tour operator     Package Tour                   Yes
## 669      Travel agent, tour operator     Package Tour                   Yes
## 670               Friends, relatives      Independent                    No
## 671               Friends, relatives      Independent                    No
## 672  Newspaper, magazines, brochures      Independent                    No
## 673               Friends, relatives      Independent                    No
## 674      Travel agent, tour operator     Package Tour                   Yes
## 675      Travel agent, tour operator     Package Tour                   Yes
## 676               Friends, relatives     Package Tour                   Yes
## 677               Friends, relatives      Independent                    No
## 679      Travel agent, tour operator     Package Tour                    No
## 680      Travel agent, tour operator      Independent                    No
## 681  Newspaper, magazines, brochures      Independent                    No
## 682      Travel agent, tour operator     Package Tour                   Yes
## 683               Friends, relatives     Package Tour                   Yes
## 684  Newspaper, magazines, brochures     Package Tour                   Yes
## 685      Travel agent, tour operator      Independent                    No
## 687      Travel agent, tour operator     Package Tour                   Yes
## 688      Travel agent, tour operator      Independent                    No
## 689               Friends, relatives      Independent                    No
## 690               Friends, relatives      Independent                    No
## 691                           Others      Independent                    No
## 692               Friends, relatives      Independent                    No
## 693      Travel agent, tour operator      Independent                    No
## 694               Friends, relatives      Independent                    No
## 696               Friends, relatives     Package Tour                    No
## 698      Travel agent, tour operator     Package Tour                   Yes
## 699      Travel agent, tour operator     Package Tour                   Yes
## 700      Travel agent, tour operator     Package Tour                   Yes
## 701               Friends, relatives      Independent                    No
## 702      Travel agent, tour operator     Package Tour                   Yes
## 703      Travel agent, tour operator     Package Tour                    No
## 704               Friends, relatives      Independent                    No
## 706               Friends, relatives      Independent                    No
## 707  Newspaper, magazines, brochures     Package Tour                    No
## 708      Travel agent, tour operator     Package Tour                   Yes
## 709               Friends, relatives      Independent                    No
## 710      Travel agent, tour operator     Package Tour                    No
## 711      Travel agent, tour operator     Package Tour                    No
## 712                           Others      Independent                    No
## 713               Friends, relatives      Independent                    No
## 714  Newspaper, magazines, brochures      Independent                    No
## 715  Newspaper, magazines, brochures      Independent                    No
## 716               Friends, relatives      Independent                    No
## 718  Newspaper, magazines, brochures      Independent                    No
## 719      Travel agent, tour operator      Independent                    No
## 720                   Radio, TV, Web      Independent                    No
## 721      Travel agent, tour operator     Package Tour                    No
## 722  Newspaper, magazines, brochures      Independent                    No
## 723      Travel agent, tour operator     Package Tour                   Yes
## 724                           Others     Package Tour                   Yes
## 725      Travel agent, tour operator     Package Tour                    No
## 727      Travel agent, tour operator     Package Tour                    No
## 728      Travel agent, tour operator     Package Tour                    No
## 729      Travel agent, tour operator      Independent                    No
## 730      Travel agent, tour operator     Package Tour                   Yes
## 731               Friends, relatives      Independent                    No
## 732               Friends, relatives      Independent                    No
## 733      Travel agent, tour operator     Package Tour                    No
## 734      Travel agent, tour operator     Package Tour                    No
## 735               Friends, relatives     Package Tour                   Yes
## 736          Tanzania Mission Abroad      Independent                    No
## 737      Travel agent, tour operator     Package Tour                    No
## 738                   Radio, TV, Web      Independent                    No
## 739               Friends, relatives      Independent                    No
## 740               Friends, relatives      Independent                    No
## 741               Friends, relatives      Independent                    No
## 742      Travel agent, tour operator      Independent                    No
## 743               Friends, relatives     Package Tour                    No
## 744               Friends, relatives     Package Tour                    No
## 745      Travel agent, tour operator     Package Tour                   Yes
## 746      Travel agent, tour operator     Package Tour                   Yes
## 747               Friends, relatives      Independent                    No
## 748      Travel agent, tour operator     Package Tour                   Yes
## 749      Travel agent, tour operator     Package Tour                   Yes
## 750               Friends, relatives      Independent                    No
## 752               Friends, relatives      Independent                    No
## 753                           Others      Independent                    No
## 754      Travel agent, tour operator     Package Tour                   Yes
## 755  Newspaper, magazines, brochures      Independent                    No
## 756  Newspaper, magazines, brochures      Independent                    No
## 758               Friends, relatives     Package Tour                   Yes
## 759      Travel agent, tour operator     Package Tour                    No
## 761               Friends, relatives     Package Tour                    No
## 762      Travel agent, tour operator     Package Tour                    No
## 763                   Radio, TV, Web      Independent                    No
## 764               Friends, relatives      Independent                    No
## 765               Friends, relatives      Independent                    No
## 766      Travel agent, tour operator     Package Tour                    No
## 767               Friends, relatives      Independent                   Yes
## 769      Travel agent, tour operator     Package Tour                   Yes
## 770                           Others      Independent                    No
## 771               Friends, relatives      Independent                    No
## 772               Friends, relatives      Independent                    No
## 773               Friends, relatives     Package Tour                    No
## 774                           Others      Independent                    No
## 775      Travel agent, tour operator     Package Tour                   Yes
## 776      Travel agent, tour operator     Package Tour                    No
## 777                           Others     Package Tour                   Yes
## 778      Travel agent, tour operator     Package Tour                    No
## 779                   Radio, TV, Web      Independent                    No
## 780               Friends, relatives     Package Tour                   Yes
## 781               Friends, relatives      Independent                    No
## 782               Friends, relatives     Package Tour                   Yes
## 783      Travel agent, tour operator      Independent                    No
## 784               Friends, relatives      Independent                    No
## 785               Friends, relatives      Independent                    No
## 786  Newspaper, magazines, brochures     Package Tour                    No
## 787               Friends, relatives      Independent                    No
## 788      Travel agent, tour operator     Package Tour                   Yes
## 789                           Others     Package Tour                   Yes
## 790      Travel agent, tour operator     Package Tour                   Yes
## 791      Travel agent, tour operator     Package Tour                   Yes
## 792                           Others      Independent                    No
## 793      Travel agent, tour operator     Package Tour                   Yes
## 795      Travel agent, tour operator     Package Tour                   Yes
## 796      Travel agent, tour operator     Package Tour                   Yes
## 797               Friends, relatives     Package Tour                   Yes
## 798               Friends, relatives      Independent                    No
## 799                   Radio, TV, Web      Independent                    No
## 800               Friends, relatives     Package Tour                    No
## 801  Newspaper, magazines, brochures      Independent                    No
## 802      Travel agent, tour operator     Package Tour                   Yes
## 803               Friends, relatives      Independent                    No
## 804      Travel agent, tour operator     Package Tour                    No
## 805      Travel agent, tour operator     Package Tour                    No
## 806  Newspaper, magazines, brochures     Package Tour                   Yes
## 808      Travel agent, tour operator     Package Tour                    No
## 809               Friends, relatives      Independent                    No
## 810               Inflight magazines      Independent                    No
## 811               Friends, relatives      Independent                    No
## 812               Friends, relatives      Independent                    No
## 813               Friends, relatives      Independent                    No
## 814          Tanzania Mission Abroad      Independent                    No
## 815      Travel agent, tour operator     Package Tour                   Yes
## 816                   Radio, TV, Web      Independent                    No
## 817               Friends, relatives      Independent                    No
## 818      Travel agent, tour operator     Package Tour                   Yes
## 820  Newspaper, magazines, brochures      Independent                    No
## 821      Travel agent, tour operator     Package Tour                   Yes
## 822               Friends, relatives      Independent                    No
## 823                   Radio, TV, Web      Independent                    No
## 824                           Others      Independent                    No
## 825               Friends, relatives      Independent                    No
## 826      Travel agent, tour operator     Package Tour                   Yes
## 827               Friends, relatives      Independent                    No
## 828               Friends, relatives      Independent                    No
## 829               Friends, relatives      Independent                   Yes
## 830      Travel agent, tour operator     Package Tour                    No
## 831                   Radio, TV, Web      Independent                    No
## 832      Travel agent, tour operator      Independent                    No
## 833      Travel agent, tour operator     Package Tour                   Yes
## 834               Friends, relatives      Independent                    No
## 835      Travel agent, tour operator      Independent                    No
## 836      Travel agent, tour operator      Independent                    No
## 837      Travel agent, tour operator      Independent                    No
## 838               Friends, relatives      Independent                    No
## 839      Travel agent, tour operator     Package Tour                   Yes
## 840      Travel agent, tour operator     Package Tour                   Yes
## 841      Travel agent, tour operator      Independent                    No
## 842      Travel agent, tour operator     Package Tour                    No
## 843      Travel agent, tour operator     Package Tour                   Yes
## 844               Friends, relatives      Independent                    No
## 845      Travel agent, tour operator     Package Tour                   Yes
## 846      Travel agent, tour operator      Independent                    No
## 847               Friends, relatives      Independent                    No
## 848  Newspaper, magazines, brochures      Independent                    No
## 849      Travel agent, tour operator     Package Tour                   Yes
## 851      Travel agent, tour operator     Package Tour                   Yes
## 852               Friends, relatives      Independent                    No
## 853      Travel agent, tour operator     Package Tour                   Yes
## 854               Friends, relatives      Independent                    No
## 855               Friends, relatives      Independent                    No
## 856               Friends, relatives      Independent                    No
## 857               Friends, relatives      Independent                    No
## 858                   Radio, TV, Web     Package Tour                    No
## 859                   Radio, TV, Web      Independent                    No
## 860      Travel agent, tour operator      Independent                    No
## 861      Travel agent, tour operator     Package Tour                    No
## 862               Friends, relatives     Package Tour                    No
## 863      Travel agent, tour operator     Package Tour                    No
## 864      Travel agent, tour operator      Independent                    No
## 865      Travel agent, tour operator     Package Tour                   Yes
## 866               Friends, relatives     Package Tour                    No
## 867      Travel agent, tour operator     Package Tour                   Yes
## 869                           Others      Independent                    No
## 870      Travel agent, tour operator     Package Tour                    No
## 871      Travel agent, tour operator     Package Tour                   Yes
## 872  Newspaper, magazines, brochures      Independent                    No
## 873      Travel agent, tour operator      Independent                    No
## 874  Newspaper, magazines, brochures     Package Tour                    No
## 875          Tanzania Mission Abroad     Package Tour                   Yes
## 876      Travel agent, tour operator     Package Tour                   Yes
## 877               Friends, relatives      Independent                    No
## 878               Friends, relatives      Independent                    No
## 880      Travel agent, tour operator     Package Tour                   Yes
## 881      Travel agent, tour operator     Package Tour                   Yes
## 882      Travel agent, tour operator     Package Tour                    No
## 883               Friends, relatives      Independent                    No
## 884               Inflight magazines      Independent                    No
## 885               Friends, relatives      Independent                    No
## 886               Friends, relatives      Independent                    No
## 887               Friends, relatives      Independent                    No
## 888      Travel agent, tour operator     Package Tour                    No
## 889      Travel agent, tour operator     Package Tour                   Yes
## 891                           Others      Independent                    No
## 892                           Others      Independent                    No
## 893  Newspaper, magazines, brochures      Independent                    No
## 894      Travel agent, tour operator      Independent                    No
## 895      Travel agent, tour operator     Package Tour                    No
## 896      Travel agent, tour operator     Package Tour                   Yes
## 898               Friends, relatives      Independent                    No
## 900               Friends, relatives      Independent                    No
## 901               Friends, relatives      Independent                    No
## 904      Travel agent, tour operator     Package Tour                   Yes
## 905                           Others      Independent                    No
## 906      Travel agent, tour operator     Package Tour                   Yes
## 907      Travel agent, tour operator     Package Tour                   Yes
## 908      Travel agent, tour operator     Package Tour                   Yes
## 909                   Radio, TV, Web      Independent                    No
## 910               Friends, relatives      Independent                    No
## 911                   Radio, TV, Web     Package Tour                    No
## 913  Newspaper, magazines, brochures      Independent                    No
## 914               Friends, relatives      Independent                    No
## 915                   Radio, TV, Web      Independent                    No
## 916      Travel agent, tour operator     Package Tour                    No
## 917               Friends, relatives      Independent                    No
## 918      Travel agent, tour operator     Package Tour                    No
## 919               Friends, relatives     Package Tour                    No
## 920  Newspaper, magazines, brochures      Independent                    No
## 921  Newspaper, magazines, brochures      Independent                    No
## 922               Friends, relatives      Independent                    No
## 923               Friends, relatives     Package Tour                   Yes
## 924               Friends, relatives      Independent                    No
## 925               Friends, relatives      Independent                    No
## 926               Friends, relatives      Independent                    No
## 927               Friends, relatives      Independent                    No
## 928                           Others      Independent                    No
## 929      Travel agent, tour operator     Package Tour                    No
## 930                       Trade fair     Package Tour                   Yes
## 931      Travel agent, tour operator     Package Tour                    No
## 932      Travel agent, tour operator      Independent                    No
## 933      Travel agent, tour operator     Package Tour                   Yes
## 934      Travel agent, tour operator     Package Tour                    No
## 935                   Radio, TV, Web      Independent                    No
## 937      Travel agent, tour operator     Package Tour                   Yes
## 938               Friends, relatives      Independent                    No
## 939      Travel agent, tour operator     Package Tour                   Yes
## 940      Travel agent, tour operator     Package Tour                   Yes
## 941      Travel agent, tour operator     Package Tour                    No
## 942                       Trade fair      Independent                    No
## 943                   Radio, TV, Web      Independent                    No
## 944      Travel agent, tour operator     Package Tour                    No
## 945                           Others     Package Tour                    No
## 946               Friends, relatives      Independent                    No
## 947      Travel agent, tour operator     Package Tour                   Yes
## 948                           Others      Independent                    No
## 949               Friends, relatives      Independent                    No
## 950               Friends, relatives      Independent                    No
## 951      Travel agent, tour operator     Package Tour                    No
## 952               Friends, relatives      Independent                    No
## 953               Friends, relatives      Independent                    No
## 955               Friends, relatives     Package Tour                   Yes
## 956      Travel agent, tour operator      Independent                    No
## 957               Friends, relatives     Package Tour                    No
## 958      Travel agent, tour operator     Package Tour                    No
## 959      Travel agent, tour operator      Independent                    No
## 960               Friends, relatives      Independent                    No
## 961                           Others      Independent                    No
## 962               Friends, relatives     Package Tour                    No
## 963      Travel agent, tour operator     Package Tour                   Yes
## 964                           Others     Package Tour                   Yes
## 966  Newspaper, magazines, brochures      Independent                    No
## 967                       Trade fair     Package Tour                   Yes
## 968               Friends, relatives      Independent                    No
## 971      Travel agent, tour operator     Package Tour                   Yes
## 972      Travel agent, tour operator     Package Tour                    No
## 973      Travel agent, tour operator     Package Tour                   Yes
## 975               Friends, relatives      Independent                    No
## 976               Friends, relatives     Package Tour                   Yes
## 977                   Radio, TV, Web      Independent                    No
## 978               Friends, relatives      Independent                    No
## 979                       Trade fair      Independent                    No
## 980      Travel agent, tour operator     Package Tour                    No
## 981                           Others      Independent                    No
## 982               Friends, relatives     Package Tour                   Yes
## 983  Newspaper, magazines, brochures     Package Tour                   Yes
## 984               Friends, relatives      Independent                    No
## 985               Friends, relatives      Independent                    No
## 986                   Radio, TV, Web      Independent                    No
## 987      Travel agent, tour operator     Package Tour                   Yes
## 988                   Radio, TV, Web     Package Tour                    No
## 989      Travel agent, tour operator      Independent                    No
## 991      Travel agent, tour operator     Package Tour                   Yes
## 992               Friends, relatives      Independent                    No
## 993          Tanzania Mission Abroad      Independent                    No
## 994      Travel agent, tour operator      Independent                    No
## 995               Friends, relatives      Independent                    No
## 996      Travel agent, tour operator     Package Tour                   Yes
## 997                           Others      Independent                    No
## 998  Newspaper, magazines, brochures      Independent                    No
## 999                           Others      Independent                    No
## 1000 Newspaper, magazines, brochures      Independent                    No
## 1001     Travel agent, tour operator     Package Tour                   Yes
## 1002     Travel agent, tour operator     Package Tour                    No
## 1003     Travel agent, tour operator     Package Tour                   Yes
## 1005     Travel agent, tour operator     Package Tour                   Yes
## 1006                          Others      Independent                    No
## 1007     Travel agent, tour operator     Package Tour                   Yes
## 1008              Friends, relatives      Independent                    No
## 1009              Friends, relatives      Independent                    No
## 1010                          Others     Package Tour                   Yes
## 1011                      Trade fair     Package Tour                   Yes
## 1012              Friends, relatives     Package Tour                    No
## 1013                  Radio, TV, Web     Package Tour                   Yes
## 1014              Friends, relatives     Package Tour                   Yes
## 1015              Friends, relatives      Independent                    No
## 1016                          Others      Independent                    No
## 1017     Travel agent, tour operator     Package Tour                   Yes
## 1018              Friends, relatives      Independent                    No
## 1019              Friends, relatives      Independent                    No
## 1020              Friends, relatives      Independent                    No
## 1021              Friends, relatives      Independent                    No
## 1022     Travel agent, tour operator     Package Tour                   Yes
## 1023              Friends, relatives     Package Tour                   Yes
## 1024              Friends, relatives     Package Tour                   Yes
## 1025              Friends, relatives     Package Tour                    No
## 1026              Friends, relatives      Independent                    No
## 1027              Friends, relatives      Independent                    No
## 1028                  Radio, TV, Web      Independent                    No
## 1029              Friends, relatives      Independent                    No
## 1030     Travel agent, tour operator     Package Tour                    No
## 1031     Travel agent, tour operator     Package Tour                   Yes
## 1032     Travel agent, tour operator     Package Tour                   Yes
## 1033                  Radio, TV, Web      Independent                    No
## 1034              Friends, relatives      Independent                    No
## 1035     Travel agent, tour operator     Package Tour                    No
## 1036              Friends, relatives     Package Tour                    No
## 1037              Friends, relatives      Independent                    No
## 1038     Travel agent, tour operator     Package Tour                    No
## 1039                  Radio, TV, Web      Independent                    No
## 1041              Friends, relatives      Independent                    No
## 1042                          Others      Independent                    No
## 1043     Travel agent, tour operator      Independent                    No
## 1044              Friends, relatives      Independent                    No
## 1045                          Others      Independent                    No
## 1046              Friends, relatives     Package Tour                   Yes
## 1047     Travel agent, tour operator     Package Tour                    No
## 1048 Newspaper, magazines, brochures      Independent                    No
## 1049     Travel agent, tour operator     Package Tour                   Yes
## 1050                  Radio, TV, Web      Independent                    No
## 1051 Newspaper, magazines, brochures     Package Tour                    No
## 1052     Travel agent, tour operator     Package Tour                   Yes
## 1053     Travel agent, tour operator     Package Tour                   Yes
## 1055              Friends, relatives      Independent                    No
## 1056     Travel agent, tour operator     Package Tour                    No
## 1057              Friends, relatives      Independent                    No
## 1058              Friends, relatives      Independent                    No
## 1059              Friends, relatives     Package Tour                    No
## 1060                  Radio, TV, Web      Independent                    No
## 1061     Travel agent, tour operator     Package Tour                   Yes
## 1062     Travel agent, tour operator     Package Tour                   Yes
## 1063     Travel agent, tour operator     Package Tour                   Yes
## 1065     Travel agent, tour operator     Package Tour                   Yes
## 1066              Friends, relatives      Independent                    No
## 1067     Travel agent, tour operator      Independent                    No
## 1068     Travel agent, tour operator     Package Tour                   Yes
## 1069     Travel agent, tour operator     Package Tour                    No
## 1070              Friends, relatives     Package Tour                    No
## 1071     Travel agent, tour operator     Package Tour                   Yes
## 1072 Newspaper, magazines, brochures      Independent                    No
## 1073                          Others     Package Tour                   Yes
## 1074     Travel agent, tour operator      Independent                    No
## 1075     Travel agent, tour operator     Package Tour                    No
## 1077              Friends, relatives     Package Tour                    No
## 1078 Newspaper, magazines, brochures     Package Tour                    No
## 1079                          Others      Independent                    No
## 1080     Travel agent, tour operator     Package Tour                   Yes
## 1081              Friends, relatives      Independent                    No
## 1082              Friends, relatives      Independent                    No
## 1083     Travel agent, tour operator     Package Tour                   Yes
## 1084              Friends, relatives      Independent                    No
## 1086              Friends, relatives      Independent                    No
## 1087              Friends, relatives      Independent                    No
## 1088     Travel agent, tour operator      Independent                    No
## 1089              Friends, relatives     Package Tour                    No
## 1090 Newspaper, magazines, brochures     Package Tour                   Yes
## 1091              Friends, relatives      Independent                    No
## 1092                          Others      Independent                    No
## 1093     Travel agent, tour operator     Package Tour                   Yes
## 1094              Friends, relatives      Independent                    No
## 1095     Travel agent, tour operator     Package Tour                   Yes
## 1096              Friends, relatives      Independent                    No
## 1097              Friends, relatives      Independent                    No
## 1098     Travel agent, tour operator     Package Tour                   Yes
## 1099         Tanzania Mission Abroad     Package Tour                    No
## 1100                  Radio, TV, Web      Independent                    No
## 1101     Travel agent, tour operator     Package Tour                   Yes
## 1102     Travel agent, tour operator      Independent                    No
## 1103     Travel agent, tour operator     Package Tour                    No
## 1104              Friends, relatives      Independent                    No
## 1105     Travel agent, tour operator     Package Tour                    No
## 1106              Friends, relatives      Independent                    No
## 1107              Friends, relatives      Independent                    No
## 1108     Travel agent, tour operator     Package Tour                   Yes
## 1109     Travel agent, tour operator     Package Tour                   Yes
## 1110                          Others     Package Tour                   Yes
## 1111         Tanzania Mission Abroad     Package Tour                   Yes
## 1112     Travel agent, tour operator     Package Tour                    No
## 1113              Friends, relatives      Independent                    No
## 1114              Friends, relatives      Independent                    No
## 1116     Travel agent, tour operator     Package Tour                   Yes
## 1118              Friends, relatives      Independent                    No
## 1119     Travel agent, tour operator     Package Tour                   Yes
## 1120              Friends, relatives      Independent                    No
## 1123     Travel agent, tour operator      Independent                    No
## 1124 Newspaper, magazines, brochures      Independent                    No
## 1125              Friends, relatives      Independent                    No
## 1126     Travel agent, tour operator     Package Tour                    No
## 1127              Friends, relatives      Independent                    No
## 1128     Travel agent, tour operator     Package Tour                    No
## 1129     Travel agent, tour operator     Package Tour                    No
## 1130                  Radio, TV, Web     Package Tour                    No
## 1131     Travel agent, tour operator     Package Tour                   Yes
## 1132     Travel agent, tour operator     Package Tour                   Yes
## 1133              Friends, relatives      Independent                    No
## 1135              Friends, relatives      Independent                    No
## 1136              Friends, relatives      Independent                    No
## 1137     Travel agent, tour operator     Package Tour                    No
## 1138     Travel agent, tour operator     Package Tour                   Yes
## 1139     Travel agent, tour operator     Package Tour                   Yes
## 1140     Travel agent, tour operator     Package Tour                   Yes
## 1141     Travel agent, tour operator     Package Tour                    No
## 1142              Friends, relatives      Independent                    No
## 1143              Friends, relatives      Independent                    No
## 1144                          Others      Independent                    No
## 1145                  Radio, TV, Web      Independent                    No
## 1146              Friends, relatives      Independent                    No
## 1147                  Radio, TV, Web     Package Tour                   Yes
## 1148     Travel agent, tour operator     Package Tour                    No
## 1149                  Radio, TV, Web      Independent                    No
## 1150     Travel agent, tour operator     Package Tour                   Yes
## 1151              Friends, relatives      Independent                   Yes
## 1152              Friends, relatives      Independent                    No
## 1153              Friends, relatives     Package Tour                    No
## 1154     Travel agent, tour operator     Package Tour                   Yes
## 1155                      Trade fair      Independent                    No
## 1156              Friends, relatives      Independent                    No
## 1157              Friends, relatives     Package Tour                    No
## 1158              Friends, relatives      Independent                    No
## 1159 Newspaper, magazines, brochures      Independent                    No
## 1160     Travel agent, tour operator     Package Tour                   Yes
## 1161     Travel agent, tour operator      Independent                    No
## 1163                          Others      Independent                    No
## 1164     Travel agent, tour operator     Package Tour                    No
## 1165 Newspaper, magazines, brochures      Independent                    No
## 1166                  Radio, TV, Web     Package Tour                   Yes
## 1167     Travel agent, tour operator     Package Tour                   Yes
## 1168     Travel agent, tour operator     Package Tour                    No
## 1169     Travel agent, tour operator     Package Tour                   Yes
## 1170                          Others      Independent                    No
## 1172              Friends, relatives      Independent                    No
## 1173     Travel agent, tour operator     Package Tour                   Yes
## 1174     Travel agent, tour operator     Package Tour                   Yes
## 1175     Travel agent, tour operator     Package Tour                    No
## 1176     Travel agent, tour operator     Package Tour                   Yes
## 1177              Friends, relatives      Independent                    No
## 1178     Travel agent, tour operator     Package Tour                   Yes
## 1179     Travel agent, tour operator     Package Tour                    No
## 1180     Travel agent, tour operator     Package Tour                   Yes
## 1181     Travel agent, tour operator     Package Tour                   Yes
## 1182              Friends, relatives      Independent                    No
## 1183     Travel agent, tour operator     Package Tour                   Yes
## 1184                          Others      Independent                    No
## 1185              Friends, relatives      Independent                    No
## 1186     Travel agent, tour operator     Package Tour                   Yes
## 1187              Friends, relatives      Independent                    No
## 1188     Travel agent, tour operator     Package Tour                   Yes
## 1189                          Others     Package Tour                    No
## 1190              Friends, relatives      Independent                    No
## 1191     Travel agent, tour operator     Package Tour                   Yes
## 1192              Friends, relatives      Independent                    No
## 1193              Friends, relatives     Package Tour                    No
## 1194              Friends, relatives      Independent                    No
## 1195     Travel agent, tour operator     Package Tour                   Yes
## 1196     Travel agent, tour operator     Package Tour                   Yes
## 1197 Newspaper, magazines, brochures     Package Tour                   Yes
## 1198     Travel agent, tour operator      Independent                    No
## 1199     Travel agent, tour operator     Package Tour                   Yes
## 1200              Friends, relatives     Package Tour                    No
## 1201     Travel agent, tour operator     Package Tour                   Yes
## 1202              Friends, relatives      Independent                    No
## 1203     Travel agent, tour operator     Package Tour                   Yes
## 1205                      Trade fair      Independent                    No
## 1206                          Others      Independent                    No
## 1207     Travel agent, tour operator      Independent                    No
## 1208                          Others      Independent                    No
## 1209     Travel agent, tour operator     Package Tour                    No
## 1210                          Others      Independent                    No
## 1211     Travel agent, tour operator     Package Tour                    No
## 1212     Travel agent, tour operator     Package Tour                    No
## 1213              Friends, relatives      Independent                    No
## 1214     Travel agent, tour operator     Package Tour                   Yes
## 1215              Friends, relatives      Independent                    No
## 1216     Travel agent, tour operator     Package Tour                    No
## 1217              Friends, relatives      Independent                    No
## 1218              Friends, relatives     Package Tour                   Yes
## 1219                          Others      Independent                    No
## 1220     Travel agent, tour operator     Package Tour                   Yes
## 1221     Travel agent, tour operator     Package Tour                   Yes
## 1222     Travel agent, tour operator     Package Tour                    No
## 1223                          Others      Independent                    No
## 1224                          Others      Independent                    No
## 1225                  Radio, TV, Web     Package Tour                   Yes
## 1227 Newspaper, magazines, brochures     Package Tour                    No
## 1228 Newspaper, magazines, brochures      Independent                    No
## 1229     Travel agent, tour operator     Package Tour                   Yes
## 1232              Friends, relatives      Independent                    No
## 1233     Travel agent, tour operator     Package Tour                    No
## 1234     Travel agent, tour operator     Package Tour                    No
## 1235              Friends, relatives      Independent                    No
## 1237     Travel agent, tour operator     Package Tour                   Yes
## 1238         Tanzania Mission Abroad      Independent                    No
## 1239                  Radio, TV, Web      Independent                    No
## 1240              Friends, relatives      Independent                    No
## 1241              Friends, relatives     Package Tour                    No
## 1242                          Others      Independent                    No
## 1243     Travel agent, tour operator      Independent                    No
## 1244              Friends, relatives      Independent                    No
## 1245     Travel agent, tour operator     Package Tour                    No
## 1246     Travel agent, tour operator      Independent                    No
## 1247              Friends, relatives      Independent                    No
## 1248              Friends, relatives      Independent                    No
## 1249              Friends, relatives     Package Tour                   Yes
## 1250     Travel agent, tour operator     Package Tour                    No
## 1251     Travel agent, tour operator     Package Tour                   Yes
## 1252              Friends, relatives      Independent                    No
## 1253              Friends, relatives      Independent                    No
## 1254 Newspaper, magazines, brochures     Package Tour                   Yes
## 1255              Friends, relatives     Package Tour                   Yes
## 1256                  Radio, TV, Web      Independent                    No
## 1257                          Others      Independent                    No
## 1258                  Radio, TV, Web     Package Tour                    No
## 1259     Travel agent, tour operator      Independent                    No
## 1260              Friends, relatives      Independent                    No
## 1261              Friends, relatives      Independent                    No
## 1262     Travel agent, tour operator     Package Tour                   Yes
## 1263                  Radio, TV, Web     Package Tour                    No
## 1264     Travel agent, tour operator      Independent                    No
## 1265     Travel agent, tour operator      Independent                    No
## 1266     Travel agent, tour operator     Package Tour                    No
## 1267              Friends, relatives     Package Tour                   Yes
## 1268     Travel agent, tour operator     Package Tour                   Yes
## 1269              Friends, relatives     Package Tour                   Yes
## 1270         Tanzania Mission Abroad     Package Tour                   Yes
## 1271     Travel agent, tour operator     Package Tour                    No
## 1272     Travel agent, tour operator      Independent                    No
## 1274     Travel agent, tour operator     Package Tour                   Yes
## 1275              Friends, relatives      Independent                    No
## 1276     Travel agent, tour operator     Package Tour                   Yes
## 1277                          Others      Independent                    No
## 1278                          Others      Independent                    No
## 1279              Friends, relatives      Independent                    No
## 1280     Travel agent, tour operator     Package Tour                    No
## 1281              Friends, relatives      Independent                    No
## 1282     Travel agent, tour operator     Package Tour                    No
## 1283 Newspaper, magazines, brochures      Independent                    No
## 1284                  Radio, TV, Web     Package Tour                   Yes
## 1286              Friends, relatives      Independent                    No
## 1287              Friends, relatives      Independent                    No
## 1288     Travel agent, tour operator     Package Tour                   Yes
## 1289 Newspaper, magazines, brochures      Independent                    No
## 1290                  Radio, TV, Web     Package Tour                   Yes
## 1291     Travel agent, tour operator     Package Tour                   Yes
## 1292              Friends, relatives      Independent                    No
## 1293     Travel agent, tour operator     Package Tour                    No
## 1294              Friends, relatives      Independent                    No
## 1295     Travel agent, tour operator     Package Tour                   Yes
## 1296     Travel agent, tour operator     Package Tour                   Yes
## 1297     Travel agent, tour operator     Package Tour                   Yes
## 1298     Travel agent, tour operator     Package Tour                   Yes
## 1299     Travel agent, tour operator     Package Tour                   Yes
## 1300                  Radio, TV, Web      Independent                    No
## 1301                  Radio, TV, Web     Package Tour                   Yes
## 1302              Friends, relatives     Package Tour                   Yes
## 1303 Newspaper, magazines, brochures     Package Tour                   Yes
## 1304              Friends, relatives      Independent                    No
## 1305              Friends, relatives      Independent                    No
## 1306     Travel agent, tour operator     Package Tour                   Yes
## 1307     Travel agent, tour operator     Package Tour                   Yes
## 1308                          Others      Independent                    No
## 1309              Friends, relatives      Independent                    No
## 1310     Travel agent, tour operator      Independent                    No
## 1311     Travel agent, tour operator     Package Tour                    No
## 1312              Friends, relatives      Independent                    No
## 1313     Travel agent, tour operator     Package Tour                   Yes
## 1314     Travel agent, tour operator      Independent                    No
## 1315              Friends, relatives      Independent                    No
## 1316                          Others      Independent                    No
## 1317              Friends, relatives      Independent                    No
## 1318              Friends, relatives      Independent                    No
## 1320              Friends, relatives      Independent                    No
## 1321              Friends, relatives     Package Tour                   Yes
## 1322     Travel agent, tour operator      Independent                    No
## 1323     Travel agent, tour operator     Package Tour                    No
## 1324              Friends, relatives      Independent                    No
## 1325                      Trade fair      Independent                    No
## 1326                          Others      Independent                    No
## 1327                  Radio, TV, Web      Independent                    No
## 1328              Friends, relatives      Independent                    No
## 1329     Travel agent, tour operator     Package Tour                    No
## 1330                          Others      Independent                    No
## 1331              Friends, relatives     Package Tour                    No
## 1332                          Others     Package Tour                   Yes
## 1333     Travel agent, tour operator     Package Tour                   Yes
## 1334                      Trade fair      Independent                    No
## 1335     Travel agent, tour operator     Package Tour                   Yes
## 1336              Friends, relatives      Independent                    No
## 1337     Travel agent, tour operator      Independent                    No
## 1338     Travel agent, tour operator     Package Tour                   Yes
## 1339     Travel agent, tour operator     Package Tour                    No
## 1340                          Others      Independent                    No
## 1341     Travel agent, tour operator     Package Tour                   Yes
## 1342     Travel agent, tour operator     Package Tour                   Yes
## 1343              Friends, relatives     Package Tour                   Yes
## 1344                          Others      Independent                    No
## 1345     Travel agent, tour operator      Independent                   Yes
## 1346     Travel agent, tour operator     Package Tour                   Yes
## 1347     Travel agent, tour operator     Package Tour                   Yes
## 1348 Newspaper, magazines, brochures      Independent                    No
## 1349                          Others     Package Tour                   Yes
## 1350 Newspaper, magazines, brochures     Package Tour                   Yes
## 1351              Friends, relatives      Independent                    No
## 1352              Friends, relatives      Independent                    No
## 1353                      Trade fair      Independent                    No
## 1354                  Radio, TV, Web     Package Tour                   Yes
## 1355                          Others      Independent                    No
## 1356              Friends, relatives     Package Tour                    No
## 1357     Travel agent, tour operator     Package Tour                   Yes
## 1359              Friends, relatives      Independent                    No
## 1361              Friends, relatives     Package Tour                   Yes
## 1362              Friends, relatives      Independent                    No
## 1363     Travel agent, tour operator      Independent                    No
## 1365              Friends, relatives     Package Tour                   Yes
## 1366     Travel agent, tour operator     Package Tour                   Yes
## 1367     Travel agent, tour operator     Package Tour                   Yes
## 1368     Travel agent, tour operator     Package Tour                    No
## 1369              Friends, relatives      Independent                    No
## 1371     Travel agent, tour operator     Package Tour                   Yes
## 1372                  Radio, TV, Web      Independent                    No
## 1373     Travel agent, tour operator     Package Tour                   Yes
## 1374                  Radio, TV, Web     Package Tour                   Yes
## 1376              Friends, relatives     Package Tour                    No
## 1377              Friends, relatives     Package Tour                   Yes
## 1378     Travel agent, tour operator     Package Tour                   Yes
## 1379              Friends, relatives     Package Tour                   Yes
## 1380              Friends, relatives      Independent                    No
## 1381     Travel agent, tour operator     Package Tour                    No
## 1383              Friends, relatives      Independent                    No
## 1384     Travel agent, tour operator      Independent                    No
## 1385                  Radio, TV, Web     Package Tour                    No
## 1386              Friends, relatives      Independent                    No
## 1387     Travel agent, tour operator     Package Tour                   Yes
## 1388         Tanzania Mission Abroad      Independent                    No
## 1389              Friends, relatives     Package Tour                   Yes
## 1390     Travel agent, tour operator      Independent                    No
## 1391              Friends, relatives      Independent                    No
## 1392     Travel agent, tour operator     Package Tour                    No
## 1393     Travel agent, tour operator     Package Tour                    No
## 1394              Friends, relatives      Independent                    No
## 1395              Friends, relatives      Independent                    No
## 1396     Travel agent, tour operator     Package Tour                   Yes
## 1397              Friends, relatives      Independent                    No
## 1398     Travel agent, tour operator     Package Tour                   Yes
## 1399              Friends, relatives      Independent                    No
## 1400              Friends, relatives      Independent                    No
## 1401     Travel agent, tour operator     Package Tour                    No
## 1402                  Radio, TV, Web      Independent                   Yes
## 1403 Newspaper, magazines, brochures      Independent                    No
## 1404              Friends, relatives      Independent                    No
## 1405     Travel agent, tour operator     Package Tour                   Yes
## 1406     Travel agent, tour operator     Package Tour                   Yes
## 1407              Friends, relatives      Independent                    No
## 1408                          Others      Independent                    No
## 1409     Travel agent, tour operator     Package Tour                   Yes
## 1410     Travel agent, tour operator     Package Tour                   Yes
## 1411              Friends, relatives      Independent                    No
## 1412     Travel agent, tour operator     Package Tour                    No
## 1413              Friends, relatives      Independent                    No
## 1414     Travel agent, tour operator     Package Tour                    No
## 1415     Travel agent, tour operator     Package Tour                   Yes
## 1416              Inflight magazines      Independent                    No
## 1417              Friends, relatives     Package Tour                    No
## 1418     Travel agent, tour operator     Package Tour                   Yes
## 1419              Friends, relatives      Independent                    No
## 1420     Travel agent, tour operator     Package Tour                    No
## 1421     Travel agent, tour operator     Package Tour                   Yes
## 1422              Friends, relatives      Independent                    No
## 1423     Travel agent, tour operator     Package Tour                    No
## 1425     Travel agent, tour operator     Package Tour                   Yes
## 1426              Friends, relatives      Independent                    No
## 1427     Travel agent, tour operator      Independent                    No
## 1428              Friends, relatives      Independent                    No
## 1429     Travel agent, tour operator     Package Tour                    No
## 1430     Travel agent, tour operator      Independent                    No
## 1431              Friends, relatives      Independent                    No
## 1432     Travel agent, tour operator     Package Tour                   Yes
## 1433                  Radio, TV, Web     Package Tour                    No
## 1434 Newspaper, magazines, brochures     Package Tour                   Yes
## 1435              Friends, relatives      Independent                    No
## 1437     Travel agent, tour operator     Package Tour                   Yes
## 1438     Travel agent, tour operator     Package Tour                   Yes
## 1439              Friends, relatives     Package Tour                    No
## 1440     Travel agent, tour operator     Package Tour                   Yes
## 1441     Travel agent, tour operator     Package Tour                   Yes
## 1442              Friends, relatives      Independent                    No
## 1443     Travel agent, tour operator     Package Tour                   Yes
## 1444              Friends, relatives      Independent                    No
## 1445              Friends, relatives      Independent                    No
## 1446     Travel agent, tour operator     Package Tour                   Yes
## 1447              Friends, relatives     Package Tour                   Yes
## 1448                          Others      Independent                    No
## 1449                      Trade fair      Independent                    No
## 1450     Travel agent, tour operator     Package Tour                    No
## 1451     Travel agent, tour operator     Package Tour                   Yes
## 1452     Travel agent, tour operator     Package Tour                   Yes
## 1453     Travel agent, tour operator     Package Tour                    No
## 1454     Travel agent, tour operator     Package Tour                   Yes
## 1455              Friends, relatives      Independent                    No
## 1456              Friends, relatives      Independent                    No
## 1457     Travel agent, tour operator     Package Tour                   Yes
## 1458              Friends, relatives      Independent                    No
## 1459     Travel agent, tour operator     Package Tour                   Yes
## 1460              Friends, relatives      Independent                    No
## 1461                  Radio, TV, Web      Independent                    No
## 1464                      Trade fair      Independent                    No
## 1465     Travel agent, tour operator     Package Tour                    No
## 1466              Friends, relatives      Independent                    No
## 1467              Friends, relatives      Independent                    No
## 1468     Travel agent, tour operator     Package Tour                   Yes
## 1469     Travel agent, tour operator     Package Tour                   Yes
## 1470                          Others      Independent                    No
## 1471     Travel agent, tour operator     Package Tour                   Yes
## 1472     Travel agent, tour operator     Package Tour                   Yes
## 1473              Friends, relatives      Independent                    No
## 1474     Travel agent, tour operator     Package Tour                    No
## 1476              Friends, relatives     Package Tour                    No
## 1477     Travel agent, tour operator     Package Tour                   Yes
## 1478              Friends, relatives     Package Tour                   Yes
## 1479     Travel agent, tour operator     Package Tour                   Yes
## 1480         Tanzania Mission Abroad      Independent                    No
## 1481     Travel agent, tour operator     Package Tour                   Yes
## 1482     Travel agent, tour operator     Package Tour                    No
## 1483     Travel agent, tour operator     Package Tour                   Yes
## 1484     Travel agent, tour operator      Independent                   Yes
## 1485     Travel agent, tour operator      Independent                    No
## 1486              Friends, relatives      Independent                    No
## 1487     Travel agent, tour operator     Package Tour                    No
## 1488              Friends, relatives      Independent                    No
## 1489     Travel agent, tour operator     Package Tour                    No
## 1490              Friends, relatives      Independent                    No
## 1491     Travel agent, tour operator     Package Tour                    No
## 1492              Friends, relatives     Package Tour                   Yes
## 1493              Friends, relatives      Independent                    No
## 1494                  Radio, TV, Web      Independent                    No
## 1495         Tanzania Mission Abroad      Independent                    No
## 1496     Travel agent, tour operator      Independent                    No
## 1497              Friends, relatives     Package Tour                   Yes
## 1498     Travel agent, tour operator      Independent                    No
## 1499              Friends, relatives      Independent                    No
## 1500     Travel agent, tour operator      Independent                   Yes
## 1501     Travel agent, tour operator     Package Tour                    No
## 1502              Friends, relatives      Independent                    No
## 1503     Travel agent, tour operator     Package Tour                   Yes
## 1504                          Others      Independent                    No
## 1505                  Radio, TV, Web      Independent                    No
## 1506              Friends, relatives      Independent                    No
## 1507              Friends, relatives      Independent                    No
## 1509              Friends, relatives      Independent                    No
## 1510 Newspaper, magazines, brochures     Package Tour                   Yes
## 1511     Travel agent, tour operator     Package Tour                    No
## 1512     Travel agent, tour operator     Package Tour                    No
## 1514              Friends, relatives      Independent                    No
## 1515 Newspaper, magazines, brochures      Independent                    No
## 1516                          Others      Independent                    No
## 1517     Travel agent, tour operator      Independent                    No
## 1518 Newspaper, magazines, brochures     Package Tour                    No
## 1519     Travel agent, tour operator     Package Tour                   Yes
## 1520                          Others      Independent                    No
## 1521 Newspaper, magazines, brochures     Package Tour                    No
## 1522              Friends, relatives      Independent                    No
## 1524     Travel agent, tour operator      Independent                    No
## 1525              Friends, relatives      Independent                    No
## 1526              Friends, relatives      Independent                    No
## 1527              Friends, relatives      Independent                    No
## 1528     Travel agent, tour operator     Package Tour                   Yes
## 1529     Travel agent, tour operator     Package Tour                   Yes
## 1530              Friends, relatives      Independent                    No
## 1531                          Others      Independent                    No
## 1532              Friends, relatives      Independent                    No
## 1533              Friends, relatives      Independent                    No
## 1534     Travel agent, tour operator     Package Tour                   Yes
## 1535              Friends, relatives      Independent                    No
## 1536     Travel agent, tour operator      Independent                    No
## 1537                  Radio, TV, Web     Package Tour                   Yes
## 1538              Friends, relatives      Independent                    No
## 1539     Travel agent, tour operator     Package Tour                    No
## 1540     Travel agent, tour operator      Independent                    No
## 1541              Friends, relatives      Independent                    No
## 1542     Travel agent, tour operator      Independent                    No
## 1543     Travel agent, tour operator     Package Tour                    No
## 1544     Travel agent, tour operator     Package Tour                   Yes
## 1545     Travel agent, tour operator     Package Tour                    No
## 1546     Travel agent, tour operator      Independent                    No
## 1547     Travel agent, tour operator     Package Tour                   Yes
## 1548     Travel agent, tour operator     Package Tour                    No
## 1549     Travel agent, tour operator      Independent                    No
## 1550     Travel agent, tour operator     Package Tour                   Yes
## 1551 Newspaper, magazines, brochures      Independent                    No
## 1552                  Radio, TV, Web      Independent                    No
## 1553     Travel agent, tour operator     Package Tour                   Yes
## 1554 Newspaper, magazines, brochures     Package Tour                   Yes
## 1555                  Radio, TV, Web      Independent                    No
## 1556              Friends, relatives      Independent                    No
## 1557 Newspaper, magazines, brochures      Independent                    No
## 1558              Friends, relatives      Independent                    No
## 1559              Friends, relatives      Independent                    No
## 1560                          Others      Independent                    No
## 1561     Travel agent, tour operator     Package Tour                    No
## 1562              Friends, relatives      Independent                    No
## 1563              Friends, relatives      Independent                    No
## 1564     Travel agent, tour operator      Independent                    No
## 1565              Friends, relatives      Independent                    No
## 1566              Friends, relatives     Package Tour                   Yes
## 1567              Friends, relatives      Independent                    No
## 1568              Friends, relatives     Package Tour                    No
## 1569     Travel agent, tour operator     Package Tour                    No
## 1570     Travel agent, tour operator      Independent                    No
## 1571              Friends, relatives      Independent                    No
## 1572              Friends, relatives     Package Tour                   Yes
## 1573                  Radio, TV, Web     Package Tour                   Yes
## 1574              Friends, relatives     Package Tour                    No
## 1575         Tanzania Mission Abroad      Independent                    No
## 1576     Travel agent, tour operator     Package Tour                   Yes
## 1578              Friends, relatives      Independent                    No
## 1579     Travel agent, tour operator     Package Tour                    No
## 1580     Travel agent, tour operator     Package Tour                   Yes
## 1581              Friends, relatives      Independent                    No
## 1582 Newspaper, magazines, brochures      Independent                    No
## 1583     Travel agent, tour operator     Package Tour                   Yes
## 1585              Friends, relatives      Independent                    No
## 1586              Friends, relatives     Package Tour                   Yes
## 1587                  Radio, TV, Web     Package Tour                   Yes
## 1588     Travel agent, tour operator     Package Tour                    No
## 1589                          Others      Independent                    No
## 1590     Travel agent, tour operator     Package Tour                   Yes
## 1591     Travel agent, tour operator     Package Tour                   Yes
## 1592              Friends, relatives     Package Tour                    No
## 1593              Friends, relatives      Independent                    No
## 1594              Friends, relatives      Independent                    No
## 1595                  Radio, TV, Web     Package Tour                    No
## 1596              Friends, relatives      Independent                    No
## 1597     Travel agent, tour operator     Package Tour                    No
## 1598     Travel agent, tour operator     Package Tour                    No
## 1599              Friends, relatives      Independent                    No
## 1600              Friends, relatives      Independent                    No
## 1601              Friends, relatives      Independent                    No
## 1602     Travel agent, tour operator     Package Tour                    No
## 1603                  Radio, TV, Web      Independent                    No
## 1605     Travel agent, tour operator      Independent                    No
## 1606     Travel agent, tour operator     Package Tour                    No
## 1607              Friends, relatives      Independent                    No
## 1608     Travel agent, tour operator     Package Tour                   Yes
## 1609     Travel agent, tour operator     Package Tour                    No
## 1610     Travel agent, tour operator      Independent                    No
## 1611     Travel agent, tour operator     Package Tour                   Yes
## 1612              Friends, relatives      Independent                    No
## 1613                          Others     Package Tour                   Yes
## 1614 Newspaper, magazines, brochures     Package Tour                    No
## 1615              Friends, relatives      Independent                    No
## 1616              Friends, relatives     Package Tour                   Yes
## 1617              Friends, relatives      Independent                    No
## 1618     Travel agent, tour operator     Package Tour                   Yes
## 1619              Friends, relatives      Independent                    No
## 1620     Travel agent, tour operator     Package Tour                   Yes
## 1621              Friends, relatives      Independent                    No
## 1622                          Others      Independent                    No
## 1623              Inflight magazines      Independent                    No
## 1624     Travel agent, tour operator     Package Tour                    No
## 1625                          Others      Independent                    No
## 1626                          Others      Independent                    No
## 1627     Travel agent, tour operator     Package Tour                   Yes
## 1628     Travel agent, tour operator     Package Tour                   Yes
## 1629              Friends, relatives     Package Tour                   Yes
## 1630 Newspaper, magazines, brochures      Independent                    No
## 1631     Travel agent, tour operator     Package Tour                    No
## 1632     Travel agent, tour operator     Package Tour                   Yes
## 1633 Newspaper, magazines, brochures     Package Tour                    No
## 1634              Friends, relatives      Independent                    No
## 1635              Friends, relatives     Package Tour                   Yes
## 1636              Friends, relatives     Package Tour                    No
## 1637              Friends, relatives      Independent                    No
## 1638     Travel agent, tour operator     Package Tour                    No
## 1639     Travel agent, tour operator      Independent                    No
## 1640     Travel agent, tour operator     Package Tour                   Yes
## 1641              Friends, relatives      Independent                    No
## 1642                  Radio, TV, Web     Package Tour                    No
## 1643     Travel agent, tour operator     Package Tour                   Yes
## 1644                  Radio, TV, Web     Package Tour                   Yes
## 1645 Newspaper, magazines, brochures     Package Tour                    No
## 1646              Friends, relatives      Independent                    No
## 1647                  Radio, TV, Web      Independent                    No
## 1648     Travel agent, tour operator     Package Tour                   Yes
## 1649     Travel agent, tour operator     Package Tour                    No
## 1650 Newspaper, magazines, brochures     Package Tour                    No
## 1651     Travel agent, tour operator      Independent                    No
## 1652              Friends, relatives     Package Tour                    No
## 1653              Friends, relatives     Package Tour                   Yes
## 1655 Newspaper, magazines, brochures      Independent                    No
## 1656              Friends, relatives      Independent                    No
## 1657 Newspaper, magazines, brochures      Independent                    No
## 1658     Travel agent, tour operator     Package Tour                   Yes
## 1659     Travel agent, tour operator     Package Tour                   Yes
## 1660     Travel agent, tour operator     Package Tour                   Yes
## 1661     Travel agent, tour operator     Package Tour                   Yes
## 1662     Travel agent, tour operator     Package Tour                   Yes
## 1663     Travel agent, tour operator     Package Tour                   Yes
## 1664              Friends, relatives     Package Tour                    No
## 1665     Travel agent, tour operator     Package Tour                   Yes
## 1666     Travel agent, tour operator     Package Tour                    No
## 1669     Travel agent, tour operator     Package Tour                   Yes
## 1670 Newspaper, magazines, brochures     Package Tour                   Yes
## 1671                          Others      Independent                    No
## 1672     Travel agent, tour operator     Package Tour                   Yes
## 1673                          Others     Package Tour                    No
## 1674              Friends, relatives      Independent                    No
## 1675     Travel agent, tour operator     Package Tour                   Yes
## 1676 Newspaper, magazines, brochures      Independent                    No
## 1677                          Others      Independent                   Yes
## 1678                          Others      Independent                    No
## 1679         Tanzania Mission Abroad     Package Tour                   Yes
## 1680              Friends, relatives     Package Tour                    No
## 1682              Friends, relatives      Independent                    No
## 1683              Friends, relatives      Independent                   Yes
## 1684     Travel agent, tour operator      Independent                    No
## 1685     Travel agent, tour operator     Package Tour                   Yes
## 1686                  Radio, TV, Web      Independent                    No
## 1687     Travel agent, tour operator     Package Tour                   Yes
## 1688     Travel agent, tour operator      Independent                    No
## 1689              Friends, relatives      Independent                    No
## 1690                  Radio, TV, Web     Package Tour                   Yes
## 1691     Travel agent, tour operator     Package Tour                   Yes
## 1692 Newspaper, magazines, brochures      Independent                    No
## 1693     Travel agent, tour operator     Package Tour                    No
## 1694              Friends, relatives      Independent                    No
## 1695     Travel agent, tour operator     Package Tour                   Yes
## 1696     Travel agent, tour operator     Package Tour                   Yes
## 1697     Travel agent, tour operator     Package Tour                   Yes
## 1698     Travel agent, tour operator     Package Tour                    No
## 1700     Travel agent, tour operator     Package Tour                    No
## 1701              Friends, relatives      Independent                    No
## 1702     Travel agent, tour operator     Package Tour                   Yes
## 1703                          Others      Independent                    No
## 1704     Travel agent, tour operator     Package Tour                   Yes
## 1705              Friends, relatives      Independent                    No
## 1706     Travel agent, tour operator     Package Tour                    No
## 1707     Travel agent, tour operator     Package Tour                   Yes
## 1708     Travel agent, tour operator     Package Tour                   Yes
## 1709     Travel agent, tour operator      Independent                    No
## 1710     Travel agent, tour operator     Package Tour                   Yes
## 1711     Travel agent, tour operator      Independent                    No
## 1712     Travel agent, tour operator     Package Tour                   Yes
## 1713              Friends, relatives      Independent                    No
## 1714              Friends, relatives     Package Tour                   Yes
## 1715              Friends, relatives      Independent                    No
## 1716 Newspaper, magazines, brochures      Independent                    No
## 1717     Travel agent, tour operator     Package Tour                   Yes
## 1718     Travel agent, tour operator     Package Tour                   Yes
## 1719              Friends, relatives     Package Tour                    No
## 1721                  Radio, TV, Web      Independent                    No
## 1722         Tanzania Mission Abroad      Independent                    No
## 1724              Friends, relatives      Independent                    No
## 1725     Travel agent, tour operator      Independent                    No
## 1726     Travel agent, tour operator     Package Tour                   Yes
## 1727              Friends, relatives      Independent                    No
## 1728     Travel agent, tour operator     Package Tour                   Yes
## 1729     Travel agent, tour operator      Independent                    No
## 1730                          Others      Independent                    No
## 1731     Travel agent, tour operator     Package Tour                    No
## 1732     Travel agent, tour operator     Package Tour                   Yes
## 1733                          Others      Independent                    No
## 1734 Newspaper, magazines, brochures      Independent                    No
## 1735     Travel agent, tour operator     Package Tour                   Yes
## 1736              Friends, relatives      Independent                    No
## 1737                  Radio, TV, Web      Independent                    No
## 1738     Travel agent, tour operator     Package Tour                   Yes
## 1739     Travel agent, tour operator     Package Tour                   Yes
## 1740              Friends, relatives      Independent                    No
## 1741                          Others      Independent                    No
## 1742              Friends, relatives      Independent                    No
## 1743     Travel agent, tour operator      Independent                    No
## 1744                  Radio, TV, Web      Independent                    No
## 1745              Friends, relatives      Independent                    No
## 1746     Travel agent, tour operator      Independent                    No
## 1747                  Radio, TV, Web      Independent                    No
## 1749                      Trade fair     Package Tour                    No
## 1750              Friends, relatives      Independent                    No
## 1751              Friends, relatives     Package Tour                   Yes
## 1752              Friends, relatives      Independent                    No
## 1753              Friends, relatives      Independent                    No
## 1754     Travel agent, tour operator     Package Tour                    No
## 1755                          Others      Independent                    No
## 1756              Friends, relatives      Independent                    No
## 1757                          Others      Independent                    No
## 1758              Friends, relatives      Independent                    No
## 1759              Friends, relatives      Independent                    No
## 1761     Travel agent, tour operator     Package Tour                   Yes
## 1762              Friends, relatives      Independent                    No
## 1763              Friends, relatives      Independent                    No
## 1764     Travel agent, tour operator      Independent                    No
## 1765     Travel agent, tour operator     Package Tour                   Yes
## 1766     Travel agent, tour operator     Package Tour                   Yes
## 1769     Travel agent, tour operator     Package Tour                    No
## 1770     Travel agent, tour operator      Independent                    No
## 1771     Travel agent, tour operator     Package Tour                   Yes
## 1773              Friends, relatives     Package Tour                    No
## 1774              Friends, relatives      Independent                    No
## 1775     Travel agent, tour operator      Independent                    No
## 1776     Travel agent, tour operator      Independent                    No
## 1778     Travel agent, tour operator     Package Tour                   Yes
## 1779     Travel agent, tour operator     Package Tour                   Yes
## 1780              Friends, relatives     Package Tour                   Yes
## 1781              Friends, relatives      Independent                    No
## 1782     Travel agent, tour operator     Package Tour                   Yes
## 1783     Travel agent, tour operator     Package Tour                    No
## 1784              Friends, relatives     Package Tour                    No
## 1785     Travel agent, tour operator     Package Tour                    No
## 1786                  Radio, TV, Web      Independent                    No
## 1787     Travel agent, tour operator     Package Tour                   Yes
## 1788     Travel agent, tour operator     Package Tour                   Yes
## 1789              Friends, relatives     Package Tour                    No
## 1790              Friends, relatives      Independent                    No
## 1791              Friends, relatives      Independent                    No
## 1792              Friends, relatives     Package Tour                    No
## 1793     Travel agent, tour operator     Package Tour                   Yes
## 1794     Travel agent, tour operator     Package Tour                    No
## 1795              Friends, relatives     Package Tour                    No
## 1796     Travel agent, tour operator     Package Tour                   Yes
## 1797     Travel agent, tour operator      Independent                    No
## 1798     Travel agent, tour operator     Package Tour                   Yes
## 1799                  Radio, TV, Web      Independent                    No
## 1800              Friends, relatives      Independent                    No
## 1801     Travel agent, tour operator     Package Tour                   Yes
## 1802              Friends, relatives      Independent                    No
## 1803     Travel agent, tour operator     Package Tour                    No
## 1804              Friends, relatives     Package Tour                   Yes
## 1805              Friends, relatives      Independent                    No
## 1806              Friends, relatives      Independent                    No
## 1807              Friends, relatives      Independent                    No
## 1808     Travel agent, tour operator     Package Tour                   Yes
## 1809              Friends, relatives      Independent                    No
## 1810     Travel agent, tour operator     Package Tour                   Yes
## 1811     Travel agent, tour operator     Package Tour                   Yes
## 1812     Travel agent, tour operator     Package Tour                   Yes
## 1813     Travel agent, tour operator     Package Tour                   Yes
## 1814                      Trade fair      Independent                    No
## 1815                          Others      Independent                    No
## 1816              Friends, relatives      Independent                    No
## 1817                  Radio, TV, Web      Independent                    No
## 1818              Friends, relatives      Independent                    No
## 1819     Travel agent, tour operator     Package Tour                   Yes
## 1820     Travel agent, tour operator     Package Tour                   Yes
## 1821     Travel agent, tour operator     Package Tour                    No
## 1822     Travel agent, tour operator     Package Tour                   Yes
## 1823     Travel agent, tour operator     Package Tour                    No
## 1824     Travel agent, tour operator     Package Tour                    No
## 1825              Friends, relatives      Independent                    No
## 1826     Travel agent, tour operator      Independent                    No
## 1827              Friends, relatives      Independent                    No
## 1828                          Others     Package Tour                    No
## 1829              Friends, relatives      Independent                    No
## 1830     Travel agent, tour operator     Package Tour                    No
## 1831                          Others     Package Tour                   Yes
## 1832              Friends, relatives     Package Tour                    No
## 1833     Travel agent, tour operator     Package Tour                   Yes
## 1834     Travel agent, tour operator      Independent                    No
## 1835     Travel agent, tour operator     Package Tour                   Yes
## 1836     Travel agent, tour operator      Independent                    No
## 1837 Newspaper, magazines, brochures      Independent                    No
## 1838              Friends, relatives      Independent                    No
## 1839     Travel agent, tour operator      Independent                    No
## 1840     Travel agent, tour operator     Package Tour                   Yes
## 1841                          Others     Package Tour                   Yes
## 1842              Friends, relatives     Package Tour                    No
## 1843     Travel agent, tour operator      Independent                    No
## 1844                          Others      Independent                    No
## 1845              Friends, relatives      Independent                    No
## 1846     Travel agent, tour operator      Independent                    No
## 1847     Travel agent, tour operator     Package Tour                    No
## 1848     Travel agent, tour operator      Independent                    No
## 1849              Friends, relatives      Independent                    No
## 1850     Travel agent, tour operator     Package Tour                   Yes
## 1851     Travel agent, tour operator     Package Tour                   Yes
## 1852              Friends, relatives      Independent                    No
## 1853     Travel agent, tour operator     Package Tour                    No
## 1854              Friends, relatives      Independent                    No
## 1855     Travel agent, tour operator     Package Tour                   Yes
## 1856     Travel agent, tour operator     Package Tour                    No
## 1857     Travel agent, tour operator     Package Tour                   Yes
## 1858                  Radio, TV, Web     Package Tour                   Yes
## 1859                          Others      Independent                    No
## 1860     Travel agent, tour operator     Package Tour                   Yes
## 1861     Travel agent, tour operator     Package Tour                    No
## 1862     Travel agent, tour operator     Package Tour                    No
## 1863 Newspaper, magazines, brochures     Package Tour                    No
## 1864                  Radio, TV, Web      Independent                    No
## 1865     Travel agent, tour operator     Package Tour                   Yes
## 1866              Friends, relatives      Independent                    No
## 1868     Travel agent, tour operator     Package Tour                   Yes
## 1869              Friends, relatives      Independent                    No
## 1870     Travel agent, tour operator      Independent                    No
## 1871     Travel agent, tour operator     Package Tour                    No
## 1872     Travel agent, tour operator     Package Tour                   Yes
## 1873     Travel agent, tour operator     Package Tour                   Yes
## 1874 Newspaper, magazines, brochures      Independent                    No
## 1875     Travel agent, tour operator     Package Tour                   Yes
## 1876     Travel agent, tour operator     Package Tour                   Yes
## 1877              Friends, relatives      Independent                    No
## 1878     Travel agent, tour operator     Package Tour                   Yes
## 1879     Travel agent, tour operator     Package Tour                   Yes
## 1880              Friends, relatives      Independent                    No
## 1881              Inflight magazines      Independent                    No
## 1882     Travel agent, tour operator      Independent                    No
## 1883         Tanzania Mission Abroad      Independent                    No
## 1884              Friends, relatives     Package Tour                   Yes
## 1885                  Radio, TV, Web     Package Tour                   Yes
## 1886              Friends, relatives      Independent                    No
## 1887              Friends, relatives      Independent                    No
## 1888     Travel agent, tour operator     Package Tour                   Yes
## 1889              Friends, relatives      Independent                    No
## 1890              Friends, relatives      Independent                    No
## 1891                  Radio, TV, Web      Independent                    No
## 1892              Friends, relatives     Package Tour                    No
## 1893 Newspaper, magazines, brochures     Package Tour                   Yes
## 1894     Travel agent, tour operator     Package Tour                   Yes
## 1895                          Others      Independent                    No
## 1896                          Others      Independent                    No
## 1897              Friends, relatives     Package Tour                   Yes
## 1898              Friends, relatives      Independent                    No
## 1899                          Others      Independent                    No
## 1900              Friends, relatives      Independent                    No
## 1901     Travel agent, tour operator      Independent                    No
## 1902              Friends, relatives      Independent                    No
## 1903                      Trade fair     Package Tour                   Yes
## 1904              Friends, relatives      Independent                    No
## 1906              Friends, relatives      Independent                    No
## 1907              Friends, relatives      Independent                    No
## 1908              Friends, relatives     Package Tour                    No
## 1909     Travel agent, tour operator     Package Tour                   Yes
## 1910 Newspaper, magazines, brochures     Package Tour                   Yes
## 1911              Friends, relatives     Package Tour                    No
## 1912     Travel agent, tour operator      Independent                    No
## 1913     Travel agent, tour operator      Independent                    No
## 1914     Travel agent, tour operator      Independent                    No
## 1915     Travel agent, tour operator     Package Tour                    No
## 1916              Friends, relatives      Independent                    No
## 1917              Friends, relatives     Package Tour                   Yes
## 1918                  Radio, TV, Web      Independent                    No
## 1919     Travel agent, tour operator      Independent                    No
## 1920              Friends, relatives     Package Tour                   Yes
## 1921              Friends, relatives      Independent                    No
## 1922                          Others      Independent                    No
## 1923                  Radio, TV, Web     Package Tour                   Yes
## 1924              Friends, relatives      Independent                    No
## 1926              Friends, relatives      Independent                    No
## 1927                  Radio, TV, Web      Independent                    No
## 1928              Friends, relatives      Independent                    No
## 1929              Friends, relatives      Independent                    No
## 1930              Friends, relatives     Package Tour                    No
## 1931              Friends, relatives     Package Tour                   Yes
## 1932              Friends, relatives      Independent                    No
## 1933 Newspaper, magazines, brochures      Independent                    No
## 1934     Travel agent, tour operator     Package Tour                   Yes
## 1935     Travel agent, tour operator     Package Tour                    No
## 1936     Travel agent, tour operator     Package Tour                   Yes
## 1937                          Others     Package Tour                   Yes
## 1938     Travel agent, tour operator     Package Tour                   Yes
## 1939              Friends, relatives     Package Tour                    No
## 1941              Friends, relatives     Package Tour                   Yes
## 1943     Travel agent, tour operator     Package Tour                   Yes
## 1944         Tanzania Mission Abroad     Package Tour                   Yes
## 1945              Friends, relatives      Independent                    No
## 1946                          Others      Independent                    No
## 1947                  Radio, TV, Web     Package Tour                    No
## 1948                          Others      Independent                    No
## 1949     Travel agent, tour operator     Package Tour                    No
## 1950     Travel agent, tour operator     Package Tour                   Yes
## 1951 Newspaper, magazines, brochures      Independent                    No
## 1952     Travel agent, tour operator      Independent                    No
## 1953              Friends, relatives      Independent                    No
## 1954              Friends, relatives      Independent                    No
## 1955     Travel agent, tour operator     Package Tour                    No
## 1956              Friends, relatives     Package Tour                   Yes
## 1957 Newspaper, magazines, brochures     Package Tour                   Yes
## 1958 Newspaper, magazines, brochures      Independent                    No
## 1959     Travel agent, tour operator      Independent                    No
## 1960              Friends, relatives      Independent                    No
## 1961                  Radio, TV, Web     Package Tour                   Yes
## 1962              Friends, relatives      Independent                    No
## 1963                          Others      Independent                    No
## 1964              Friends, relatives      Independent                    No
## 1965     Travel agent, tour operator     Package Tour                   Yes
## 1966              Friends, relatives      Independent                    No
## 1967                  Radio, TV, Web     Package Tour                   Yes
## 1968              Inflight magazines      Independent                    No
## 1969              Friends, relatives     Package Tour                   Yes
## 1970              Friends, relatives      Independent                    No
## 1971                          Others      Independent                    No
## 1972              Friends, relatives     Package Tour                   Yes
## 1973     Travel agent, tour operator      Independent                    No
## 1974              Friends, relatives      Independent                    No
## 1975                  Radio, TV, Web      Independent                    No
## 1977 Newspaper, magazines, brochures      Independent                    No
## 1979     Travel agent, tour operator     Package Tour                   Yes
## 1980         Tanzania Mission Abroad      Independent                    No
## 1981              Friends, relatives      Independent                    No
## 1982                          Others      Independent                    No
## 1983              Friends, relatives      Independent                    No
## 1984                          Others      Independent                    No
## 1985              Friends, relatives      Independent                    No
## 1986     Travel agent, tour operator     Package Tour                   Yes
## 1987     Travel agent, tour operator     Package Tour                   Yes
## 1988              Inflight magazines      Independent                    No
## 1989     Travel agent, tour operator     Package Tour                    No
## 1990     Travel agent, tour operator     Package Tour                    No
## 1991     Travel agent, tour operator     Package Tour                    No
## 1992     Travel agent, tour operator     Package Tour                   Yes
## 1993 Newspaper, magazines, brochures      Independent                    No
## 1994     Travel agent, tour operator     Package Tour                    No
## 1995 Newspaper, magazines, brochures      Independent                    No
## 1996              Friends, relatives      Independent                    No
## 1997                  Radio, TV, Web      Independent                    No
## 1998     Travel agent, tour operator     Package Tour                    No
## 1999     Travel agent, tour operator      Independent                    No
## 2000              Friends, relatives     Package Tour                   Yes
## 2001     Travel agent, tour operator     Package Tour                    No
## 2002     Travel agent, tour operator      Independent                    No
## 2003              Friends, relatives      Independent                    No
## 2004     Travel agent, tour operator     Package Tour                    No
## 2005     Travel agent, tour operator     Package Tour                   Yes
## 2006     Travel agent, tour operator      Independent                    No
## 2007     Travel agent, tour operator     Package Tour                    No
## 2008              Friends, relatives      Independent                    No
## 2009              Friends, relatives      Independent                    No
## 2010                          Others     Package Tour                   Yes
## 2011              Friends, relatives      Independent                    No
## 2013     Travel agent, tour operator     Package Tour                   Yes
## 2015              Friends, relatives      Independent                    No
## 2016              Friends, relatives      Independent                    No
## 2017              Friends, relatives      Independent                    No
## 2018              Friends, relatives      Independent                    No
## 2019              Friends, relatives     Package Tour                    No
## 2020              Friends, relatives      Independent                    No
## 2021     Travel agent, tour operator     Package Tour                    No
## 2022     Travel agent, tour operator     Package Tour                   Yes
## 2023     Travel agent, tour operator      Independent                    No
## 2024     Travel agent, tour operator      Independent                    No
## 2025     Travel agent, tour operator     Package Tour                   Yes
## 2026         Tanzania Mission Abroad      Independent                    No
## 2027     Travel agent, tour operator      Independent                    No
## 2028     Travel agent, tour operator     Package Tour                    No
## 2029                          Others      Independent                    No
## 2030              Friends, relatives      Independent                    No
## 2031                  Radio, TV, Web      Independent                    No
## 2032              Friends, relatives      Independent                    No
## 2033                  Radio, TV, Web      Independent                    No
## 2034              Friends, relatives      Independent                    No
## 2035              Friends, relatives      Independent                    No
## 2036     Travel agent, tour operator     Package Tour                   Yes
## 2038              Friends, relatives      Independent                    No
## 2039              Friends, relatives     Package Tour                   Yes
## 2040              Friends, relatives      Independent                    No
## 2041     Travel agent, tour operator      Independent                    No
## 2042     Travel agent, tour operator     Package Tour                   Yes
## 2043              Friends, relatives      Independent                    No
## 2044     Travel agent, tour operator     Package Tour                    No
## 2045     Travel agent, tour operator     Package Tour                    No
## 2046              Friends, relatives      Independent                    No
## 2047              Friends, relatives      Independent                    No
## 2048     Travel agent, tour operator     Package Tour                    No
## 2049     Travel agent, tour operator     Package Tour                    No
## 2050              Friends, relatives      Independent                    No
## 2052     Travel agent, tour operator     Package Tour                    No
## 2053 Newspaper, magazines, brochures     Package Tour                   Yes
## 2055     Travel agent, tour operator     Package Tour                   Yes
## 2056                          Others      Independent                    No
## 2057              Friends, relatives     Package Tour                   Yes
## 2058     Travel agent, tour operator     Package Tour                    No
## 2059     Travel agent, tour operator     Package Tour                    No
## 2061              Friends, relatives      Independent                    No
## 2062              Friends, relatives     Package Tour                    No
## 2063     Travel agent, tour operator     Package Tour                   Yes
## 2064              Friends, relatives      Independent                    No
## 2065              Friends, relatives      Independent                    No
## 2067                  Radio, TV, Web     Package Tour                   Yes
## 2068                      Trade fair      Independent                    No
## 2069                          Others      Independent                    No
## 2071              Friends, relatives      Independent                    No
## 2072     Travel agent, tour operator     Package Tour                   Yes
## 2073              Friends, relatives     Package Tour                    No
## 2074              Friends, relatives      Independent                    No
## 2075                  Radio, TV, Web      Independent                    No
## 2076     Travel agent, tour operator     Package Tour                   Yes
## 2077     Travel agent, tour operator     Package Tour                    No
## 2078              Friends, relatives      Independent                    No
## 2079     Travel agent, tour operator     Package Tour                   Yes
## 2080     Travel agent, tour operator     Package Tour                   Yes
## 2081         Tanzania Mission Abroad     Package Tour                   Yes
## 2082              Friends, relatives      Independent                    No
## 2083     Travel agent, tour operator     Package Tour                   Yes
## 2084     Travel agent, tour operator     Package Tour                   Yes
## 2085     Travel agent, tour operator     Package Tour                    No
## 2086     Travel agent, tour operator     Package Tour                    No
## 2087                  Radio, TV, Web      Independent                    No
## 2088              Friends, relatives      Independent                    No
## 2089     Travel agent, tour operator      Independent                    No
## 2090     Travel agent, tour operator     Package Tour                   Yes
## 2092              Friends, relatives      Independent                    No
## 2094     Travel agent, tour operator      Independent                    No
## 2095              Friends, relatives      Independent                    No
## 2096              Friends, relatives      Independent                    No
## 2098                  Radio, TV, Web     Package Tour                   Yes
## 2099                  Radio, TV, Web      Independent                    No
## 2100     Travel agent, tour operator     Package Tour                   Yes
## 2101              Friends, relatives      Independent                    No
## 2102                          Others      Independent                    No
## 2103              Friends, relatives      Independent                   Yes
## 2104     Travel agent, tour operator     Package Tour                   Yes
## 2105 Newspaper, magazines, brochures      Independent                    No
## 2106                      Trade fair      Independent                    No
## 2107              Friends, relatives      Independent                    No
## 2108     Travel agent, tour operator     Package Tour                    No
## 2109     Travel agent, tour operator     Package Tour                   Yes
## 2110 Newspaper, magazines, brochures     Package Tour                   Yes
## 2111                      Trade fair      Independent                    No
## 2112                          Others      Independent                    No
## 2113                          Others     Package Tour                    No
## 2114     Travel agent, tour operator      Independent                    No
## 2115              Friends, relatives      Independent                    No
## 2116     Travel agent, tour operator     Package Tour                   Yes
## 2117     Travel agent, tour operator     Package Tour                   Yes
## 2119     Travel agent, tour operator     Package Tour                   Yes
## 2120     Travel agent, tour operator     Package Tour                   Yes
## 2121              Friends, relatives      Independent                    No
## 2122 Newspaper, magazines, brochures     Package Tour                   Yes
## 2123     Travel agent, tour operator     Package Tour                    No
## 2126              Friends, relatives     Package Tour                   Yes
## 2127     Travel agent, tour operator     Package Tour                   Yes
## 2128     Travel agent, tour operator     Package Tour                   Yes
## 2129                  Radio, TV, Web      Independent                    No
## 2130                      Trade fair      Independent                    No
## 2131     Travel agent, tour operator     Package Tour                   Yes
## 2132 Newspaper, magazines, brochures      Independent                    No
## 2133              Friends, relatives     Package Tour                   Yes
## 2134              Friends, relatives      Independent                    No
## 2135     Travel agent, tour operator      Independent                    No
## 2136     Travel agent, tour operator     Package Tour                   Yes
## 2137              Friends, relatives     Package Tour                    No
## 2138              Friends, relatives      Independent                    No
## 2140              Friends, relatives      Independent                    No
## 2141                          Others     Package Tour                   Yes
## 2142     Travel agent, tour operator      Independent                    No
## 2143              Friends, relatives     Package Tour                   Yes
## 2144     Travel agent, tour operator     Package Tour                   Yes
## 2145                      Trade fair      Independent                    No
## 2146     Travel agent, tour operator     Package Tour                   Yes
## 2147     Travel agent, tour operator     Package Tour                    No
## 2148                  Radio, TV, Web     Package Tour                   Yes
## 2149                          Others      Independent                    No
## 2150     Travel agent, tour operator     Package Tour                    No
## 2151              Friends, relatives     Package Tour                   Yes
## 2152     Travel agent, tour operator     Package Tour                   Yes
## 2154 Newspaper, magazines, brochures      Independent                    No
## 2155                  Radio, TV, Web     Package Tour                   Yes
## 2157     Travel agent, tour operator     Package Tour                   Yes
## 2158     Travel agent, tour operator      Independent                    No
## 2160     Travel agent, tour operator     Package Tour                    No
## 2161     Travel agent, tour operator     Package Tour                   Yes
## 2163     Travel agent, tour operator     Package Tour                    No
## 2164              Friends, relatives      Independent                    No
## 2165                          Others      Independent                    No
## 2166     Travel agent, tour operator     Package Tour                    No
## 2167              Friends, relatives      Independent                    No
## 2169     Travel agent, tour operator     Package Tour                   Yes
## 2170     Travel agent, tour operator     Package Tour                    No
## 2171     Travel agent, tour operator      Independent                    No
## 2172     Travel agent, tour operator      Independent                    No
## 2174     Travel agent, tour operator     Package Tour                   Yes
## 2175              Friends, relatives     Package Tour                    No
## 2176     Travel agent, tour operator     Package Tour                    No
## 2177 Newspaper, magazines, brochures      Independent                    No
## 2178              Inflight magazines      Independent                    No
## 2179                          Others      Independent                    No
## 2180     Travel agent, tour operator     Package Tour                   Yes
## 2181              Friends, relatives      Independent                    No
## 2182              Friends, relatives      Independent                    No
## 2183     Travel agent, tour operator      Independent                    No
## 2184     Travel agent, tour operator     Package Tour                   Yes
## 2185 Newspaper, magazines, brochures      Independent                    No
## 2186                          Others      Independent                    No
## 2187     Travel agent, tour operator      Independent                    No
## 2188     Travel agent, tour operator     Package Tour                   Yes
## 2189              Friends, relatives      Independent                    No
## 2190     Travel agent, tour operator     Package Tour                   Yes
## 2192     Travel agent, tour operator     Package Tour                    No
## 2193              Friends, relatives      Independent                    No
## 2194              Friends, relatives      Independent                    No
## 2195                          Others      Independent                    No
## 2196                  Radio, TV, Web      Independent                    No
## 2197 Newspaper, magazines, brochures      Independent                    No
## 2198     Travel agent, tour operator     Package Tour                   Yes
## 2199              Friends, relatives      Independent                    No
## 2200              Friends, relatives      Independent                    No
## 2201                          Others      Independent                    No
## 2202              Friends, relatives      Independent                    No
## 2203              Friends, relatives     Package Tour                    No
## 2204              Friends, relatives      Independent                    No
## 2205                  Radio, TV, Web      Independent                    No
## 2206     Travel agent, tour operator     Package Tour                    No
## 2207     Travel agent, tour operator     Package Tour                   Yes
## 2208              Friends, relatives      Independent                    No
## 2209     Travel agent, tour operator     Package Tour                   Yes
## 2210                          Others      Independent                    No
## 2211              Friends, relatives      Independent                    No
## 2212              Friends, relatives      Independent                    No
## 2213     Travel agent, tour operator     Package Tour                   Yes
## 2214 Newspaper, magazines, brochures      Independent                    No
## 2215     Travel agent, tour operator     Package Tour                   Yes
## 2216              Friends, relatives     Package Tour                   Yes
## 2217                          Others     Package Tour                    No
## 2218              Friends, relatives      Independent                    No
## 2219              Friends, relatives     Package Tour                   Yes
## 2220     Travel agent, tour operator     Package Tour                    No
## 2221     Travel agent, tour operator     Package Tour                   Yes
## 2222              Friends, relatives      Independent                    No
## 2223                  Radio, TV, Web     Package Tour                    No
## 2224     Travel agent, tour operator     Package Tour                   Yes
## 2225              Friends, relatives      Independent                    No
## 2226              Friends, relatives      Independent                    No
## 2227     Travel agent, tour operator      Independent                    No
## 2228              Friends, relatives     Package Tour                    No
## 2229              Friends, relatives     Package Tour                   Yes
## 2230              Friends, relatives      Independent                    No
## 2232              Friends, relatives      Independent                    No
## 2233 Newspaper, magazines, brochures      Independent                    No
## 2234 Newspaper, magazines, brochures      Independent                    No
## 2235              Friends, relatives      Independent                    No
## 2236     Travel agent, tour operator      Independent                    No
## 2237              Friends, relatives      Independent                    No
## 2239              Friends, relatives      Independent                    No
## 2240     Travel agent, tour operator     Package Tour                    No
## 2241              Friends, relatives      Independent                    No
## 2242     Travel agent, tour operator     Package Tour                   Yes
## 2243              Friends, relatives      Independent                    No
## 2244     Travel agent, tour operator     Package Tour                    No
## 2245                          Others      Independent                    No
## 2246     Travel agent, tour operator     Package Tour                   Yes
## 2247              Friends, relatives      Independent                    No
## 2248     Travel agent, tour operator      Independent                    No
## 2249 Newspaper, magazines, brochures     Package Tour                   Yes
## 2250                  Radio, TV, Web     Package Tour                    No
## 2252              Friends, relatives      Independent                    No
## 2253              Friends, relatives      Independent                    No
## 2254              Friends, relatives      Independent                    No
## 2255                  Radio, TV, Web      Independent                    No
## 2256     Travel agent, tour operator     Package Tour                   Yes
## 2257              Friends, relatives      Independent                    No
## 2258     Travel agent, tour operator     Package Tour                   Yes
## 2260              Friends, relatives     Package Tour                   Yes
## 2261     Travel agent, tour operator      Independent                    No
## 2262                          Others      Independent                    No
## 2263     Travel agent, tour operator     Package Tour                    No
## 2264              Friends, relatives     Package Tour                   Yes
## 2265                          Others      Independent                    No
## 2266              Friends, relatives      Independent                    No
## 2267     Travel agent, tour operator     Package Tour                    No
## 2268 Newspaper, magazines, brochures     Package Tour                    No
## 2269     Travel agent, tour operator     Package Tour                    No
## 2270     Travel agent, tour operator      Independent                    No
## 2271 Newspaper, magazines, brochures     Package Tour                   Yes
## 2272                          Others     Package Tour                   Yes
## 2273     Travel agent, tour operator     Package Tour                   Yes
## 2274     Travel agent, tour operator     Package Tour                    No
## 2275     Travel agent, tour operator     Package Tour                   Yes
## 2276                          Others     Package Tour                   Yes
## 2277              Friends, relatives      Independent                    No
## 2278              Friends, relatives      Independent                    No
## 2279              Friends, relatives      Independent                    No
## 2280     Travel agent, tour operator      Independent                    No
## 2281     Travel agent, tour operator     Package Tour                   Yes
## 2282     Travel agent, tour operator      Independent                    No
## 2283     Travel agent, tour operator     Package Tour                   Yes
## 2284              Friends, relatives      Independent                    No
## 2285 Newspaper, magazines, brochures      Independent                    No
## 2286     Travel agent, tour operator     Package Tour                   Yes
## 2287              Friends, relatives      Independent                    No
## 2288              Friends, relatives      Independent                    No
## 2289              Friends, relatives      Independent                    No
## 2290 Newspaper, magazines, brochures      Independent                    No
## 2291              Friends, relatives      Independent                    No
## 2292     Travel agent, tour operator     Package Tour                   Yes
## 2293     Travel agent, tour operator     Package Tour                   Yes
## 2294                          Others      Independent                    No
## 2295     Travel agent, tour operator      Independent                    No
## 2297              Friends, relatives     Package Tour                   Yes
## 2298 Newspaper, magazines, brochures     Package Tour                    No
## 2299                      Trade fair      Independent                    No
## 2300     Travel agent, tour operator     Package Tour                    No
## 2301     Travel agent, tour operator     Package Tour                   Yes
## 2302     Travel agent, tour operator     Package Tour                   Yes
## 2303     Travel agent, tour operator      Independent                    No
## 2304              Friends, relatives      Independent                    No
## 2305     Travel agent, tour operator     Package Tour                   Yes
## 2306     Travel agent, tour operator     Package Tour                    No
## 2307     Travel agent, tour operator     Package Tour                   Yes
## 2308     Travel agent, tour operator     Package Tour                   Yes
## 2309                  Radio, TV, Web     Package Tour                    No
## 2310     Travel agent, tour operator     Package Tour                   Yes
## 2311     Travel agent, tour operator     Package Tour                   Yes
## 2312              Friends, relatives      Independent                    No
## 2313     Travel agent, tour operator      Independent                    No
## 2314 Newspaper, magazines, brochures     Package Tour                   Yes
## 2315              Friends, relatives      Independent                    No
## 2316     Travel agent, tour operator     Package Tour                    No
## 2317              Inflight magazines     Package Tour                    No
## 2318                  Radio, TV, Web     Package Tour                    No
## 2319     Travel agent, tour operator     Package Tour                   Yes
## 2321     Travel agent, tour operator      Independent                    No
## 2322                      Trade fair     Package Tour                   Yes
## 2323     Travel agent, tour operator     Package Tour                    No
## 2324 Newspaper, magazines, brochures      Independent                    No
## 2325              Friends, relatives      Independent                    No
## 2326     Travel agent, tour operator     Package Tour                   Yes
## 2327     Travel agent, tour operator     Package Tour                   Yes
## 2328     Travel agent, tour operator     Package Tour                    No
## 2329                          Others      Independent                    No
## 2330     Travel agent, tour operator     Package Tour                   Yes
## 2331 Newspaper, magazines, brochures      Independent                    No
## 2332                  Radio, TV, Web     Package Tour                   Yes
## 2333     Travel agent, tour operator     Package Tour                   Yes
## 2334              Friends, relatives      Independent                    No
## 2336     Travel agent, tour operator     Package Tour                    No
## 2337     Travel agent, tour operator     Package Tour                   Yes
## 2338     Travel agent, tour operator     Package Tour                   Yes
## 2339                  Radio, TV, Web      Independent                    No
## 2340                  Radio, TV, Web     Package Tour                    No
## 2341     Travel agent, tour operator     Package Tour                   Yes
## 2342                  Radio, TV, Web     Package Tour                    No
## 2343              Friends, relatives     Package Tour                   Yes
## 2344                  Radio, TV, Web      Independent                    No
## 2345                  Radio, TV, Web      Independent                    No
## 2346              Friends, relatives      Independent                    No
## 2347     Travel agent, tour operator     Package Tour                   Yes
## 2348              Friends, relatives     Package Tour                    No
## 2349     Travel agent, tour operator     Package Tour                   Yes
## 2350              Inflight magazines     Package Tour                    No
## 2351              Friends, relatives      Independent                    No
## 2352     Travel agent, tour operator     Package Tour                   Yes
## 2354     Travel agent, tour operator      Independent                    No
## 2355     Travel agent, tour operator     Package Tour                    No
## 2356                          Others      Independent                    No
## 2357              Friends, relatives      Independent                    No
## 2358     Travel agent, tour operator     Package Tour                   Yes
## 2359              Friends, relatives      Independent                    No
## 2360     Travel agent, tour operator     Package Tour                   Yes
## 2361     Travel agent, tour operator      Independent                    No
## 2362     Travel agent, tour operator     Package Tour                    No
## 2363     Travel agent, tour operator     Package Tour                   Yes
## 2364     Travel agent, tour operator      Independent                    No
## 2365     Travel agent, tour operator     Package Tour                    No
## 2366     Travel agent, tour operator     Package Tour                   Yes
## 2367                  Radio, TV, Web      Independent                    No
## 2368     Travel agent, tour operator     Package Tour                   Yes
## 2369                  Radio, TV, Web      Independent                    No
## 2370     Travel agent, tour operator     Package Tour                   Yes
## 2371              Friends, relatives      Independent                    No
## 2372     Travel agent, tour operator     Package Tour                   Yes
## 2373              Friends, relatives      Independent                    No
## 2374                          Others     Package Tour                    No
## 2375     Travel agent, tour operator     Package Tour                   Yes
## 2376                          Others      Independent                    No
## 2377     Travel agent, tour operator     Package Tour                   Yes
## 2378     Travel agent, tour operator     Package Tour                   Yes
## 2379                          Others      Independent                    No
## 2380 Newspaper, magazines, brochures     Package Tour                   Yes
## 2381     Travel agent, tour operator     Package Tour                    No
## 2382                          Others      Independent                    No
## 2383         Tanzania Mission Abroad      Independent                    No
## 2384              Friends, relatives      Independent                    No
## 2385              Friends, relatives     Package Tour                   Yes
## 2386     Travel agent, tour operator     Package Tour                   Yes
## 2387 Newspaper, magazines, brochures      Independent                    No
## 2388     Travel agent, tour operator     Package Tour                   Yes
## 2389     Travel agent, tour operator     Package Tour                    No
## 2390     Travel agent, tour operator     Package Tour                    No
## 2391              Friends, relatives      Independent                    No
## 2392     Travel agent, tour operator     Package Tour                   Yes
## 2393     Travel agent, tour operator      Independent                    No
## 2394                          Others      Independent                    No
## 2395     Travel agent, tour operator     Package Tour                   Yes
## 2396                      Trade fair      Independent                    No
## 2397     Travel agent, tour operator     Package Tour                    No
## 2398              Friends, relatives      Independent                    No
## 2399     Travel agent, tour operator     Package Tour                    No
## 2401              Friends, relatives      Independent                    No
## 2402              Friends, relatives      Independent                    No
## 2403                      Trade fair      Independent                    No
## 2404     Travel agent, tour operator     Package Tour                   Yes
## 2405              Friends, relatives      Independent                    No
## 2406     Travel agent, tour operator     Package Tour                   Yes
## 2407              Friends, relatives     Package Tour                   Yes
## 2408                  Radio, TV, Web      Independent                    No
## 2409              Friends, relatives     Package Tour                   Yes
## 2410     Travel agent, tour operator      Independent                    No
## 2411              Friends, relatives      Independent                    No
## 2412              Friends, relatives      Independent                    No
## 2413     Travel agent, tour operator     Package Tour                    No
## 2414     Travel agent, tour operator     Package Tour                   Yes
## 2417              Inflight magazines      Independent                    No
## 2418                          Others      Independent                    No
## 2419 Newspaper, magazines, brochures     Package Tour                   Yes
## 2420     Travel agent, tour operator     Package Tour                    No
## 2421                          Others      Independent                    No
## 2422     Travel agent, tour operator     Package Tour                    No
## 2424              Friends, relatives      Independent                    No
## 2425     Travel agent, tour operator     Package Tour                   Yes
## 2426     Travel agent, tour operator     Package Tour                    No
## 2427     Travel agent, tour operator     Package Tour                   Yes
## 2428              Friends, relatives      Independent                    No
## 2430              Friends, relatives      Independent                    No
## 2431              Friends, relatives      Independent                    No
## 2432              Friends, relatives     Package Tour                    No
## 2433              Friends, relatives      Independent                    No
## 2435                  Radio, TV, Web     Package Tour                   Yes
## 2436     Travel agent, tour operator     Package Tour                    No
## 2437     Travel agent, tour operator      Independent                    No
## 2438     Travel agent, tour operator     Package Tour                   Yes
## 2439     Travel agent, tour operator      Independent                    No
## 2440     Travel agent, tour operator     Package Tour                   Yes
## 2441     Travel agent, tour operator     Package Tour                    No
## 2442              Friends, relatives     Package Tour                    No
## 2443     Travel agent, tour operator     Package Tour                   Yes
## 2444                  Radio, TV, Web      Independent                    No
## 2445              Friends, relatives      Independent                    No
## 2446     Travel agent, tour operator     Package Tour                    No
## 2447              Friends, relatives     Package Tour                    No
## 2448 Newspaper, magazines, brochures      Independent                    No
## 2449                  Radio, TV, Web      Independent                    No
## 2450 Newspaper, magazines, brochures      Independent                    No
## 2451                      Trade fair      Independent                    No
## 2452     Travel agent, tour operator     Package Tour                   Yes
## 2453     Travel agent, tour operator     Package Tour                    No
## 2454     Travel agent, tour operator     Package Tour                   Yes
## 2455              Friends, relatives      Independent                    No
## 2456                  Radio, TV, Web      Independent                    No
## 2457     Travel agent, tour operator     Package Tour                   Yes
## 2458     Travel agent, tour operator      Independent                    No
## 2459              Friends, relatives      Independent                    No
## 2460     Travel agent, tour operator      Independent                    No
## 2461     Travel agent, tour operator     Package Tour                   Yes
## 2462              Friends, relatives      Independent                    No
## 2463                  Radio, TV, Web      Independent                    No
## 2464     Travel agent, tour operator     Package Tour                   Yes
## 2465 Newspaper, magazines, brochures     Package Tour                   Yes
## 2467                          Others      Independent                    No
## 2468     Travel agent, tour operator      Independent                    No
## 2469     Travel agent, tour operator     Package Tour                   Yes
## 2470     Travel agent, tour operator      Independent                    No
## 2471     Travel agent, tour operator      Independent                    No
## 2472     Travel agent, tour operator     Package Tour                   Yes
## 2473     Travel agent, tour operator     Package Tour                   Yes
## 2474     Travel agent, tour operator     Package Tour                   Yes
## 2475     Travel agent, tour operator     Package Tour                   Yes
## 2477              Friends, relatives      Independent                    No
## 2478     Travel agent, tour operator     Package Tour                   Yes
## 2479     Travel agent, tour operator     Package Tour                   Yes
## 2480     Travel agent, tour operator     Package Tour                    No
## 2481              Friends, relatives     Package Tour                   Yes
## 2482     Travel agent, tour operator     Package Tour                   Yes
## 2483              Friends, relatives      Independent                    No
## 2484              Friends, relatives      Independent                    No
## 2485              Friends, relatives     Package Tour                   Yes
## 2486              Friends, relatives      Independent                    No
## 2487              Friends, relatives      Independent                    No
## 2488                  Radio, TV, Web     Package Tour                   Yes
## 2489     Travel agent, tour operator     Package Tour                   Yes
## 2490              Friends, relatives      Independent                    No
## 2491         Tanzania Mission Abroad      Independent                    No
## 2492 Newspaper, magazines, brochures      Independent                    No
## 2493 Newspaper, magazines, brochures     Package Tour                   Yes
## 2494     Travel agent, tour operator      Independent                    No
## 2495     Travel agent, tour operator     Package Tour                   Yes
## 2497     Travel agent, tour operator      Independent                    No
## 2498     Travel agent, tour operator     Package Tour                   Yes
## 2499     Travel agent, tour operator     Package Tour                   Yes
## 2500                      Trade fair      Independent                    No
## 2502         Tanzania Mission Abroad      Independent                    No
## 2503     Travel agent, tour operator     Package Tour                   Yes
## 2504     Travel agent, tour operator     Package Tour                    No
## 2506     Travel agent, tour operator     Package Tour                   Yes
## 2507     Travel agent, tour operator     Package Tour                    No
## 2508     Travel agent, tour operator     Package Tour                   Yes
## 2509                  Radio, TV, Web      Independent                    No
## 2510     Travel agent, tour operator     Package Tour                   Yes
## 2511              Friends, relatives      Independent                    No
## 2512              Friends, relatives      Independent                    No
## 2513     Travel agent, tour operator      Independent                    No
## 2514     Travel agent, tour operator      Independent                    No
## 2515                  Radio, TV, Web      Independent                    No
## 2516              Friends, relatives      Independent                    No
## 2517              Friends, relatives      Independent                    No
## 2518     Travel agent, tour operator     Package Tour                   Yes
## 2519     Travel agent, tour operator     Package Tour                   Yes
## 2520     Travel agent, tour operator     Package Tour                   Yes
## 2521              Friends, relatives      Independent                    No
## 2522     Travel agent, tour operator     Package Tour                   Yes
## 2523              Friends, relatives      Independent                    No
## 2524              Friends, relatives      Independent                    No
## 2525              Friends, relatives      Independent                    No
## 2526     Travel agent, tour operator     Package Tour                   Yes
## 2527     Travel agent, tour operator      Independent                    No
## 2528              Friends, relatives     Package Tour                    No
## 2529     Travel agent, tour operator     Package Tour                   Yes
## 2530                  Radio, TV, Web      Independent                    No
## 2531                  Radio, TV, Web     Package Tour                   Yes
## 2532     Travel agent, tour operator     Package Tour                    No
## 2533              Friends, relatives      Independent                    No
## 2534              Friends, relatives     Package Tour                    No
## 2535                          Others      Independent                    No
## 2536 Newspaper, magazines, brochures     Package Tour                   Yes
## 2537     Travel agent, tour operator     Package Tour                   Yes
## 2538     Travel agent, tour operator     Package Tour                   Yes
## 2539              Friends, relatives      Independent                    No
## 2540              Friends, relatives     Package Tour                    No
## 2541              Friends, relatives      Independent                    No
## 2542                  Radio, TV, Web      Independent                    No
## 2543     Travel agent, tour operator      Independent                    No
## 2544     Travel agent, tour operator     Package Tour                    No
## 2545     Travel agent, tour operator     Package Tour                   Yes
## 2546                          Others      Independent                    No
## 2547 Newspaper, magazines, brochures     Package Tour                    No
## 2548     Travel agent, tour operator     Package Tour                    No
## 2549                  Radio, TV, Web      Independent                    No
## 2550 Newspaper, magazines, brochures      Independent                    No
## 2551     Travel agent, tour operator      Independent                    No
## 2552              Friends, relatives      Independent                    No
## 2553     Travel agent, tour operator      Independent                    No
## 2554 Newspaper, magazines, brochures     Package Tour                   Yes
## 2555              Friends, relatives      Independent                    No
## 2556              Friends, relatives      Independent                    No
## 2557     Travel agent, tour operator     Package Tour                   Yes
## 2558     Travel agent, tour operator     Package Tour                   Yes
## 2559              Friends, relatives      Independent                    No
## 2560              Friends, relatives     Package Tour                    No
## 2561     Travel agent, tour operator      Independent                    No
## 2562              Friends, relatives      Independent                    No
## 2563                          Others     Package Tour                   Yes
## 2564     Travel agent, tour operator     Package Tour                   Yes
## 2566              Friends, relatives      Independent                    No
## 2567     Travel agent, tour operator     Package Tour                   Yes
## 2568     Travel agent, tour operator     Package Tour                   Yes
## 2569     Travel agent, tour operator      Independent                    No
## 2570              Friends, relatives      Independent                    No
## 2571                          Others      Independent                    No
## 2572              Friends, relatives      Independent                    No
## 2573     Travel agent, tour operator     Package Tour                   Yes
## 2574     Travel agent, tour operator      Independent                    No
## 2576     Travel agent, tour operator     Package Tour                   Yes
## 2577              Friends, relatives      Independent                    No
## 2578              Friends, relatives      Independent                    No
## 2579                      Trade fair      Independent                    No
## 2580                          Others     Package Tour                   Yes
## 2581     Travel agent, tour operator     Package Tour                    No
## 2582     Travel agent, tour operator      Independent                    No
## 2583              Friends, relatives      Independent                    No
## 2584              Friends, relatives      Independent                    No
## 2585         Tanzania Mission Abroad     Package Tour                   Yes
## 2586     Travel agent, tour operator     Package Tour                   Yes
## 2587     Travel agent, tour operator     Package Tour                    No
## 2588     Travel agent, tour operator     Package Tour                   Yes
## 2589                      Trade fair      Independent                    No
## 2590              Friends, relatives      Independent                    No
## 2591              Friends, relatives      Independent                    No
## 2592     Travel agent, tour operator     Package Tour                   Yes
## 2593     Travel agent, tour operator     Package Tour                   Yes
## 2594     Travel agent, tour operator     Package Tour                   Yes
## 2595     Travel agent, tour operator     Package Tour                    No
## 2596              Inflight magazines      Independent                    No
## 2597                          Others     Package Tour                    No
## 2598              Friends, relatives      Independent                    No
## 2599 Newspaper, magazines, brochures      Independent                    No
## 2600     Travel agent, tour operator     Package Tour                    No
## 2601     Travel agent, tour operator     Package Tour                    No
## 2602                  Radio, TV, Web      Independent                    No
## 2603     Travel agent, tour operator      Independent                    No
## 2604 Newspaper, magazines, brochures      Independent                    No
## 2605 Newspaper, magazines, brochures      Independent                    No
## 2606     Travel agent, tour operator     Package Tour                    No
## 2607 Newspaper, magazines, brochures     Package Tour                   Yes
## 2609              Friends, relatives      Independent                    No
## 2610              Friends, relatives     Package Tour                    No
## 2611                      Trade fair      Independent                    No
## 2612              Friends, relatives     Package Tour                    No
## 2613              Friends, relatives     Package Tour                   Yes
## 2614              Friends, relatives     Package Tour                   Yes
## 2615     Travel agent, tour operator     Package Tour                   Yes
## 2616              Friends, relatives     Package Tour                   Yes
## 2617                  Radio, TV, Web      Independent                    No
## 2618                  Radio, TV, Web      Independent                    No
## 2620     Travel agent, tour operator      Independent                    No
## 2621     Travel agent, tour operator      Independent                    No
## 2623     Travel agent, tour operator     Package Tour                   Yes
## 2624     Travel agent, tour operator     Package Tour                   Yes
## 2625              Friends, relatives      Independent                    No
## 2626              Friends, relatives      Independent                    No
## 2627              Friends, relatives      Independent                    No
## 2628     Travel agent, tour operator     Package Tour                    No
## 2629     Travel agent, tour operator     Package Tour                   Yes
## 2630     Travel agent, tour operator     Package Tour                    No
## 2631     Travel agent, tour operator     Package Tour                   Yes
## 2632                      Trade fair      Independent                    No
## 2633     Travel agent, tour operator     Package Tour                   Yes
## 2635 Newspaper, magazines, brochures      Independent                    No
## 2636                  Radio, TV, Web     Package Tour                    No
## 2637              Friends, relatives      Independent                    No
## 2638     Travel agent, tour operator     Package Tour                   Yes
## 2639                          Others      Independent                    No
## 2640     Travel agent, tour operator     Package Tour                   Yes
## 2641     Travel agent, tour operator     Package Tour                   Yes
## 2642     Travel agent, tour operator     Package Tour                   Yes
## 2643              Friends, relatives      Independent                    No
## 2645              Friends, relatives      Independent                    No
## 2646              Friends, relatives     Package Tour                   Yes
## 2647              Friends, relatives      Independent                    No
## 2648              Friends, relatives      Independent                    No
## 2649                  Radio, TV, Web      Independent                    No
## 2650     Travel agent, tour operator     Package Tour                    No
## 2651              Friends, relatives     Package Tour                   Yes
## 2652     Travel agent, tour operator     Package Tour                   Yes
## 2653     Travel agent, tour operator     Package Tour                   Yes
## 2654     Travel agent, tour operator     Package Tour                    No
## 2655                          Others      Independent                    No
## 2656     Travel agent, tour operator     Package Tour                   Yes
## 2657                          Others     Package Tour                    No
## 2658     Travel agent, tour operator     Package Tour                   Yes
## 2659     Travel agent, tour operator     Package Tour                   Yes
## 2660              Friends, relatives      Independent                    No
## 2661              Friends, relatives      Independent                    No
## 2662              Friends, relatives      Independent                    No
## 2663              Friends, relatives      Independent                    No
## 2664         Tanzania Mission Abroad      Independent                    No
## 2665                  Radio, TV, Web     Package Tour                   Yes
## 2666     Travel agent, tour operator     Package Tour                    No
## 2667              Friends, relatives      Independent                    No
## 2668              Friends, relatives      Independent                    No
## 2669 Newspaper, magazines, brochures      Independent                    No
## 2671                  Radio, TV, Web      Independent                    No
## 2672     Travel agent, tour operator      Independent                    No
## 2674                  Radio, TV, Web      Independent                    No
## 2675 Newspaper, magazines, brochures     Package Tour                    No
## 2676              Friends, relatives      Independent                    No
## 2677                          Others      Independent                    No
## 2678              Friends, relatives     Package Tour                   Yes
## 2679     Travel agent, tour operator     Package Tour                    No
## 2680     Travel agent, tour operator     Package Tour                   Yes
## 2681     Travel agent, tour operator      Independent                    No
## 2682     Travel agent, tour operator      Independent                    No
## 2683              Friends, relatives      Independent                    No
## 2684              Friends, relatives      Independent                    No
## 2685     Travel agent, tour operator     Package Tour                   Yes
## 2686                          Others     Package Tour                   Yes
## 2687 Newspaper, magazines, brochures      Independent                    No
## 2688              Friends, relatives      Independent                    No
## 2689     Travel agent, tour operator     Package Tour                   Yes
## 2690 Newspaper, magazines, brochures     Package Tour                   Yes
## 2691     Travel agent, tour operator     Package Tour                    No
## 2692     Travel agent, tour operator     Package Tour                    No
## 2693     Travel agent, tour operator     Package Tour                   Yes
## 2694              Friends, relatives      Independent                    No
## 2695                      Trade fair      Independent                    No
## 2696     Travel agent, tour operator     Package Tour                   Yes
## 2697              Friends, relatives     Package Tour                    No
## 2698              Friends, relatives      Independent                    No
## 2699              Friends, relatives      Independent                    No
## 2700     Travel agent, tour operator     Package Tour                   Yes
## 2701              Friends, relatives      Independent                    No
## 2702                          Others      Independent                    No
## 2703              Friends, relatives      Independent                    No
## 2704     Travel agent, tour operator     Package Tour                   Yes
## 2705              Friends, relatives      Independent                    No
## 2706     Travel agent, tour operator     Package Tour                   Yes
## 2707              Friends, relatives     Package Tour                    No
## 2708              Friends, relatives     Package Tour                   Yes
## 2709     Travel agent, tour operator     Package Tour                   Yes
## 2711              Friends, relatives      Independent                    No
## 2712              Friends, relatives      Independent                    No
## 2713     Travel agent, tour operator     Package Tour                   Yes
## 2714     Travel agent, tour operator     Package Tour                   Yes
## 2715                      Trade fair      Independent                    No
## 2716              Friends, relatives      Independent                    No
## 2717     Travel agent, tour operator     Package Tour                   Yes
## 2718     Travel agent, tour operator     Package Tour                    No
## 2719     Travel agent, tour operator      Independent                    No
## 2720                          Others      Independent                    No
## 2721              Friends, relatives      Independent                    No
## 2723 Newspaper, magazines, brochures      Independent                    No
## 2724              Friends, relatives      Independent                    No
## 2725     Travel agent, tour operator     Package Tour                   Yes
## 2726     Travel agent, tour operator     Package Tour                   Yes
## 2727     Travel agent, tour operator     Package Tour                    No
## 2728                  Radio, TV, Web     Package Tour                    No
## 2729     Travel agent, tour operator     Package Tour                   Yes
## 2730 Newspaper, magazines, brochures      Independent                    No
## 2731     Travel agent, tour operator     Package Tour                    No
## 2732     Travel agent, tour operator     Package Tour                   Yes
## 2733              Friends, relatives      Independent                    No
## 2734                  Radio, TV, Web     Package Tour                   Yes
## 2735              Friends, relatives      Independent                    No
## 2737              Friends, relatives     Package Tour                   Yes
## 2738     Travel agent, tour operator     Package Tour                   Yes
## 2739     Travel agent, tour operator     Package Tour                   Yes
## 2741              Friends, relatives     Package Tour                    No
## 2742              Friends, relatives      Independent                    No
## 2743     Travel agent, tour operator      Independent                    No
## 2744     Travel agent, tour operator     Package Tour                   Yes
## 2745     Travel agent, tour operator     Package Tour                    No
## 2746              Friends, relatives      Independent                    No
## 2748     Travel agent, tour operator     Package Tour                   Yes
## 2749                  Radio, TV, Web     Package Tour                   Yes
## 2750     Travel agent, tour operator      Independent                    No
## 2751 Newspaper, magazines, brochures      Independent                    No
## 2752     Travel agent, tour operator     Package Tour                   Yes
## 2753                  Radio, TV, Web      Independent                    No
## 2754              Friends, relatives     Package Tour                   Yes
## 2755     Travel agent, tour operator     Package Tour                    No
## 2757                          Others     Package Tour                    No
## 2758     Travel agent, tour operator     Package Tour                   Yes
## 2759     Travel agent, tour operator      Independent                    No
## 2760              Friends, relatives      Independent                    No
## 2761 Newspaper, magazines, brochures     Package Tour                    No
## 2762              Friends, relatives      Independent                    No
## 2763              Friends, relatives      Independent                    No
## 2764     Travel agent, tour operator     Package Tour                    No
## 2765              Friends, relatives      Independent                    No
## 2766                  Radio, TV, Web     Package Tour                   Yes
## 2767              Friends, relatives     Package Tour                   Yes
## 2768     Travel agent, tour operator     Package Tour                    No
## 2769     Travel agent, tour operator     Package Tour                    No
## 2770     Travel agent, tour operator     Package Tour                    No
## 2771     Travel agent, tour operator     Package Tour                   Yes
## 2772              Friends, relatives      Independent                    No
## 2773              Friends, relatives      Independent                    No
## 2774              Inflight magazines      Independent                    No
## 2775     Travel agent, tour operator     Package Tour                   Yes
## 2776              Friends, relatives      Independent                    No
## 2778     Travel agent, tour operator     Package Tour                   Yes
## 2779     Travel agent, tour operator     Package Tour                   Yes
## 2780     Travel agent, tour operator     Package Tour                   Yes
## 2781                  Radio, TV, Web      Independent                    No
## 2782              Friends, relatives     Package Tour                   Yes
## 2783              Friends, relatives      Independent                    No
## 2784 Newspaper, magazines, brochures      Independent                    No
## 2785     Travel agent, tour operator     Package Tour                    No
## 2787                          Others     Package Tour                    No
## 2788              Friends, relatives     Package Tour                    No
## 2789              Friends, relatives      Independent                    No
## 2790     Travel agent, tour operator      Independent                    No
## 2791              Friends, relatives      Independent                    No
## 2792     Travel agent, tour operator     Package Tour                    No
## 2793     Travel agent, tour operator      Independent                    No
## 2794     Travel agent, tour operator     Package Tour                    No
## 2795                      Trade fair     Package Tour                    No
## 2796              Friends, relatives      Independent                    No
## 2797              Friends, relatives     Package Tour                   Yes
## 2798              Friends, relatives      Independent                    No
## 2799              Friends, relatives      Independent                    No
## 2801     Travel agent, tour operator     Package Tour                   Yes
## 2802                  Radio, TV, Web      Independent                    No
## 2803                  Radio, TV, Web     Package Tour                    No
## 2804     Travel agent, tour operator     Package Tour                   Yes
## 2805 Newspaper, magazines, brochures      Independent                    No
## 2806              Friends, relatives      Independent                    No
## 2807     Travel agent, tour operator     Package Tour                   Yes
## 2808 Newspaper, magazines, brochures      Independent                    No
## 2809                  Radio, TV, Web     Package Tour                    No
## 2810     Travel agent, tour operator     Package Tour                   Yes
## 2811                  Radio, TV, Web      Independent                    No
## 2812     Travel agent, tour operator      Independent                    No
## 2814              Friends, relatives      Independent                    No
## 2815              Friends, relatives      Independent                    No
## 2816                  Radio, TV, Web     Package Tour                   Yes
## 2817 Newspaper, magazines, brochures      Independent                    No
## 2818 Newspaper, magazines, brochures      Independent                    No
## 2819              Friends, relatives     Package Tour                   Yes
## 2820     Travel agent, tour operator     Package Tour                    No
## 2821                      Trade fair      Independent                    No
## 2822     Travel agent, tour operator     Package Tour                   Yes
## 2823     Travel agent, tour operator     Package Tour                   Yes
## 2825              Friends, relatives      Independent                    No
## 2826              Friends, relatives      Independent                    No
## 2827                  Radio, TV, Web     Package Tour                    No
## 2829                  Radio, TV, Web     Package Tour                    No
## 2830     Travel agent, tour operator     Package Tour                    No
## 2831 Newspaper, magazines, brochures     Package Tour                   Yes
## 2832              Friends, relatives      Independent                    No
## 2834     Travel agent, tour operator      Independent                    No
## 2835     Travel agent, tour operator     Package Tour                   Yes
## 2836                  Radio, TV, Web      Independent                    No
## 2837                          Others      Independent                    No
## 2838     Travel agent, tour operator     Package Tour                    No
## 2839     Travel agent, tour operator     Package Tour                   Yes
## 2840     Travel agent, tour operator     Package Tour                   Yes
## 2841     Travel agent, tour operator     Package Tour                   Yes
## 2842     Travel agent, tour operator     Package Tour                    No
## 2843     Travel agent, tour operator      Independent                    No
## 2844     Travel agent, tour operator     Package Tour                   Yes
## 2845     Travel agent, tour operator     Package Tour                    No
## 2846     Travel agent, tour operator     Package Tour                    No
## 2847     Travel agent, tour operator     Package Tour                    No
## 2848     Travel agent, tour operator     Package Tour                    No
## 2849     Travel agent, tour operator     Package Tour                   Yes
## 2850     Travel agent, tour operator      Independent                    No
## 2851         Tanzania Mission Abroad     Package Tour                   Yes
## 2852              Friends, relatives      Independent                    No
## 2853     Travel agent, tour operator     Package Tour                   Yes
## 2855     Travel agent, tour operator     Package Tour                    No
## 2856              Friends, relatives      Independent                    No
## 2857              Friends, relatives      Independent                    No
## 2858              Friends, relatives      Independent                    No
## 2859              Friends, relatives     Package Tour                   Yes
## 2860              Friends, relatives     Package Tour                    No
## 2861     Travel agent, tour operator     Package Tour                   Yes
## 2862 Newspaper, magazines, brochures      Independent                    No
## 2863              Friends, relatives      Independent                    No
## 2865     Travel agent, tour operator     Package Tour                   Yes
## 2866              Friends, relatives     Package Tour                   Yes
## 2867              Friends, relatives      Independent                    No
## 2869                          Others      Independent                    No
## 2870                          Others      Independent                    No
## 2871     Travel agent, tour operator     Package Tour                    No
## 2872              Friends, relatives      Independent                    No
## 2873 Newspaper, magazines, brochures     Package Tour                   Yes
## 2874              Friends, relatives      Independent                    No
## 2875     Travel agent, tour operator     Package Tour                   Yes
## 2876 Newspaper, magazines, brochures      Independent                    No
## 2877     Travel agent, tour operator      Independent                    No
## 2878                          Others      Independent                    No
## 2879     Travel agent, tour operator     Package Tour                   Yes
## 2880     Travel agent, tour operator     Package Tour                   Yes
## 2881                          Others      Independent                    No
## 2882     Travel agent, tour operator      Independent                    No
## 2883     Travel agent, tour operator     Package Tour                   Yes
## 2884                  Radio, TV, Web     Package Tour                    No
## 2885              Friends, relatives      Independent                    No
## 2886     Travel agent, tour operator     Package Tour                    No
## 2887     Travel agent, tour operator     Package Tour                    No
## 2888     Travel agent, tour operator      Independent                    No
## 2889              Friends, relatives      Independent                    No
## 2890     Travel agent, tour operator     Package Tour                   Yes
## 2891     Travel agent, tour operator     Package Tour                    No
## 2892     Travel agent, tour operator     Package Tour                   Yes
## 2893     Travel agent, tour operator     Package Tour                   Yes
## 2894              Friends, relatives     Package Tour                   Yes
## 2895                          Others      Independent                    No
## 2896                  Radio, TV, Web      Independent                    No
## 2898              Friends, relatives     Package Tour                    No
## 2900     Travel agent, tour operator     Package Tour                    No
## 2901              Friends, relatives      Independent                    No
## 2902     Travel agent, tour operator     Package Tour                   Yes
## 2903     Travel agent, tour operator     Package Tour                   Yes
## 2904                  Radio, TV, Web      Independent                    No
## 2905     Travel agent, tour operator     Package Tour                   Yes
## 2906                  Radio, TV, Web      Independent                    No
## 2907                  Radio, TV, Web     Package Tour                    No
## 2908              Inflight magazines      Independent                    No
## 2909              Friends, relatives      Independent                    No
## 2910     Travel agent, tour operator     Package Tour                    No
## 2911     Travel agent, tour operator     Package Tour                   Yes
## 2912              Friends, relatives      Independent                    No
## 2913              Friends, relatives      Independent                    No
## 2914     Travel agent, tour operator     Package Tour                    No
## 2915                          Others     Package Tour                   Yes
## 2917 Newspaper, magazines, brochures      Independent                    No
## 2918              Friends, relatives      Independent                    No
## 2919                  Radio, TV, Web     Package Tour                   Yes
## 2921     Travel agent, tour operator     Package Tour                   Yes
## 2922                      Trade fair      Independent                    No
## 2923     Travel agent, tour operator     Package Tour                   Yes
## 2924              Friends, relatives      Independent                    No
## 2925                  Radio, TV, Web      Independent                    No
## 2926                          Others      Independent                    No
## 2927              Friends, relatives     Package Tour                   Yes
## 2928     Travel agent, tour operator     Package Tour                    No
## 2929                  Radio, TV, Web      Independent                    No
## 2930     Travel agent, tour operator     Package Tour                    No
## 2932     Travel agent, tour operator     Package Tour                    No
## 2934              Friends, relatives      Independent                    No
## 2935     Travel agent, tour operator     Package Tour                   Yes
## 2936     Travel agent, tour operator     Package Tour                   Yes
## 2937                  Radio, TV, Web      Independent                    No
## 2938                  Radio, TV, Web      Independent                    No
## 2939     Travel agent, tour operator     Package Tour                    No
## 2940              Friends, relatives      Independent                    No
## 2941     Travel agent, tour operator     Package Tour                   Yes
## 2942     Travel agent, tour operator     Package Tour                    No
## 2943     Travel agent, tour operator     Package Tour                   Yes
## 2944     Travel agent, tour operator     Package Tour                   Yes
## 2945                  Radio, TV, Web     Package Tour                   Yes
## 2946     Travel agent, tour operator     Package Tour                   Yes
## 2947     Travel agent, tour operator     Package Tour                    No
## 2948     Travel agent, tour operator     Package Tour                    No
## 2949              Friends, relatives      Independent                    No
## 2950              Friends, relatives      Independent                    No
## 2951     Travel agent, tour operator     Package Tour                   Yes
## 2952     Travel agent, tour operator     Package Tour                    No
## 2953     Travel agent, tour operator     Package Tour                   Yes
## 2954              Friends, relatives      Independent                    No
## 2955              Friends, relatives      Independent                    No
## 2956     Travel agent, tour operator     Package Tour                   Yes
## 2957              Friends, relatives     Package Tour                   Yes
## 2958                          Others      Independent                    No
## 2959     Travel agent, tour operator     Package Tour                   Yes
## 2960 Newspaper, magazines, brochures      Independent                    No
## 2961                  Radio, TV, Web      Independent                    No
## 2962                  Radio, TV, Web      Independent                    No
## 2963     Travel agent, tour operator     Package Tour                   Yes
## 2964                      Trade fair      Independent                    No
## 2965     Travel agent, tour operator     Package Tour                   Yes
## 2966     Travel agent, tour operator      Independent                    No
## 2967     Travel agent, tour operator      Independent                    No
## 2968     Travel agent, tour operator     Package Tour                   Yes
## 2969              Friends, relatives      Independent                    No
## 2971     Travel agent, tour operator     Package Tour                    No
## 2972              Friends, relatives      Independent                    No
## 2973                      Trade fair      Independent                    No
## 2974 Newspaper, magazines, brochures     Package Tour                    No
## 2975     Travel agent, tour operator      Independent                    No
## 2976                      Trade fair      Independent                    No
## 2977              Inflight magazines      Independent                    No
## 2978     Travel agent, tour operator     Package Tour                   Yes
## 2979              Friends, relatives      Independent                    No
## 2980              Friends, relatives      Independent                    No
## 2981              Friends, relatives      Independent                    No
## 2982              Friends, relatives      Independent                    No
## 2983              Friends, relatives      Independent                    No
## 2984              Friends, relatives      Independent                    No
## 2985         Tanzania Mission Abroad      Independent                    No
## 2986     Travel agent, tour operator      Independent                    No
## 2987     Travel agent, tour operator     Package Tour                   Yes
## 2988              Friends, relatives      Independent                    No
## 2989     Travel agent, tour operator     Package Tour                    No
## 2990              Friends, relatives      Independent                    No
## 2991         Tanzania Mission Abroad      Independent                    No
## 2993                          Others     Package Tour                    No
## 2994     Travel agent, tour operator     Package Tour                   Yes
## 2995     Travel agent, tour operator     Package Tour                    No
## 2996                          Others      Independent                    No
## 2997     Travel agent, tour operator     Package Tour                   Yes
## 2998              Friends, relatives      Independent                    No
## 2999     Travel agent, tour operator     Package Tour                   Yes
## 3000 Newspaper, magazines, brochures     Package Tour                   Yes
## 3001                          Others      Independent                    No
## 3002     Travel agent, tour operator      Independent                    No
## 3003     Travel agent, tour operator     Package Tour                    No
## 3004 Newspaper, magazines, brochures     Package Tour                    No
## 3005     Travel agent, tour operator     Package Tour                    No
## 3006              Friends, relatives      Independent                    No
## 3007              Friends, relatives      Independent                    No
## 3008     Travel agent, tour operator     Package Tour                   Yes
## 3010              Friends, relatives      Independent                    No
## 3011     Travel agent, tour operator     Package Tour                    No
## 3012              Friends, relatives     Package Tour                    No
## 3013     Travel agent, tour operator     Package Tour                    No
## 3014     Travel agent, tour operator     Package Tour                   Yes
## 3015     Travel agent, tour operator     Package Tour                   Yes
## 3016     Travel agent, tour operator      Independent                    No
## 3017                          Others      Independent                    No
## 3018                  Radio, TV, Web     Package Tour                    No
## 3019     Travel agent, tour operator     Package Tour                   Yes
## 3020     Travel agent, tour operator     Package Tour                    No
## 3021              Friends, relatives      Independent                    No
## 3022     Travel agent, tour operator      Independent                    No
## 3023 Newspaper, magazines, brochures      Independent                    No
## 3024              Friends, relatives      Independent                    No
## 3025                  Radio, TV, Web     Package Tour                    No
## 3026              Friends, relatives      Independent                    No
## 3027                      Trade fair      Independent                    No
## 3028              Friends, relatives      Independent                    No
## 3029              Friends, relatives     Package Tour                    No
## 3030     Travel agent, tour operator     Package Tour                    No
## 3031     Travel agent, tour operator     Package Tour                   Yes
## 3032              Friends, relatives      Independent                    No
## 3033              Friends, relatives      Independent                    No
## 3034     Travel agent, tour operator     Package Tour                   Yes
## 3035     Travel agent, tour operator     Package Tour                    No
## 3036              Friends, relatives     Package Tour                   Yes
## 3037                  Radio, TV, Web      Independent                    No
## 3038 Newspaper, magazines, brochures      Independent                    No
## 3040 Newspaper, magazines, brochures      Independent                    No
## 3041         Tanzania Mission Abroad      Independent                    No
## 3042     Travel agent, tour operator     Package Tour                   Yes
## 3043     Travel agent, tour operator     Package Tour                    No
## 3044              Friends, relatives      Independent                    No
## 3045     Travel agent, tour operator     Package Tour                   Yes
## 3046              Friends, relatives      Independent                    No
## 3047                          Others      Independent                    No
## 3048              Friends, relatives      Independent                    No
## 3049     Travel agent, tour operator     Package Tour                   Yes
## 3050                  Radio, TV, Web      Independent                    No
## 3051     Travel agent, tour operator     Package Tour                    No
## 3052                  Radio, TV, Web     Package Tour                   Yes
## 3054     Travel agent, tour operator     Package Tour                   Yes
## 3055     Travel agent, tour operator     Package Tour                   Yes
## 3057              Friends, relatives      Independent                    No
## 3058              Friends, relatives      Independent                    No
## 3059     Travel agent, tour operator     Package Tour                   Yes
## 3060     Travel agent, tour operator     Package Tour                   Yes
## 3061                  Radio, TV, Web      Independent                    No
## 3063     Travel agent, tour operator     Package Tour                   Yes
## 3064     Travel agent, tour operator     Package Tour                   Yes
## 3065     Travel agent, tour operator     Package Tour                   Yes
## 3066                          Others      Independent                    No
## 3067              Friends, relatives      Independent                    No
## 3068                  Radio, TV, Web     Package Tour                   Yes
## 3069     Travel agent, tour operator     Package Tour                   Yes
## 3070                  Radio, TV, Web      Independent                    No
## 3071                          Others      Independent                    No
## 3072     Travel agent, tour operator     Package Tour                   Yes
## 3073     Travel agent, tour operator     Package Tour                   Yes
## 3075     Travel agent, tour operator     Package Tour                   Yes
## 3076     Travel agent, tour operator     Package Tour                   Yes
## 3078              Friends, relatives      Independent                    No
## 3079     Travel agent, tour operator     Package Tour                    No
## 3080     Travel agent, tour operator     Package Tour                   Yes
## 3081                          Others      Independent                    No
## 3082              Friends, relatives      Independent                    No
## 3083     Travel agent, tour operator     Package Tour                   Yes
## 3084                          Others     Package Tour                   Yes
## 3085     Travel agent, tour operator     Package Tour                    No
## 3086     Travel agent, tour operator     Package Tour                   Yes
## 3087     Travel agent, tour operator     Package Tour                    No
## 3088 Newspaper, magazines, brochures      Independent                    No
## 3089 Newspaper, magazines, brochures      Independent                    No
## 3090              Friends, relatives      Independent                    No
## 3091     Travel agent, tour operator     Package Tour                    No
## 3092              Friends, relatives      Independent                    No
## 3093     Travel agent, tour operator     Package Tour                   Yes
## 3094     Travel agent, tour operator     Package Tour                   Yes
## 3095              Friends, relatives      Independent                    No
## 3096              Friends, relatives     Package Tour                    No
## 3097                          Others      Independent                    No
## 3098                  Radio, TV, Web      Independent                    No
## 3099     Travel agent, tour operator     Package Tour                    No
## 3100     Travel agent, tour operator     Package Tour                    No
## 3101     Travel agent, tour operator     Package Tour                    No
## 3102                  Radio, TV, Web      Independent                    No
## 3103     Travel agent, tour operator      Independent                    No
## 3104              Friends, relatives      Independent                    No
## 3105              Friends, relatives      Independent                    No
## 3107              Friends, relatives     Package Tour                    No
## 3108 Newspaper, magazines, brochures      Independent                    No
## 3109                          Others     Package Tour                    No
## 3110              Friends, relatives      Independent                    No
## 3111     Travel agent, tour operator     Package Tour                   Yes
## 3112                          Others     Package Tour                    No
## 3113              Friends, relatives      Independent                    No
## 3114     Travel agent, tour operator      Independent                    No
## 3115                  Radio, TV, Web      Independent                    No
## 3116                          Others      Independent                    No
## 3117              Friends, relatives      Independent                    No
## 3118     Travel agent, tour operator     Package Tour                   Yes
## 3119              Friends, relatives      Independent                    No
## 3120              Friends, relatives      Independent                    No
## 3121 Newspaper, magazines, brochures      Independent                    No
## 3122                      Trade fair      Independent                    No
## 3123              Friends, relatives      Independent                    No
## 3124     Travel agent, tour operator      Independent                    No
## 3126     Travel agent, tour operator     Package Tour                   Yes
## 3127              Friends, relatives      Independent                    No
## 3128     Travel agent, tour operator     Package Tour                   Yes
## 3129     Travel agent, tour operator     Package Tour                    No
## 3130                          Others     Package Tour                   Yes
## 3131     Travel agent, tour operator     Package Tour                    No
## 3132              Friends, relatives      Independent                    No
## 3133              Friends, relatives      Independent                    No
## 3134              Friends, relatives      Independent                    No
## 3135              Friends, relatives      Independent                    No
## 3136 Newspaper, magazines, brochures      Independent                    No
## 3137     Travel agent, tour operator     Package Tour                   Yes
## 3138     Travel agent, tour operator     Package Tour                    No
## 3139              Friends, relatives      Independent                    No
## 3140              Friends, relatives      Independent                    No
## 3141     Travel agent, tour operator     Package Tour                    No
## 3142              Friends, relatives      Independent                    No
## 3143     Travel agent, tour operator     Package Tour                    No
## 3144     Travel agent, tour operator      Independent                    No
## 3145     Travel agent, tour operator     Package Tour                   Yes
## 3146              Friends, relatives      Independent                    No
## 3148     Travel agent, tour operator     Package Tour                   Yes
## 3149     Travel agent, tour operator      Independent                    No
## 3150     Travel agent, tour operator     Package Tour                   Yes
## 3151              Friends, relatives      Independent                    No
## 3152              Friends, relatives      Independent                    No
## 3153     Travel agent, tour operator     Package Tour                   Yes
## 3154              Friends, relatives     Package Tour                   Yes
## 3155     Travel agent, tour operator     Package Tour                   Yes
## 3156     Travel agent, tour operator      Independent                    No
## 3157                      Trade fair      Independent                    No
## 3161              Friends, relatives      Independent                    No
## 3162              Friends, relatives      Independent                    No
## 3163 Newspaper, magazines, brochures     Package Tour                   Yes
## 3164              Friends, relatives      Independent                    No
## 3166              Friends, relatives      Independent                    No
## 3168     Travel agent, tour operator     Package Tour                   Yes
## 3169     Travel agent, tour operator      Independent                    No
## 3170                          Others     Package Tour                   Yes
## 3172                  Radio, TV, Web      Independent                    No
## 3173 Newspaper, magazines, brochures      Independent                    No
## 3175                  Radio, TV, Web      Independent                    No
## 3176     Travel agent, tour operator     Package Tour                   Yes
## 3178 Newspaper, magazines, brochures      Independent                    No
## 3179              Friends, relatives      Independent                    No
## 3180              Friends, relatives     Package Tour                   Yes
## 3182              Friends, relatives     Package Tour                   Yes
## 3183              Friends, relatives      Independent                    No
## 3184     Travel agent, tour operator     Package Tour                   Yes
## 3185     Travel agent, tour operator      Independent                    No
## 3186              Friends, relatives     Package Tour                    No
## 3187              Friends, relatives      Independent                    No
## 3188     Travel agent, tour operator     Package Tour                    No
## 3189     Travel agent, tour operator     Package Tour                    No
## 3190              Friends, relatives      Independent                    No
## 3191              Friends, relatives      Independent                    No
## 3192     Travel agent, tour operator     Package Tour                   Yes
## 3193              Friends, relatives     Package Tour                   Yes
## 3194              Friends, relatives      Independent                    No
## 3197     Travel agent, tour operator     Package Tour                   Yes
## 3198         Tanzania Mission Abroad      Independent                    No
## 3199                      Trade fair     Package Tour                   Yes
## 3200              Friends, relatives      Independent                    No
## 3201     Travel agent, tour operator     Package Tour                   Yes
## 3202     Travel agent, tour operator      Independent                    No
## 3203              Friends, relatives      Independent                    No
## 3204              Friends, relatives      Independent                    No
## 3205     Travel agent, tour operator     Package Tour                    No
## 3206 Newspaper, magazines, brochures      Independent                    No
## 3207              Friends, relatives     Package Tour                    No
## 3208     Travel agent, tour operator     Package Tour                   Yes
## 3209     Travel agent, tour operator     Package Tour                   Yes
## 3210     Travel agent, tour operator      Independent                    No
## 3211     Travel agent, tour operator     Package Tour                   Yes
## 3212              Friends, relatives     Package Tour                    No
## 3213 Newspaper, magazines, brochures     Package Tour                   Yes
## 3214     Travel agent, tour operator     Package Tour                   Yes
## 3215     Travel agent, tour operator     Package Tour                   Yes
## 3216     Travel agent, tour operator     Package Tour                   Yes
## 3218                  Radio, TV, Web     Package Tour                    No
## 3219 Newspaper, magazines, brochures     Package Tour                   Yes
## 3220              Friends, relatives      Independent                    No
## 3221                          Others      Independent                    No
## 3222     Travel agent, tour operator     Package Tour                   Yes
## 3223     Travel agent, tour operator      Independent                    No
## 3224              Friends, relatives      Independent                    No
## 3225              Friends, relatives      Independent                    No
## 3226     Travel agent, tour operator     Package Tour                   Yes
## 3227 Newspaper, magazines, brochures      Independent                    No
## 3228              Friends, relatives     Package Tour                   Yes
## 3229     Travel agent, tour operator     Package Tour                   Yes
## 3230              Friends, relatives      Independent                    No
## 3231              Friends, relatives      Independent                    No
## 3232 Newspaper, magazines, brochures     Package Tour                   Yes
## 3234     Travel agent, tour operator     Package Tour                   Yes
## 3235     Travel agent, tour operator     Package Tour                   Yes
## 3236     Travel agent, tour operator      Independent                    No
## 3237              Friends, relatives     Package Tour                   Yes
## 3238              Friends, relatives      Independent                    No
## 3239     Travel agent, tour operator     Package Tour                   Yes
## 3240     Travel agent, tour operator     Package Tour                   Yes
## 3241                          Others     Package Tour                   Yes
## 3242              Friends, relatives      Independent                    No
## 3243     Travel agent, tour operator      Independent                    No
## 3245              Friends, relatives      Independent                    No
## 3246              Friends, relatives     Package Tour                    No
## 3248              Friends, relatives      Independent                    No
## 3249     Travel agent, tour operator     Package Tour                    No
## 3251              Friends, relatives      Independent                    No
## 3252     Travel agent, tour operator     Package Tour                    No
## 3253 Newspaper, magazines, brochures      Independent                    No
## 3254                          Others      Independent                    No
## 3255 Newspaper, magazines, brochures      Independent                    No
## 3256     Travel agent, tour operator     Package Tour                   Yes
## 3258                      Trade fair      Independent                    No
## 3259                  Radio, TV, Web      Independent                    No
## 3260     Travel agent, tour operator     Package Tour                    No
## 3262                  Radio, TV, Web     Package Tour                    No
## 3263              Friends, relatives      Independent                    No
## 3264 Newspaper, magazines, brochures      Independent                    No
## 3265              Friends, relatives      Independent                    No
## 3266     Travel agent, tour operator     Package Tour                   Yes
## 3267              Friends, relatives      Independent                    No
## 3268     Travel agent, tour operator     Package Tour                   Yes
## 3269 Newspaper, magazines, brochures      Independent                    No
## 3270     Travel agent, tour operator     Package Tour                   Yes
## 3271              Friends, relatives      Independent                    No
## 3272     Travel agent, tour operator     Package Tour                   Yes
## 3273              Friends, relatives     Package Tour                   Yes
## 3274                          Others      Independent                    No
## 3275              Friends, relatives      Independent                    No
## 3276              Friends, relatives      Independent                    No
## 3277              Friends, relatives      Independent                    No
## 3278              Inflight magazines      Independent                    No
## 3279     Travel agent, tour operator     Package Tour                    No
## 3280                          Others      Independent                    No
## 3281     Travel agent, tour operator     Package Tour                   Yes
## 3282              Friends, relatives      Independent                    No
## 3283     Travel agent, tour operator     Package Tour                    No
## 3284     Travel agent, tour operator     Package Tour                   Yes
## 3285     Travel agent, tour operator      Independent                    No
## 3287                  Radio, TV, Web     Package Tour                    No
## 3288     Travel agent, tour operator     Package Tour                   Yes
## 3289 Newspaper, magazines, brochures      Independent                    No
## 3290                          Others      Independent                    No
## 3291     Travel agent, tour operator     Package Tour                   Yes
## 3292              Friends, relatives      Independent                    No
## 3293                  Radio, TV, Web     Package Tour                    No
## 3294                          Others      Independent                    No
## 3295     Travel agent, tour operator     Package Tour                   Yes
## 3296                  Radio, TV, Web     Package Tour                    No
## 3297              Friends, relatives      Independent                    No
## 3298         Tanzania Mission Abroad      Independent                    No
## 3299     Travel agent, tour operator     Package Tour                   Yes
## 3300     Travel agent, tour operator     Package Tour                    No
## 3301     Travel agent, tour operator     Package Tour                   Yes
## 3303     Travel agent, tour operator     Package Tour                   Yes
## 3304 Newspaper, magazines, brochures     Package Tour                   Yes
## 3305     Travel agent, tour operator      Independent                    No
## 3306     Travel agent, tour operator     Package Tour                    No
## 3307              Friends, relatives      Independent                    No
## 3308         Tanzania Mission Abroad     Package Tour                    No
## 3309     Travel agent, tour operator      Independent                    No
## 3310              Friends, relatives     Package Tour                    No
## 3311     Travel agent, tour operator     Package Tour                    No
## 3312     Travel agent, tour operator     Package Tour                   Yes
## 3313     Travel agent, tour operator     Package Tour                   Yes
## 3314     Travel agent, tour operator     Package Tour                   Yes
## 3315              Friends, relatives      Independent                    No
## 3316     Travel agent, tour operator     Package Tour                   Yes
## 3317     Travel agent, tour operator     Package Tour                   Yes
## 3318 Newspaper, magazines, brochures     Package Tour                   Yes
## 3320              Friends, relatives      Independent                    No
## 3321     Travel agent, tour operator     Package Tour                   Yes
## 3322     Travel agent, tour operator      Independent                    No
## 3323     Travel agent, tour operator     Package Tour                   Yes
## 3324              Friends, relatives      Independent                    No
## 3325     Travel agent, tour operator     Package Tour                   Yes
## 3326 Newspaper, magazines, brochures      Independent                    No
## 3327         Tanzania Mission Abroad      Independent                    No
## 3328              Friends, relatives      Independent                    No
## 3329     Travel agent, tour operator     Package Tour                    No
## 3330     Travel agent, tour operator     Package Tour                   Yes
## 3331              Friends, relatives     Package Tour                    No
## 3332 Newspaper, magazines, brochures      Independent                    No
## 3333                  Radio, TV, Web     Package Tour                   Yes
## 3334              Friends, relatives      Independent                    No
## 3335     Travel agent, tour operator     Package Tour                    No
## 3336              Friends, relatives      Independent                    No
## 3337     Travel agent, tour operator     Package Tour                   Yes
## 3338 Newspaper, magazines, brochures     Package Tour                    No
## 3339 Newspaper, magazines, brochures      Independent                    No
## 3340 Newspaper, magazines, brochures     Package Tour                   Yes
## 3341                          Others      Independent                    No
## 3342     Travel agent, tour operator     Package Tour                    No
## 3343 Newspaper, magazines, brochures     Package Tour                   Yes
## 3344              Friends, relatives      Independent                    No
## 3345 Newspaper, magazines, brochures      Independent                    No
## 3346     Travel agent, tour operator     Package Tour                   Yes
## 3347                  Radio, TV, Web      Independent                    No
## 3349                      Trade fair      Independent                    No
## 3350     Travel agent, tour operator     Package Tour                   Yes
## 3351              Friends, relatives      Independent                    No
## 3352                          Others      Independent                    No
## 3353 Newspaper, magazines, brochures     Package Tour                   Yes
## 3354                          Others      Independent                    No
## 3355              Friends, relatives     Package Tour                   Yes
## 3356     Travel agent, tour operator      Independent                    No
## 3357     Travel agent, tour operator      Independent                    No
## 3358     Travel agent, tour operator     Package Tour                   Yes
## 3359              Friends, relatives      Independent                    No
## 3360     Travel agent, tour operator      Independent                    No
## 3361     Travel agent, tour operator      Independent                    No
## 3362              Friends, relatives     Package Tour                   Yes
## 3363     Travel agent, tour operator     Package Tour                    No
## 3365              Friends, relatives      Independent                    No
## 3366              Friends, relatives      Independent                    No
## 3367                  Radio, TV, Web      Independent                    No
## 3368     Travel agent, tour operator     Package Tour                    No
## 3369              Friends, relatives      Independent                    No
## 3370     Travel agent, tour operator     Package Tour                   Yes
## 3372 Newspaper, magazines, brochures     Package Tour                   Yes
## 3373              Friends, relatives      Independent                    No
## 3374     Travel agent, tour operator     Package Tour                    No
## 3375     Travel agent, tour operator     Package Tour                   Yes
## 3376     Travel agent, tour operator      Independent                    No
## 3377              Inflight magazines      Independent                    No
## 3378                          Others     Package Tour                   Yes
## 3379              Friends, relatives     Package Tour                   Yes
## 3380                  Radio, TV, Web      Independent                    No
## 3381              Friends, relatives      Independent                    No
## 3382              Friends, relatives      Independent                    No
## 3383     Travel agent, tour operator      Independent                    No
## 3384              Friends, relatives      Independent                    No
## 3385     Travel agent, tour operator      Independent                    No
## 3386                          Others     Package Tour                    No
## 3387 Newspaper, magazines, brochures      Independent                    No
## 3388     Travel agent, tour operator     Package Tour                   Yes
## 3389              Friends, relatives      Independent                    No
## 3390              Friends, relatives      Independent                    No
## 3391     Travel agent, tour operator     Package Tour                    No
## 3392                  Radio, TV, Web     Package Tour                    No
## 3393              Friends, relatives      Independent                    No
## 3394     Travel agent, tour operator     Package Tour                   Yes
## 3395     Travel agent, tour operator     Package Tour                   Yes
## 3396              Friends, relatives     Package Tour                    No
## 3397     Travel agent, tour operator     Package Tour                   Yes
## 3398              Friends, relatives     Package Tour                    No
## 3399                  Radio, TV, Web      Independent                    No
## 3400     Travel agent, tour operator     Package Tour                    No
## 3402     Travel agent, tour operator      Independent                    No
## 3404                          Others      Independent                    No
## 3405              Friends, relatives     Package Tour                    No
## 3406              Friends, relatives      Independent                    No
## 3407     Travel agent, tour operator     Package Tour                    No
## 3408     Travel agent, tour operator      Independent                    No
## 3409                          Others      Independent                    No
## 3410     Travel agent, tour operator     Package Tour                   Yes
## 3411     Travel agent, tour operator     Package Tour                    No
## 3412     Travel agent, tour operator      Independent                    No
## 3413              Friends, relatives      Independent                    No
## 3414 Newspaper, magazines, brochures      Independent                    No
## 3415                  Radio, TV, Web      Independent                    No
## 3416     Travel agent, tour operator     Package Tour                   Yes
## 3417     Travel agent, tour operator     Package Tour                   Yes
## 3418                          Others     Package Tour                    No
## 3419                          Others      Independent                    No
## 3420              Friends, relatives      Independent                    No
## 3421     Travel agent, tour operator     Package Tour                   Yes
## 3422     Travel agent, tour operator      Independent                    No
## 3423                  Radio, TV, Web      Independent                    No
## 3424     Travel agent, tour operator     Package Tour                    No
## 3425     Travel agent, tour operator     Package Tour                   Yes
## 3426              Friends, relatives      Independent                    No
## 3427              Friends, relatives      Independent                    No
## 3428                  Radio, TV, Web      Independent                    No
## 3429              Friends, relatives      Independent                    No
## 3430     Travel agent, tour operator     Package Tour                   Yes
## 3431     Travel agent, tour operator     Package Tour                   Yes
## 3432              Friends, relatives      Independent                    No
## 3433              Friends, relatives      Independent                    No
## 3434     Travel agent, tour operator     Package Tour                   Yes
## 3436     Travel agent, tour operator     Package Tour                   Yes
## 3437     Travel agent, tour operator     Package Tour                   Yes
## 3438     Travel agent, tour operator     Package Tour                   Yes
## 3439     Travel agent, tour operator     Package Tour                   Yes
## 3440     Travel agent, tour operator     Package Tour                   Yes
## 3441     Travel agent, tour operator     Package Tour                   Yes
## 3442     Travel agent, tour operator      Independent                    No
## 3443              Friends, relatives      Independent                    No
## 3444     Travel agent, tour operator     Package Tour                   Yes
## 3445     Travel agent, tour operator     Package Tour                    No
## 3446     Travel agent, tour operator     Package Tour                   Yes
## 3447              Friends, relatives      Independent                    No
## 3448     Travel agent, tour operator     Package Tour                   Yes
## 3449              Friends, relatives      Independent                    No
## 3450     Travel agent, tour operator     Package Tour                   Yes
## 3451 Newspaper, magazines, brochures      Independent                    No
## 3452     Travel agent, tour operator     Package Tour                   Yes
## 3453     Travel agent, tour operator     Package Tour                    No
## 3454              Friends, relatives      Independent                    No
## 3455              Friends, relatives     Package Tour                   Yes
## 3456              Friends, relatives      Independent                    No
## 3457              Friends, relatives     Package Tour                    No
## 3458     Travel agent, tour operator     Package Tour                    No
## 3459     Travel agent, tour operator     Package Tour                   Yes
## 3460     Travel agent, tour operator     Package Tour                    No
## 3461                          Others      Independent                    No
## 3462              Friends, relatives      Independent                    No
## 3463              Friends, relatives     Package Tour                   Yes
## 3464              Inflight magazines      Independent                    No
## 3465     Travel agent, tour operator     Package Tour                   Yes
## 3466                      Trade fair      Independent                    No
## 3467                  Radio, TV, Web     Package Tour                   Yes
## 3468              Friends, relatives      Independent                    No
## 3469              Friends, relatives     Package Tour                    No
## 3470     Travel agent, tour operator     Package Tour                    No
## 3471              Friends, relatives      Independent                    No
## 3472              Friends, relatives      Independent                    No
## 3473              Friends, relatives     Package Tour                    No
## 3474                  Radio, TV, Web      Independent                    No
## 3476     Travel agent, tour operator     Package Tour                    No
## 3477     Travel agent, tour operator      Independent                    No
## 3478              Friends, relatives      Independent                    No
## 3479                          Others      Independent                    No
## 3480              Friends, relatives      Independent                    No
## 3481     Travel agent, tour operator     Package Tour                   Yes
## 3482              Friends, relatives      Independent                    No
## 3484              Friends, relatives      Independent                    No
## 3485              Friends, relatives      Independent                    No
## 3486 Newspaper, magazines, brochures      Independent                    No
## 3487              Friends, relatives      Independent                    No
## 3488                          Others      Independent                    No
## 3489     Travel agent, tour operator     Package Tour                   Yes
## 3490              Friends, relatives      Independent                    No
## 3491                          Others      Independent                    No
## 3492              Friends, relatives      Independent                    No
## 3493     Travel agent, tour operator      Independent                    No
## 3494              Friends, relatives      Independent                    No
## 3495                  Radio, TV, Web      Independent                    No
## 3496     Travel agent, tour operator     Package Tour                   Yes
## 3497                  Radio, TV, Web      Independent                    No
## 3498     Travel agent, tour operator     Package Tour                    No
## 3499              Friends, relatives      Independent                    No
## 3500     Travel agent, tour operator      Independent                   Yes
## 3501              Friends, relatives      Independent                    No
## 3502     Travel agent, tour operator     Package Tour                   Yes
## 3503     Travel agent, tour operator     Package Tour                    No
## 3504              Friends, relatives     Package Tour                    No
## 3505     Travel agent, tour operator     Package Tour                   Yes
## 3506                          Others      Independent                    No
## 3508              Friends, relatives     Package Tour                    No
## 3509     Travel agent, tour operator     Package Tour                    No
## 3510     Travel agent, tour operator     Package Tour                    No
## 3511              Friends, relatives      Independent                    No
## 3512                  Radio, TV, Web      Independent                    No
## 3513 Newspaper, magazines, brochures      Independent                    No
## 3514     Travel agent, tour operator     Package Tour                    No
## 3515     Travel agent, tour operator     Package Tour                   Yes
## 3516         Tanzania Mission Abroad      Independent                    No
## 3517                  Radio, TV, Web      Independent                    No
## 3518                  Radio, TV, Web     Package Tour                   Yes
## 3519     Travel agent, tour operator     Package Tour                    No
## 3520 Newspaper, magazines, brochures      Independent                    No
## 3521              Friends, relatives      Independent                    No
## 3522     Travel agent, tour operator     Package Tour                   Yes
## 3523     Travel agent, tour operator     Package Tour                   Yes
## 3524 Newspaper, magazines, brochures     Package Tour                    No
## 3525     Travel agent, tour operator     Package Tour                    No
## 3526     Travel agent, tour operator      Independent                    No
## 3527 Newspaper, magazines, brochures      Independent                    No
## 3528                          Others      Independent                    No
## 3530     Travel agent, tour operator      Independent                    No
## 3531     Travel agent, tour operator      Independent                    No
## 3532              Friends, relatives      Independent                    No
## 3533              Friends, relatives      Independent                    No
## 3535     Travel agent, tour operator     Package Tour                   Yes
## 3536              Friends, relatives     Package Tour                   Yes
## 3537     Travel agent, tour operator      Independent                    No
## 3538              Inflight magazines      Independent                    No
## 3539     Travel agent, tour operator     Package Tour                    No
## 3540     Travel agent, tour operator     Package Tour                    No
## 3541     Travel agent, tour operator     Package Tour                   Yes
## 3542     Travel agent, tour operator     Package Tour                   Yes
## 3543     Travel agent, tour operator     Package Tour                   Yes
## 3545              Friends, relatives      Independent                    No
## 3546              Friends, relatives      Independent                    No
## 3547     Travel agent, tour operator     Package Tour                   Yes
## 3548     Travel agent, tour operator     Package Tour                   Yes
## 3549     Travel agent, tour operator     Package Tour                   Yes
## 3550                          Others      Independent                    No
## 3551              Friends, relatives      Independent                    No
## 3552              Friends, relatives     Package Tour                   Yes
## 3553     Travel agent, tour operator     Package Tour                   Yes
## 3554     Travel agent, tour operator     Package Tour                   Yes
## 3555     Travel agent, tour operator     Package Tour                   Yes
## 3556              Friends, relatives      Independent                    No
## 3557     Travel agent, tour operator     Package Tour                   Yes
## 3558 Newspaper, magazines, brochures     Package Tour                   Yes
## 3559 Newspaper, magazines, brochures      Independent                    No
## 3560     Travel agent, tour operator      Independent                    No
## 3561     Travel agent, tour operator     Package Tour                   Yes
## 3562              Friends, relatives      Independent                    No
## 3563     Travel agent, tour operator     Package Tour                    No
## 3564     Travel agent, tour operator     Package Tour                   Yes
## 3566     Travel agent, tour operator      Independent                    No
## 3567     Travel agent, tour operator     Package Tour                    No
## 3568                  Radio, TV, Web      Independent                    No
## 3570     Travel agent, tour operator     Package Tour                   Yes
## 3573     Travel agent, tour operator     Package Tour                   Yes
## 3574     Travel agent, tour operator     Package Tour                   Yes
## 3576     Travel agent, tour operator     Package Tour                   Yes
## 3577     Travel agent, tour operator      Independent                    No
## 3578              Friends, relatives      Independent                    No
## 3579 Newspaper, magazines, brochures      Independent                    No
## 3580                  Radio, TV, Web      Independent                    No
## 3581              Friends, relatives      Independent                    No
## 3582     Travel agent, tour operator     Package Tour                   Yes
## 3583     Travel agent, tour operator     Package Tour                    No
## 3584              Friends, relatives     Package Tour                   Yes
## 3585     Travel agent, tour operator     Package Tour                   Yes
## 3586     Travel agent, tour operator      Independent                    No
## 3587     Travel agent, tour operator     Package Tour                   Yes
## 3588                          Others      Independent                    No
## 3589     Travel agent, tour operator     Package Tour                   Yes
## 3591     Travel agent, tour operator     Package Tour                   Yes
## 3592     Travel agent, tour operator      Independent                    No
## 3593                          Others      Independent                    No
## 3594     Travel agent, tour operator     Package Tour                   Yes
## 3595 Newspaper, magazines, brochures      Independent                    No
## 3596     Travel agent, tour operator     Package Tour                   Yes
## 3597              Friends, relatives     Package Tour                   Yes
## 3598     Travel agent, tour operator     Package Tour                    No
## 3599     Travel agent, tour operator     Package Tour                   Yes
## 3600     Travel agent, tour operator     Package Tour                   Yes
## 3601                          Others     Package Tour                    No
## 3602     Travel agent, tour operator     Package Tour                   Yes
## 3603     Travel agent, tour operator     Package Tour                   Yes
## 3605     Travel agent, tour operator     Package Tour                   Yes
## 3606     Travel agent, tour operator     Package Tour                    No
## 3608     Travel agent, tour operator     Package Tour                    No
## 3609     Travel agent, tour operator      Independent                    No
## 3610 Newspaper, magazines, brochures      Independent                    No
## 3611     Travel agent, tour operator     Package Tour                   Yes
## 3612              Friends, relatives      Independent                    No
## 3613     Travel agent, tour operator     Package Tour                    No
## 3614              Friends, relatives      Independent                    No
## 3615     Travel agent, tour operator     Package Tour                    No
## 3616              Friends, relatives     Package Tour                   Yes
## 3617 Newspaper, magazines, brochures     Package Tour                   Yes
## 3618     Travel agent, tour operator     Package Tour                    No
## 3619     Travel agent, tour operator     Package Tour                    No
## 3620              Friends, relatives     Package Tour                   Yes
## 3621              Friends, relatives      Independent                    No
## 3622     Travel agent, tour operator     Package Tour                   Yes
## 3623              Friends, relatives      Independent                    No
## 3624              Friends, relatives      Independent                    No
## 3625     Travel agent, tour operator     Package Tour                   Yes
## 3626     Travel agent, tour operator     Package Tour                   Yes
## 3627                  Radio, TV, Web     Package Tour                   Yes
## 3628                      Trade fair      Independent                    No
## 3629     Travel agent, tour operator      Independent                    No
## 3630              Friends, relatives      Independent                    No
## 3632     Travel agent, tour operator      Independent                    No
## 3633              Friends, relatives      Independent                    No
## 3634 Newspaper, magazines, brochures      Independent                    No
## 3635 Newspaper, magazines, brochures     Package Tour                   Yes
## 3636     Travel agent, tour operator     Package Tour                    No
## 3637              Friends, relatives      Independent                    No
## 3638              Friends, relatives      Independent                    No
## 3639     Travel agent, tour operator     Package Tour                    No
## 3640                  Radio, TV, Web      Independent                    No
## 3641              Friends, relatives     Package Tour                    No
## 3642              Friends, relatives      Independent                    No
## 3643                          Others      Independent                    No
## 3644              Friends, relatives      Independent                    No
## 3645     Travel agent, tour operator     Package Tour                    No
## 3646 Newspaper, magazines, brochures      Independent                    No
## 3647              Friends, relatives     Package Tour                   Yes
## 3648 Newspaper, magazines, brochures      Independent                    No
## 3649 Newspaper, magazines, brochures     Package Tour                   Yes
## 3651     Travel agent, tour operator      Independent                    No
## 3652     Travel agent, tour operator     Package Tour                   Yes
## 3653     Travel agent, tour operator     Package Tour                   Yes
## 3654     Travel agent, tour operator     Package Tour                    No
## 3655     Travel agent, tour operator     Package Tour                   Yes
## 3656     Travel agent, tour operator     Package Tour                   Yes
## 3657              Friends, relatives      Independent                    No
## 3658     Travel agent, tour operator     Package Tour                   Yes
## 3659     Travel agent, tour operator     Package Tour                   Yes
## 3660              Friends, relatives      Independent                    No
## 3661     Travel agent, tour operator     Package Tour                   Yes
## 3662                  Radio, TV, Web      Independent                    No
## 3663              Friends, relatives     Package Tour                   Yes
## 3664              Friends, relatives      Independent                    No
## 3665              Friends, relatives      Independent                    No
## 3666              Friends, relatives     Package Tour                   Yes
## 3667              Friends, relatives     Package Tour                   Yes
## 3668              Friends, relatives      Independent                    No
## 3669     Travel agent, tour operator     Package Tour                   Yes
## 3671     Travel agent, tour operator     Package Tour                   Yes
## 3672     Travel agent, tour operator     Package Tour                   Yes
## 3673     Travel agent, tour operator     Package Tour                   Yes
## 3675                  Radio, TV, Web      Independent                    No
## 3676     Travel agent, tour operator     Package Tour                   Yes
## 3677     Travel agent, tour operator     Package Tour                   Yes
## 3678              Friends, relatives      Independent                    No
## 3679     Travel agent, tour operator     Package Tour                    No
## 3680     Travel agent, tour operator     Package Tour                   Yes
## 3681              Friends, relatives      Independent                    No
## 3682     Travel agent, tour operator     Package Tour                   Yes
## 3683     Travel agent, tour operator     Package Tour                   Yes
## 3684                  Radio, TV, Web      Independent                    No
## 3685                  Radio, TV, Web     Package Tour                   Yes
## 3686              Friends, relatives      Independent                    No
## 3687                  Radio, TV, Web     Package Tour                    No
## 3688              Friends, relatives      Independent                    No
## 3689     Travel agent, tour operator     Package Tour                    No
## 3690              Friends, relatives      Independent                    No
## 3691     Travel agent, tour operator     Package Tour                    No
## 3692     Travel agent, tour operator     Package Tour                   Yes
## 3693     Travel agent, tour operator     Package Tour                   Yes
## 3694     Travel agent, tour operator      Independent                    No
## 3695     Travel agent, tour operator      Independent                    No
## 3696     Travel agent, tour operator     Package Tour                   Yes
## 3697     Travel agent, tour operator     Package Tour                   Yes
## 3698     Travel agent, tour operator     Package Tour                    No
## 3699                  Radio, TV, Web      Independent                    No
## 3700 Newspaper, magazines, brochures     Package Tour                    No
## 3701     Travel agent, tour operator     Package Tour                   Yes
## 3702     Travel agent, tour operator     Package Tour                   Yes
## 3703              Friends, relatives      Independent                    No
## 3704                          Others      Independent                    No
## 3705              Friends, relatives     Package Tour                   Yes
## 3706     Travel agent, tour operator     Package Tour                   Yes
## 3707 Newspaper, magazines, brochures      Independent                    No
## 3708     Travel agent, tour operator     Package Tour                   Yes
## 3709              Friends, relatives      Independent                    No
## 3710     Travel agent, tour operator     Package Tour                   Yes
## 3711     Travel agent, tour operator     Package Tour                   Yes
## 3712              Friends, relatives      Independent                    No
## 3713     Travel agent, tour operator      Independent                    No
## 3714                          Others     Package Tour                    No
## 3715 Newspaper, magazines, brochures      Independent                    No
## 3716     Travel agent, tour operator     Package Tour                    No
## 3717     Travel agent, tour operator     Package Tour                   Yes
## 3718     Travel agent, tour operator      Independent                    No
## 3719     Travel agent, tour operator     Package Tour                   Yes
## 3720                          Others     Package Tour                    No
## 3721              Friends, relatives      Independent                    No
## 3722     Travel agent, tour operator     Package Tour                   Yes
## 3723              Friends, relatives      Independent                    No
## 3724              Friends, relatives      Independent                    No
## 3725     Travel agent, tour operator     Package Tour                   Yes
## 3726     Travel agent, tour operator     Package Tour                   Yes
## 3727                          Others      Independent                    No
## 3728              Friends, relatives     Package Tour                   Yes
## 3729                      Trade fair      Independent                    No
## 3730     Travel agent, tour operator     Package Tour                   Yes
## 3731     Travel agent, tour operator      Independent                    No
## 3732     Travel agent, tour operator      Independent                    No
## 3733     Travel agent, tour operator     Package Tour                   Yes
## 3734              Friends, relatives      Independent                    No
## 3735     Travel agent, tour operator     Package Tour                   Yes
## 3736     Travel agent, tour operator     Package Tour                   Yes
## 3737     Travel agent, tour operator     Package Tour                   Yes
## 3738 Newspaper, magazines, brochures      Independent                    No
## 3739     Travel agent, tour operator     Package Tour                   Yes
## 3740     Travel agent, tour operator      Independent                    No
## 3741              Friends, relatives      Independent                    No
## 3742     Travel agent, tour operator     Package Tour                   Yes
## 3743     Travel agent, tour operator     Package Tour                   Yes
## 3744     Travel agent, tour operator     Package Tour                    No
## 3745              Friends, relatives     Package Tour                   Yes
## 3746     Travel agent, tour operator     Package Tour                   Yes
## 3747     Travel agent, tour operator      Independent                    No
## 3748 Newspaper, magazines, brochures     Package Tour                   Yes
## 3749 Newspaper, magazines, brochures      Independent                    No
## 3750              Friends, relatives      Independent                    No
## 3751              Friends, relatives      Independent                    No
## 3752     Travel agent, tour operator     Package Tour                   Yes
## 3753              Friends, relatives      Independent                    No
## 3754     Travel agent, tour operator     Package Tour                   Yes
## 3755     Travel agent, tour operator     Package Tour                   Yes
## 3756     Travel agent, tour operator     Package Tour                   Yes
## 3757 Newspaper, magazines, brochures      Independent                    No
## 3758              Friends, relatives     Package Tour                   Yes
## 3759     Travel agent, tour operator     Package Tour                   Yes
## 3760                      Trade fair      Independent                    No
## 3761              Friends, relatives      Independent                    No
## 3762 Newspaper, magazines, brochures      Independent                    No
## 3763     Travel agent, tour operator     Package Tour                   Yes
## 3764              Friends, relatives     Package Tour                   Yes
## 3765              Friends, relatives      Independent                    No
## 3766                          Others      Independent                    No
## 3767     Travel agent, tour operator     Package Tour                    No
## 3769                  Radio, TV, Web     Package Tour                    No
## 3770              Friends, relatives      Independent                    No
## 3771     Travel agent, tour operator     Package Tour                   Yes
## 3772     Travel agent, tour operator      Independent                    No
## 3773              Friends, relatives      Independent                    No
## 3774     Travel agent, tour operator     Package Tour                   Yes
## 3775              Friends, relatives      Independent                    No
## 3776              Friends, relatives      Independent                    No
## 3777              Friends, relatives      Independent                    No
## 3778              Friends, relatives      Independent                    No
## 3779 Newspaper, magazines, brochures     Package Tour                   Yes
## 3780 Newspaper, magazines, brochures     Package Tour                   Yes
## 3781              Friends, relatives      Independent                    No
## 3782              Friends, relatives      Independent                    No
## 3783              Friends, relatives      Independent                    No
## 3785                  Radio, TV, Web      Independent                    No
## 3786     Travel agent, tour operator     Package Tour                   Yes
## 3787              Friends, relatives      Independent                    No
## 3788              Friends, relatives     Package Tour                   Yes
## 3789     Travel agent, tour operator     Package Tour                   Yes
## 3790     Travel agent, tour operator     Package Tour                   Yes
## 3791              Friends, relatives      Independent                    No
## 3792              Friends, relatives      Independent                    No
## 3793              Friends, relatives      Independent                    No
## 3794 Newspaper, magazines, brochures     Package Tour                    No
## 3795              Friends, relatives      Independent                    No
## 3796              Friends, relatives      Independent                    No
## 3797              Friends, relatives      Independent                    No
## 3798     Travel agent, tour operator     Package Tour                    No
## 3799     Travel agent, tour operator     Package Tour                    No
## 3800              Friends, relatives      Independent                    No
## 3801     Travel agent, tour operator     Package Tour                   Yes
## 3802     Travel agent, tour operator     Package Tour                   Yes
## 3803     Travel agent, tour operator     Package Tour                   Yes
## 3805              Friends, relatives      Independent                    No
## 3806              Friends, relatives      Independent                    No
## 3807              Friends, relatives      Independent                    No
## 3808                  Radio, TV, Web     Package Tour                   Yes
## 3809     Travel agent, tour operator     Package Tour                    No
## 3810              Friends, relatives      Independent                    No
## 3811              Friends, relatives      Independent                    No
## 3812     Travel agent, tour operator     Package Tour                    No
## 3813              Friends, relatives     Package Tour                   Yes
## 3814     Travel agent, tour operator      Independent                    No
## 3815     Travel agent, tour operator     Package Tour                   Yes
## 3816     Travel agent, tour operator     Package Tour                    No
## 3817                      Trade fair      Independent                    No
## 3818     Travel agent, tour operator     Package Tour                   Yes
## 3819              Friends, relatives      Independent                    No
## 3820     Travel agent, tour operator     Package Tour                    No
## 3821              Friends, relatives      Independent                    No
## 3822              Friends, relatives     Package Tour                   Yes
## 3823              Inflight magazines      Independent                    No
## 3824              Friends, relatives      Independent                    No
## 3825              Friends, relatives      Independent                    No
## 3826              Friends, relatives      Independent                    No
## 3827     Travel agent, tour operator     Package Tour                   Yes
## 3828                  Radio, TV, Web      Independent                    No
## 3829                          Others      Independent                    No
## 3830              Friends, relatives      Independent                    No
## 3831                  Radio, TV, Web     Package Tour                   Yes
## 3832     Travel agent, tour operator     Package Tour                   Yes
## 3833 Newspaper, magazines, brochures      Independent                    No
## 3834                          Others     Package Tour                    No
## 3835     Travel agent, tour operator     Package Tour                    No
## 3836     Travel agent, tour operator      Independent                   Yes
## 3837                      Trade fair      Independent                    No
## 3838              Friends, relatives      Independent                    No
## 3839              Friends, relatives      Independent                    No
## 3840              Friends, relatives      Independent                    No
## 3841              Friends, relatives      Independent                    No
## 3842     Travel agent, tour operator     Package Tour                    No
## 3843     Travel agent, tour operator     Package Tour                   Yes
## 3844              Friends, relatives      Independent                    No
## 3845     Travel agent, tour operator      Independent                    No
## 3847     Travel agent, tour operator     Package Tour                    No
## 3848              Friends, relatives     Package Tour                    No
## 3849              Friends, relatives      Independent                    No
## 3850              Friends, relatives      Independent                    No
## 3851              Friends, relatives      Independent                    No
## 3852     Travel agent, tour operator     Package Tour                   Yes
## 3853 Newspaper, magazines, brochures      Independent                    No
## 3855                  Radio, TV, Web     Package Tour                   Yes
## 3856              Friends, relatives     Package Tour                   Yes
## 3857     Travel agent, tour operator      Independent                    No
## 3858                  Radio, TV, Web      Independent                    No
## 3859                  Radio, TV, Web      Independent                    No
## 3860 Newspaper, magazines, brochures      Independent                    No
## 3863              Friends, relatives      Independent                    No
## 3864     Travel agent, tour operator     Package Tour                    No
## 3865     Travel agent, tour operator     Package Tour                   Yes
## 3866              Friends, relatives      Independent                    No
## 3867     Travel agent, tour operator     Package Tour                   Yes
## 3868                          Others      Independent                    No
## 3869 Newspaper, magazines, brochures      Independent                    No
## 3870         Tanzania Mission Abroad      Independent                    No
## 3871     Travel agent, tour operator     Package Tour                   Yes
## 3872              Friends, relatives      Independent                    No
## 3873              Friends, relatives      Independent                    No
## 3874                      Trade fair     Package Tour                   Yes
## 3875              Friends, relatives     Package Tour                    No
## 3876              Friends, relatives     Package Tour                   Yes
## 3877     Travel agent, tour operator      Independent                    No
## 3878              Friends, relatives      Independent                    No
## 3879              Friends, relatives      Independent                    No
## 3880     Travel agent, tour operator     Package Tour                   Yes
## 3882              Friends, relatives      Independent                    No
## 3883                          Others     Package Tour                    No
## 3884                          Others     Package Tour                    No
## 3885 Newspaper, magazines, brochures      Independent                    No
## 3886     Travel agent, tour operator      Independent                    No
## 3887              Friends, relatives      Independent                    No
## 3888     Travel agent, tour operator      Independent                    No
## 3889              Friends, relatives      Independent                    No
## 3891     Travel agent, tour operator     Package Tour                    No
## 3892     Travel agent, tour operator     Package Tour                   Yes
## 3893              Friends, relatives      Independent                    No
## 3894              Friends, relatives      Independent                    No
## 3895              Friends, relatives     Package Tour                    No
## 3896     Travel agent, tour operator     Package Tour                   Yes
## 3897     Travel agent, tour operator     Package Tour                   Yes
## 3898              Friends, relatives      Independent                    No
## 3900              Friends, relatives      Independent                    No
## 3901     Travel agent, tour operator     Package Tour                   Yes
## 3902 Newspaper, magazines, brochures      Independent                    No
## 3903                      Trade fair     Package Tour                   Yes
## 3905                  Radio, TV, Web      Independent                    No
## 3906     Travel agent, tour operator     Package Tour                   Yes
## 3907     Travel agent, tour operator     Package Tour                    No
## 3908              Friends, relatives      Independent                    No
## 3909              Friends, relatives      Independent                    No
## 3910              Friends, relatives      Independent                    No
## 3911                  Radio, TV, Web     Package Tour                   Yes
## 3912 Newspaper, magazines, brochures      Independent                    No
## 3913                  Radio, TV, Web     Package Tour                    No
## 3914     Travel agent, tour operator     Package Tour                    No
## 3915     Travel agent, tour operator     Package Tour                    No
## 3916 Newspaper, magazines, brochures      Independent                    No
## 3917              Friends, relatives      Independent                    No
## 3918     Travel agent, tour operator     Package Tour                   Yes
## 3919              Friends, relatives      Independent                    No
## 3920                      Trade fair      Independent                    No
## 3921     Travel agent, tour operator     Package Tour                   Yes
## 3922     Travel agent, tour operator     Package Tour                   Yes
## 3923     Travel agent, tour operator     Package Tour                   Yes
## 3924              Friends, relatives      Independent                    No
## 3925              Friends, relatives     Package Tour                   Yes
## 3926              Friends, relatives     Package Tour                    No
## 3927              Friends, relatives      Independent                    No
## 3928     Travel agent, tour operator      Independent                    No
## 3929     Travel agent, tour operator     Package Tour                   Yes
## 3930 Newspaper, magazines, brochures     Package Tour                   Yes
## 3931              Friends, relatives     Package Tour                   Yes
## 3932     Travel agent, tour operator     Package Tour                   Yes
## 3934     Travel agent, tour operator      Independent                    No
## 3935     Travel agent, tour operator     Package Tour                    No
## 3936              Friends, relatives      Independent                    No
## 3937     Travel agent, tour operator     Package Tour                   Yes
## 3938              Friends, relatives     Package Tour                    No
## 3939              Friends, relatives     Package Tour                    No
## 3940     Travel agent, tour operator     Package Tour                    No
## 3941              Friends, relatives      Independent                    No
## 3942     Travel agent, tour operator     Package Tour                   Yes
## 3943              Friends, relatives      Independent                    No
## 3944     Travel agent, tour operator      Independent                    No
## 3945     Travel agent, tour operator      Independent                    No
## 3946     Travel agent, tour operator     Package Tour                   Yes
## 3947     Travel agent, tour operator     Package Tour                    No
## 3948     Travel agent, tour operator     Package Tour                    No
## 3949                  Radio, TV, Web      Independent                    No
## 3951              Friends, relatives      Independent                    No
## 3952              Friends, relatives      Independent                    No
## 3953              Friends, relatives     Package Tour                   Yes
## 3954         Tanzania Mission Abroad      Independent                    No
## 3955     Travel agent, tour operator     Package Tour                   Yes
## 3956     Travel agent, tour operator     Package Tour                   Yes
## 3957                  Radio, TV, Web      Independent                    No
## 3958     Travel agent, tour operator     Package Tour                   Yes
## 3959              Friends, relatives     Package Tour                    No
## 3960     Travel agent, tour operator     Package Tour                   Yes
## 3961     Travel agent, tour operator     Package Tour                   Yes
## 3963     Travel agent, tour operator     Package Tour                    No
## 3964 Newspaper, magazines, brochures     Package Tour                    No
## 3966              Friends, relatives     Package Tour                    No
## 3967     Travel agent, tour operator     Package Tour                   Yes
## 3969              Friends, relatives     Package Tour                   Yes
## 3970     Travel agent, tour operator     Package Tour                    No
## 3971              Friends, relatives      Independent                    No
## 3972              Friends, relatives      Independent                    No
## 3973     Travel agent, tour operator      Independent                    No
## 3974              Friends, relatives      Independent                    No
## 3975              Friends, relatives      Independent                    No
## 3976              Friends, relatives      Independent                    No
## 3977                          Others      Independent                    No
## 3978     Travel agent, tour operator     Package Tour                   Yes
## 3979     Travel agent, tour operator     Package Tour                   Yes
## 3980              Friends, relatives     Package Tour                   Yes
## 3981     Travel agent, tour operator      Independent                    No
## 3982              Friends, relatives     Package Tour                    No
## 3983              Friends, relatives      Independent                    No
## 3984     Travel agent, tour operator     Package Tour                   Yes
## 3985     Travel agent, tour operator      Independent                    No
## 3986                  Radio, TV, Web     Package Tour                   Yes
## 3987     Travel agent, tour operator     Package Tour                   Yes
## 3988     Travel agent, tour operator     Package Tour                    No
## 3989     Travel agent, tour operator     Package Tour                   Yes
## 3990              Friends, relatives      Independent                    No
## 3991     Travel agent, tour operator     Package Tour                   Yes
## 3992     Travel agent, tour operator     Package Tour                    No
## 3993              Friends, relatives      Independent                    No
## 3994     Travel agent, tour operator      Independent                    No
## 3995     Travel agent, tour operator     Package Tour                   Yes
## 3996              Friends, relatives      Independent                    No
## 3997              Friends, relatives      Independent                    No
## 3998                  Radio, TV, Web     Package Tour                   Yes
## 3999     Travel agent, tour operator     Package Tour                   Yes
## 4000              Friends, relatives     Package Tour                   Yes
## 4001 Newspaper, magazines, brochures      Independent                    No
## 4002              Friends, relatives      Independent                    No
## 4003     Travel agent, tour operator     Package Tour                    No
## 4004 Newspaper, magazines, brochures     Package Tour                    No
## 4007     Travel agent, tour operator     Package Tour                   Yes
## 4008     Travel agent, tour operator     Package Tour                   Yes
## 4009     Travel agent, tour operator      Independent                    No
## 4010              Friends, relatives      Independent                    No
## 4012              Friends, relatives      Independent                    No
## 4013                          Others     Package Tour                   Yes
## 4014                          Others      Independent                    No
## 4015              Friends, relatives      Independent                    No
## 4016              Friends, relatives     Package Tour                   Yes
## 4017              Friends, relatives      Independent                    No
## 4018              Friends, relatives      Independent                    No
## 4019                          Others     Package Tour                    No
## 4020     Travel agent, tour operator     Package Tour                   Yes
## 4021              Friends, relatives      Independent                    No
## 4022              Friends, relatives     Package Tour                   Yes
## 4023                  Radio, TV, Web      Independent                    No
## 4025              Friends, relatives      Independent                    No
## 4027     Travel agent, tour operator     Package Tour                    No
## 4028     Travel agent, tour operator     Package Tour                   Yes
## 4029     Travel agent, tour operator      Independent                    No
## 4030              Friends, relatives      Independent                    No
## 4031     Travel agent, tour operator     Package Tour                   Yes
## 4032 Newspaper, magazines, brochures      Independent                    No
## 4033                          Others      Independent                    No
## 4034     Travel agent, tour operator     Package Tour                   Yes
## 4035     Travel agent, tour operator     Package Tour                    No
## 4036                  Radio, TV, Web      Independent                    No
## 4037              Friends, relatives     Package Tour                    No
## 4038                  Radio, TV, Web      Independent                    No
## 4039     Travel agent, tour operator      Independent                    No
## 4040                          Others     Package Tour                    No
## 4041     Travel agent, tour operator     Package Tour                   Yes
## 4042              Friends, relatives     Package Tour                    No
## 4043              Friends, relatives      Independent                    No
## 4044     Travel agent, tour operator     Package Tour                   Yes
## 4045              Friends, relatives      Independent                    No
## 4046     Travel agent, tour operator      Independent                    No
## 4047 Newspaper, magazines, brochures      Independent                    No
## 4048     Travel agent, tour operator     Package Tour                   Yes
## 4049              Friends, relatives      Independent                    No
## 4050                          Others      Independent                    No
## 4051     Travel agent, tour operator     Package Tour                   Yes
## 4052     Travel agent, tour operator     Package Tour                   Yes
## 4053     Travel agent, tour operator      Independent                    No
## 4054 Newspaper, magazines, brochures     Package Tour                   Yes
## 4055                          Others      Independent                    No
## 4056     Travel agent, tour operator      Independent                    No
## 4057              Friends, relatives      Independent                    No
## 4058              Friends, relatives      Independent                    No
## 4059              Friends, relatives      Independent                    No
## 4060              Friends, relatives      Independent                    No
## 4061     Travel agent, tour operator     Package Tour                   Yes
## 4062              Friends, relatives      Independent                    No
## 4063     Travel agent, tour operator     Package Tour                   Yes
## 4064     Travel agent, tour operator     Package Tour                   Yes
## 4065     Travel agent, tour operator      Independent                    No
## 4066     Travel agent, tour operator     Package Tour                   Yes
## 4067     Travel agent, tour operator      Independent                    No
## 4068 Newspaper, magazines, brochures     Package Tour                   Yes
## 4069     Travel agent, tour operator      Independent                    No
## 4070     Travel agent, tour operator     Package Tour                    No
## 4071              Friends, relatives      Independent                    No
## 4072              Friends, relatives     Package Tour                    No
## 4073     Travel agent, tour operator     Package Tour                    No
## 4075     Travel agent, tour operator     Package Tour                    No
## 4076     Travel agent, tour operator     Package Tour                   Yes
## 4077 Newspaper, magazines, brochures      Independent                    No
## 4078              Friends, relatives      Independent                    No
## 4079              Friends, relatives      Independent                    No
## 4080 Newspaper, magazines, brochures      Independent                    No
## 4081     Travel agent, tour operator     Package Tour                   Yes
## 4082                  Radio, TV, Web     Package Tour                    No
## 4083     Travel agent, tour operator     Package Tour                   Yes
## 4084         Tanzania Mission Abroad      Independent                    No
## 4085     Travel agent, tour operator     Package Tour                   Yes
## 4086              Friends, relatives      Independent                    No
## 4088                          Others     Package Tour                   Yes
## 4089     Travel agent, tour operator     Package Tour                   Yes
## 4090              Friends, relatives      Independent                    No
## 4091              Friends, relatives      Independent                    No
## 4092              Friends, relatives     Package Tour                   Yes
## 4093     Travel agent, tour operator     Package Tour                   Yes
## 4094     Travel agent, tour operator     Package Tour                   Yes
## 4095     Travel agent, tour operator     Package Tour                    No
## 4096     Travel agent, tour operator     Package Tour                   Yes
## 4097              Friends, relatives      Independent                    No
## 4098     Travel agent, tour operator     Package Tour                   Yes
## 4099              Friends, relatives      Independent                    No
## 4100                          Others      Independent                    No
## 4102              Friends, relatives      Independent                    No
## 4103     Travel agent, tour operator     Package Tour                   Yes
## 4104     Travel agent, tour operator     Package Tour                   Yes
## 4105     Travel agent, tour operator     Package Tour                    No
## 4106              Friends, relatives     Package Tour                    No
## 4107     Travel agent, tour operator     Package Tour                   Yes
## 4108 Newspaper, magazines, brochures      Independent                    No
## 4109     Travel agent, tour operator     Package Tour                   Yes
## 4111     Travel agent, tour operator     Package Tour                   Yes
## 4112     Travel agent, tour operator     Package Tour                   Yes
## 4113     Travel agent, tour operator     Package Tour                   Yes
## 4114              Friends, relatives      Independent                    No
## 4115              Friends, relatives      Independent                    No
## 4116     Travel agent, tour operator     Package Tour                   Yes
## 4117     Travel agent, tour operator     Package Tour                   Yes
## 4118              Friends, relatives      Independent                    No
## 4119              Friends, relatives      Independent                    No
## 4120     Travel agent, tour operator     Package Tour                   Yes
## 4122     Travel agent, tour operator     Package Tour                   Yes
## 4123     Travel agent, tour operator     Package Tour                    No
## 4124              Friends, relatives      Independent                    No
## 4125              Friends, relatives      Independent                    No
## 4126     Travel agent, tour operator     Package Tour                   Yes
## 4127     Travel agent, tour operator      Independent                    No
## 4128     Travel agent, tour operator     Package Tour                   Yes
## 4129              Friends, relatives     Package Tour                   Yes
## 4130 Newspaper, magazines, brochures      Independent                    No
## 4131              Friends, relatives      Independent                    No
## 4132     Travel agent, tour operator     Package Tour                   Yes
## 4133     Travel agent, tour operator     Package Tour                    No
## 4134 Newspaper, magazines, brochures     Package Tour                    No
## 4135                  Radio, TV, Web     Package Tour                   Yes
## 4136     Travel agent, tour operator     Package Tour                   Yes
## 4137     Travel agent, tour operator     Package Tour                    No
## 4138     Travel agent, tour operator     Package Tour                   Yes
## 4139              Friends, relatives      Independent                    No
## 4140     Travel agent, tour operator     Package Tour                   Yes
## 4141              Friends, relatives      Independent                    No
## 4142         Tanzania Mission Abroad      Independent                    No
## 4143     Travel agent, tour operator      Independent                    No
## 4144                          Others      Independent                    No
## 4145              Friends, relatives      Independent                    No
## 4146                  Radio, TV, Web     Package Tour                    No
## 4147                          Others      Independent                    No
## 4148              Friends, relatives      Independent                    No
## 4149              Friends, relatives      Independent                    No
## 4150 Newspaper, magazines, brochures     Package Tour                   Yes
## 4151     Travel agent, tour operator     Package Tour                    No
## 4152     Travel agent, tour operator     Package Tour                   Yes
## 4153              Friends, relatives      Independent                    No
## 4154                          Others      Independent                    No
## 4155              Friends, relatives      Independent                    No
## 4156                          Others     Package Tour                   Yes
## 4157              Friends, relatives      Independent                    No
## 4159                          Others     Package Tour                   Yes
## 4160              Friends, relatives      Independent                    No
## 4161     Travel agent, tour operator     Package Tour                   Yes
## 4162              Friends, relatives      Independent                    No
## 4163              Friends, relatives      Independent                    No
## 4164                          Others     Package Tour                    No
## 4165     Travel agent, tour operator     Package Tour                   Yes
## 4166                  Radio, TV, Web      Independent                    No
## 4167              Friends, relatives      Independent                    No
## 4168     Travel agent, tour operator      Independent                    No
## 4169     Travel agent, tour operator     Package Tour                   Yes
## 4170                  Radio, TV, Web     Package Tour                    No
## 4171     Travel agent, tour operator     Package Tour                   Yes
## 4172              Friends, relatives      Independent                    No
## 4173     Travel agent, tour operator     Package Tour                   Yes
## 4174              Friends, relatives      Independent                    No
## 4175              Friends, relatives      Independent                    No
## 4176     Travel agent, tour operator     Package Tour                   Yes
## 4177              Friends, relatives     Package Tour                   Yes
## 4178              Friends, relatives      Independent                    No
## 4179     Travel agent, tour operator     Package Tour                    No
## 4180     Travel agent, tour operator      Independent                    No
## 4181     Travel agent, tour operator      Independent                    No
## 4182     Travel agent, tour operator     Package Tour                    No
## 4183              Friends, relatives      Independent                    No
## 4184              Friends, relatives      Independent                    No
## 4185     Travel agent, tour operator     Package Tour                    No
## 4186              Friends, relatives      Independent                    No
## 4187     Travel agent, tour operator     Package Tour                   Yes
## 4188              Friends, relatives      Independent                    No
## 4189              Friends, relatives      Independent                    No
## 4190     Travel agent, tour operator     Package Tour                    No
## 4191              Friends, relatives      Independent                    No
## 4192 Newspaper, magazines, brochures      Independent                    No
## 4193                          Others      Independent                    No
## 4194              Friends, relatives      Independent                    No
## 4195              Friends, relatives      Independent                    No
## 4196                          Others      Independent                    No
## 4197     Travel agent, tour operator     Package Tour                    No
## 4198     Travel agent, tour operator     Package Tour                   Yes
## 4199     Travel agent, tour operator      Independent                    No
## 4200              Friends, relatives      Independent                    No
## 4201     Travel agent, tour operator     Package Tour                   Yes
## 4202                  Radio, TV, Web      Independent                    No
## 4203              Friends, relatives      Independent                    No
## 4204     Travel agent, tour operator      Independent                    No
## 4205     Travel agent, tour operator     Package Tour                   Yes
## 4206     Travel agent, tour operator     Package Tour                   Yes
## 4207     Travel agent, tour operator     Package Tour                    No
## 4208     Travel agent, tour operator     Package Tour                    No
## 4209              Friends, relatives      Independent                    No
## 4210     Travel agent, tour operator     Package Tour                   Yes
## 4211                          Others      Independent                    No
## 4212     Travel agent, tour operator     Package Tour                   Yes
## 4213              Friends, relatives      Independent                    No
## 4214                          Others     Package Tour                    No
## 4215     Travel agent, tour operator     Package Tour                   Yes
## 4216     Travel agent, tour operator      Independent                    No
## 4218                      Trade fair      Independent                    No
## 4219     Travel agent, tour operator     Package Tour                   Yes
## 4220     Travel agent, tour operator     Package Tour                    No
## 4221     Travel agent, tour operator      Independent                    No
## 4222     Travel agent, tour operator      Independent                    No
## 4223              Friends, relatives      Independent                    No
## 4224     Travel agent, tour operator     Package Tour                   Yes
## 4225     Travel agent, tour operator     Package Tour                   Yes
## 4226     Travel agent, tour operator      Independent                    No
## 4227     Travel agent, tour operator     Package Tour                   Yes
## 4228                  Radio, TV, Web      Independent                    No
## 4229              Friends, relatives     Package Tour                   Yes
## 4230     Travel agent, tour operator     Package Tour                   Yes
## 4231                  Radio, TV, Web     Package Tour                   Yes
## 4232                      Trade fair      Independent                    No
## 4233     Travel agent, tour operator     Package Tour                   Yes
## 4234     Travel agent, tour operator     Package Tour                   Yes
## 4235 Newspaper, magazines, brochures     Package Tour                   Yes
## 4236     Travel agent, tour operator     Package Tour                   Yes
## 4238     Travel agent, tour operator      Independent                    No
## 4239              Friends, relatives      Independent                    No
## 4240 Newspaper, magazines, brochures      Independent                    No
## 4241     Travel agent, tour operator     Package Tour                   Yes
## 4242     Travel agent, tour operator      Independent                   Yes
## 4243     Travel agent, tour operator     Package Tour                   Yes
## 4244              Friends, relatives      Independent                    No
## 4245     Travel agent, tour operator      Independent                    No
## 4246              Friends, relatives     Package Tour                    No
## 4247     Travel agent, tour operator     Package Tour                    No
## 4248     Travel agent, tour operator     Package Tour                   Yes
## 4249              Friends, relatives      Independent                    No
## 4250                  Radio, TV, Web      Independent                    No
## 4251              Friends, relatives     Package Tour                    No
## 4252     Travel agent, tour operator     Package Tour                   Yes
## 4253     Travel agent, tour operator     Package Tour                    No
## 4254     Travel agent, tour operator     Package Tour                   Yes
## 4255         Tanzania Mission Abroad      Independent                    No
## 4256     Travel agent, tour operator     Package Tour                   Yes
## 4257     Travel agent, tour operator     Package Tour                    No
## 4258              Friends, relatives      Independent                    No
## 4259     Travel agent, tour operator     Package Tour                   Yes
## 4260                          Others      Independent                    No
## 4261                  Radio, TV, Web     Package Tour                    No
## 4262     Travel agent, tour operator     Package Tour                   Yes
## 4263     Travel agent, tour operator     Package Tour                   Yes
## 4264              Friends, relatives      Independent                    No
## 4265     Travel agent, tour operator     Package Tour                   Yes
## 4266     Travel agent, tour operator      Independent                    No
## 4267              Friends, relatives      Independent                    No
## 4268              Friends, relatives      Independent                    No
## 4269                  Radio, TV, Web      Independent                    No
## 4270              Friends, relatives      Independent                    No
## 4271     Travel agent, tour operator     Package Tour                   Yes
## 4272              Friends, relatives      Independent                    No
## 4273 Newspaper, magazines, brochures      Independent                    No
## 4274              Friends, relatives      Independent                    No
## 4275     Travel agent, tour operator      Independent                    No
## 4276 Newspaper, magazines, brochures     Package Tour                   Yes
## 4277                  Radio, TV, Web      Independent                    No
## 4278     Travel agent, tour operator     Package Tour                    No
## 4279     Travel agent, tour operator     Package Tour                   Yes
## 4280                  Radio, TV, Web      Independent                    No
## 4281 Newspaper, magazines, brochures     Package Tour                   Yes
## 4282 Newspaper, magazines, brochures      Independent                    No
## 4283              Friends, relatives      Independent                    No
## 4284     Travel agent, tour operator     Package Tour                   Yes
## 4285                  Radio, TV, Web      Independent                    No
## 4286     Travel agent, tour operator     Package Tour                   Yes
## 4287     Travel agent, tour operator     Package Tour                   Yes
## 4288              Friends, relatives      Independent                    No
## 4289     Travel agent, tour operator      Independent                    No
## 4290     Travel agent, tour operator     Package Tour                    No
## 4291              Friends, relatives     Package Tour                    No
## 4292                  Radio, TV, Web      Independent                    No
## 4293     Travel agent, tour operator     Package Tour                   Yes
## 4294                          Others      Independent                    No
## 4295              Friends, relatives      Independent                    No
## 4296              Friends, relatives      Independent                    No
## 4297                  Radio, TV, Web      Independent                    No
## 4298     Travel agent, tour operator     Package Tour                   Yes
## 4299     Travel agent, tour operator     Package Tour                   Yes
## 4300     Travel agent, tour operator     Package Tour                   Yes
## 4301     Travel agent, tour operator     Package Tour                   Yes
## 4302     Travel agent, tour operator     Package Tour                    No
## 4303     Travel agent, tour operator     Package Tour                   Yes
## 4304     Travel agent, tour operator     Package Tour                   Yes
## 4305     Travel agent, tour operator     Package Tour                   Yes
## 4306     Travel agent, tour operator     Package Tour                   Yes
## 4307     Travel agent, tour operator     Package Tour                    No
## 4308              Friends, relatives      Independent                    No
## 4309              Friends, relatives      Independent                    No
## 4310                          Others      Independent                    No
## 4311              Friends, relatives     Package Tour                    No
## 4312     Travel agent, tour operator     Package Tour                   Yes
## 4313              Friends, relatives      Independent                    No
## 4315                          Others      Independent                    No
## 4316     Travel agent, tour operator     Package Tour                   Yes
## 4317                      Trade fair      Independent                    No
## 4318     Travel agent, tour operator     Package Tour                   Yes
## 4319              Friends, relatives      Independent                    No
## 4320     Travel agent, tour operator     Package Tour                   Yes
## 4321                          Others      Independent                    No
## 4323     Travel agent, tour operator     Package Tour                   Yes
## 4324              Friends, relatives      Independent                    No
## 4325 Newspaper, magazines, brochures      Independent                    No
## 4326 Newspaper, magazines, brochures      Independent                    No
## 4327                  Radio, TV, Web     Package Tour                   Yes
## 4328              Friends, relatives      Independent                    No
## 4329                  Radio, TV, Web     Package Tour                   Yes
## 4330              Friends, relatives      Independent                    No
## 4331              Friends, relatives      Independent                    No
## 4332     Travel agent, tour operator      Independent                    No
## 4333                  Radio, TV, Web     Package Tour                    No
## 4335     Travel agent, tour operator     Package Tour                   Yes
## 4336                      Trade fair      Independent                    No
## 4337     Travel agent, tour operator     Package Tour                   Yes
## 4338     Travel agent, tour operator     Package Tour                   Yes
## 4341                          Others     Package Tour                   Yes
## 4342                  Radio, TV, Web     Package Tour                    No
## 4343                          Others      Independent                    No
## 4344     Travel agent, tour operator     Package Tour                    No
## 4345     Travel agent, tour operator      Independent                    No
## 4346                          Others      Independent                    No
## 4347         Tanzania Mission Abroad      Independent                    No
## 4348                      Trade fair      Independent                    No
## 4349              Friends, relatives     Package Tour                   Yes
## 4350                  Radio, TV, Web     Package Tour                   Yes
## 4351     Travel agent, tour operator     Package Tour                   Yes
## 4352              Friends, relatives      Independent                    No
## 4353              Friends, relatives      Independent                    No
## 4354              Friends, relatives     Package Tour                    No
## 4355     Travel agent, tour operator      Independent                    No
## 4356                      Trade fair      Independent                    No
## 4357                  Radio, TV, Web     Package Tour                    No
## 4358              Friends, relatives      Independent                    No
## 4359              Friends, relatives      Independent                    No
## 4360              Friends, relatives      Independent                    No
## 4361     Travel agent, tour operator     Package Tour                   Yes
## 4362     Travel agent, tour operator      Independent                    No
## 4364              Friends, relatives      Independent                    No
## 4365              Friends, relatives      Independent                    No
## 4366     Travel agent, tour operator     Package Tour                    No
## 4367     Travel agent, tour operator     Package Tour                   Yes
## 4368              Friends, relatives      Independent                    No
## 4369                          Others      Independent                    No
## 4370                  Radio, TV, Web      Independent                    No
## 4371              Friends, relatives      Independent                    No
## 4372     Travel agent, tour operator     Package Tour                   Yes
## 4373     Travel agent, tour operator     Package Tour                   Yes
## 4374 Newspaper, magazines, brochures     Package Tour                    No
## 4376     Travel agent, tour operator      Independent                    No
## 4377              Friends, relatives      Independent                    No
## 4378     Travel agent, tour operator     Package Tour                   Yes
## 4379              Friends, relatives      Independent                    No
## 4380              Friends, relatives      Independent                    No
## 4381     Travel agent, tour operator      Independent                    No
## 4382     Travel agent, tour operator      Independent                    No
## 4383              Friends, relatives      Independent                    No
## 4384                  Radio, TV, Web      Independent                    No
## 4385     Travel agent, tour operator      Independent                    No
## 4386              Friends, relatives     Package Tour                    No
## 4387                      Trade fair      Independent                    No
## 4388     Travel agent, tour operator      Independent                    No
## 4389                  Radio, TV, Web      Independent                    No
## 4390              Friends, relatives      Independent                    No
## 4391 Newspaper, magazines, brochures     Package Tour                   Yes
## 4392 Newspaper, magazines, brochures     Package Tour                   Yes
## 4393              Friends, relatives     Package Tour                   Yes
## 4394     Travel agent, tour operator     Package Tour                    No
## 4395     Travel agent, tour operator     Package Tour                    No
## 4396                  Radio, TV, Web     Package Tour                    No
## 4397     Travel agent, tour operator     Package Tour                   Yes
## 4398     Travel agent, tour operator     Package Tour                   Yes
## 4400              Friends, relatives      Independent                    No
## 4401     Travel agent, tour operator     Package Tour                   Yes
## 4403     Travel agent, tour operator     Package Tour                   Yes
## 4404              Friends, relatives     Package Tour                   Yes
## 4405     Travel agent, tour operator     Package Tour                   Yes
## 4406     Travel agent, tour operator     Package Tour                   Yes
## 4407                  Radio, TV, Web      Independent                    No
## 4408     Travel agent, tour operator     Package Tour                   Yes
## 4409              Friends, relatives      Independent                    No
## 4410              Friends, relatives      Independent                    No
## 4411     Travel agent, tour operator     Package Tour                   Yes
## 4412     Travel agent, tour operator     Package Tour                   Yes
## 4413     Travel agent, tour operator      Independent                    No
## 4414     Travel agent, tour operator     Package Tour                   Yes
## 4415     Travel agent, tour operator     Package Tour                    No
## 4416     Travel agent, tour operator     Package Tour                   Yes
## 4417     Travel agent, tour operator     Package Tour                   Yes
## 4418     Travel agent, tour operator      Independent                    No
## 4419              Friends, relatives      Independent                    No
## 4420              Friends, relatives      Independent                    No
## 4421              Friends, relatives      Independent                    No
## 4423     Travel agent, tour operator      Independent                    No
## 4424                      Trade fair     Package Tour                   Yes
## 4425     Travel agent, tour operator      Independent                    No
## 4426              Friends, relatives      Independent                    No
## 4427     Travel agent, tour operator     Package Tour                   Yes
## 4428     Travel agent, tour operator     Package Tour                   Yes
## 4429              Friends, relatives      Independent                    No
## 4430              Friends, relatives     Package Tour                    No
## 4431     Travel agent, tour operator      Independent                    No
## 4432     Travel agent, tour operator     Package Tour                   Yes
## 4433              Friends, relatives     Package Tour                    No
## 4434     Travel agent, tour operator      Independent                    No
## 4435     Travel agent, tour operator     Package Tour                    No
## 4436     Travel agent, tour operator     Package Tour                    No
## 4437                      Trade fair      Independent                    No
## 4438 Newspaper, magazines, brochures     Package Tour                   Yes
## 4439     Travel agent, tour operator     Package Tour                   Yes
## 4440     Travel agent, tour operator     Package Tour                   Yes
## 4441                          Others     Package Tour                   Yes
## 4442     Travel agent, tour operator      Independent                    No
## 4443 Newspaper, magazines, brochures     Package Tour                   Yes
## 4444                  Radio, TV, Web     Package Tour                   Yes
## 4445                          Others      Independent                    No
## 4447                          Others      Independent                    No
## 4448              Friends, relatives      Independent                    No
## 4450                      Trade fair      Independent                    No
## 4451                          Others     Package Tour                   Yes
## 4452     Travel agent, tour operator      Independent                   Yes
## 4453              Friends, relatives      Independent                    No
## 4454     Travel agent, tour operator     Package Tour                   Yes
## 4455              Friends, relatives      Independent                    No
## 4456              Friends, relatives      Independent                    No
## 4457     Travel agent, tour operator     Package Tour                    No
## 4458                  Radio, TV, Web     Package Tour                   Yes
## 4459     Travel agent, tour operator     Package Tour                   Yes
## 4460              Friends, relatives     Package Tour                    No
## 4461              Friends, relatives      Independent                    No
## 4463     Travel agent, tour operator     Package Tour                   Yes
## 4464     Travel agent, tour operator     Package Tour                   Yes
## 4465     Travel agent, tour operator      Independent                    No
## 4466     Travel agent, tour operator     Package Tour                   Yes
## 4467              Friends, relatives      Independent                    No
## 4468 Newspaper, magazines, brochures     Package Tour                   Yes
## 4469              Inflight magazines      Independent                    No
## 4470     Travel agent, tour operator     Package Tour                    No
## 4471                          Others      Independent                    No
## 4472     Travel agent, tour operator     Package Tour                   Yes
## 4473     Travel agent, tour operator     Package Tour                    No
## 4474     Travel agent, tour operator     Package Tour                   Yes
## 4475              Friends, relatives     Package Tour                    No
## 4476              Friends, relatives     Package Tour                    No
## 4477                          Others      Independent                    No
## 4478              Friends, relatives      Independent                    No
## 4479     Travel agent, tour operator     Package Tour                   Yes
## 4480     Travel agent, tour operator     Package Tour                   Yes
## 4481     Travel agent, tour operator      Independent                    No
## 4482     Travel agent, tour operator     Package Tour                    No
## 4483     Travel agent, tour operator     Package Tour                   Yes
## 4484              Friends, relatives      Independent                    No
## 4485     Travel agent, tour operator     Package Tour                   Yes
## 4486     Travel agent, tour operator     Package Tour                    No
## 4487                          Others      Independent                    No
## 4488              Friends, relatives     Package Tour                   Yes
## 4489     Travel agent, tour operator     Package Tour                   Yes
## 4490              Friends, relatives      Independent                    No
## 4491                          Others      Independent                    No
## 4492     Travel agent, tour operator      Independent                    No
## 4493     Travel agent, tour operator      Independent                    No
## 4494                          Others      Independent                    No
## 4495     Travel agent, tour operator      Independent                    No
## 4496                          Others      Independent                    No
## 4497     Travel agent, tour operator     Package Tour                    No
## 4498              Friends, relatives      Independent                    No
## 4499     Travel agent, tour operator     Package Tour                   Yes
## 4500     Travel agent, tour operator     Package Tour                   Yes
## 4501              Friends, relatives      Independent                    No
## 4502              Friends, relatives      Independent                    No
## 4503     Travel agent, tour operator      Independent                    No
## 4504     Travel agent, tour operator     Package Tour                    No
## 4505     Travel agent, tour operator     Package Tour                    No
## 4506 Newspaper, magazines, brochures      Independent                    No
## 4507              Friends, relatives      Independent                    No
## 4508     Travel agent, tour operator     Package Tour                   Yes
## 4509     Travel agent, tour operator     Package Tour                   Yes
## 4510              Friends, relatives      Independent                    No
## 4511     Travel agent, tour operator      Independent                    No
## 4512     Travel agent, tour operator     Package Tour                   Yes
## 4513              Friends, relatives      Independent                    No
## 4514              Friends, relatives      Independent                    No
## 4515              Friends, relatives      Independent                    No
## 4516              Friends, relatives      Independent                    No
## 4517              Friends, relatives      Independent                    No
## 4518              Friends, relatives      Independent                    No
## 4519              Friends, relatives      Independent                    No
## 4520     Travel agent, tour operator     Package Tour                   Yes
## 4521 Newspaper, magazines, brochures     Package Tour                   Yes
## 4522                          Others      Independent                    No
## 4523              Friends, relatives      Independent                    No
## 4524     Travel agent, tour operator     Package Tour                   Yes
## 4525              Friends, relatives      Independent                    No
## 4526              Friends, relatives     Package Tour                   Yes
## 4527     Travel agent, tour operator      Independent                    No
## 4528              Friends, relatives      Independent                    No
## 4529     Travel agent, tour operator      Independent                    No
## 4530              Friends, relatives      Independent                    No
## 4531 Newspaper, magazines, brochures      Independent                    No
## 4532                          Others     Package Tour                    No
## 4533     Travel agent, tour operator     Package Tour                   Yes
## 4534     Travel agent, tour operator     Package Tour                   Yes
## 4536     Travel agent, tour operator      Independent                    No
## 4537 Newspaper, magazines, brochures      Independent                    No
## 4538     Travel agent, tour operator     Package Tour                   Yes
## 4539                          Others      Independent                    No
## 4540              Friends, relatives      Independent                    No
## 4541     Travel agent, tour operator     Package Tour                   Yes
## 4542              Friends, relatives      Independent                    No
## 4543     Travel agent, tour operator      Independent                    No
## 4544                  Radio, TV, Web     Package Tour                   Yes
## 4545                  Radio, TV, Web      Independent                    No
## 4546              Friends, relatives      Independent                    No
## 4547     Travel agent, tour operator     Package Tour                    No
## 4548     Travel agent, tour operator      Independent                    No
## 4549     Travel agent, tour operator     Package Tour                   Yes
## 4551     Travel agent, tour operator      Independent                    No
## 4552              Friends, relatives      Independent                    No
## 4553 Newspaper, magazines, brochures     Package Tour                   Yes
## 4554              Friends, relatives      Independent                    No
## 4555 Newspaper, magazines, brochures      Independent                    No
## 4557              Friends, relatives      Independent                    No
## 4558              Friends, relatives     Package Tour                   Yes
## 4559              Friends, relatives      Independent                    No
## 4560              Friends, relatives      Independent                    No
## 4561     Travel agent, tour operator     Package Tour                   Yes
## 4562     Travel agent, tour operator      Independent                    No
## 4563                          Others      Independent                    No
## 4564     Travel agent, tour operator     Package Tour                   Yes
## 4565     Travel agent, tour operator     Package Tour                   Yes
## 4566              Friends, relatives      Independent                    No
## 4567              Friends, relatives     Package Tour                   Yes
## 4568              Friends, relatives     Package Tour                    No
## 4569     Travel agent, tour operator     Package Tour                   Yes
## 4570     Travel agent, tour operator     Package Tour                   Yes
## 4572 Newspaper, magazines, brochures     Package Tour                   Yes
## 4573              Friends, relatives      Independent                    No
## 4574              Friends, relatives     Package Tour                    No
## 4575              Friends, relatives      Independent                    No
## 4576              Friends, relatives     Package Tour                    No
## 4577     Travel agent, tour operator      Independent                    No
## 4578              Friends, relatives      Independent                    No
## 4579     Travel agent, tour operator     Package Tour                   Yes
## 4581                          Others      Independent                    No
## 4582              Friends, relatives      Independent                    No
## 4583     Travel agent, tour operator     Package Tour                   Yes
## 4584 Newspaper, magazines, brochures     Package Tour                   Yes
## 4585     Travel agent, tour operator      Independent                    No
## 4586              Friends, relatives      Independent                    No
## 4587              Friends, relatives      Independent                    No
## 4588              Friends, relatives      Independent                    No
## 4589              Friends, relatives     Package Tour                    No
## 4590                  Radio, TV, Web      Independent                    No
## 4591     Travel agent, tour operator     Package Tour                   Yes
## 4592              Friends, relatives     Package Tour                    No
## 4594     Travel agent, tour operator     Package Tour                   Yes
## 4595     Travel agent, tour operator     Package Tour                   Yes
## 4596     Travel agent, tour operator      Independent                   Yes
## 4597     Travel agent, tour operator     Package Tour                   Yes
## 4598                      Trade fair      Independent                    No
## 4599     Travel agent, tour operator      Independent                    No
## 4600     Travel agent, tour operator      Independent                    No
## 4601              Friends, relatives     Package Tour                   Yes
## 4602                  Radio, TV, Web      Independent                    No
## 4603     Travel agent, tour operator     Package Tour                   Yes
## 4604              Friends, relatives      Independent                    No
## 4605              Friends, relatives      Independent                    No
## 4606              Friends, relatives      Independent                    No
## 4608     Travel agent, tour operator     Package Tour                   Yes
## 4609 Newspaper, magazines, brochures     Package Tour                    No
## 4610              Friends, relatives      Independent                    No
## 4611              Friends, relatives      Independent                    No
## 4612 Newspaper, magazines, brochures      Independent                    No
## 4613              Friends, relatives      Independent                    No
## 4614     Travel agent, tour operator     Package Tour                    No
## 4616                  Radio, TV, Web     Package Tour                   Yes
## 4617     Travel agent, tour operator      Independent                    No
## 4618     Travel agent, tour operator     Package Tour                    No
## 4619     Travel agent, tour operator     Package Tour                   Yes
## 4620              Friends, relatives      Independent                    No
## 4621     Travel agent, tour operator     Package Tour                   Yes
## 4622              Friends, relatives      Independent                    No
## 4623              Friends, relatives     Package Tour                    No
## 4624              Friends, relatives     Package Tour                   Yes
## 4625     Travel agent, tour operator      Independent                    No
## 4626     Travel agent, tour operator     Package Tour                   Yes
## 4627              Friends, relatives      Independent                    No
## 4628         Tanzania Mission Abroad      Independent                    No
## 4630     Travel agent, tour operator     Package Tour                   Yes
## 4631     Travel agent, tour operator     Package Tour                    No
## 4632     Travel agent, tour operator      Independent                    No
## 4633                          Others      Independent                    No
## 4634              Friends, relatives     Package Tour                   Yes
## 4635              Friends, relatives      Independent                    No
## 4636     Travel agent, tour operator     Package Tour                   Yes
## 4637                  Radio, TV, Web      Independent                    No
## 4638     Travel agent, tour operator     Package Tour                   Yes
## 4639     Travel agent, tour operator     Package Tour                   Yes
## 4640     Travel agent, tour operator     Package Tour                   Yes
## 4641     Travel agent, tour operator     Package Tour                   Yes
## 4642     Travel agent, tour operator     Package Tour                   Yes
## 4643              Friends, relatives      Independent                    No
## 4645     Travel agent, tour operator     Package Tour                    No
## 4646 Newspaper, magazines, brochures      Independent                    No
## 4647                          Others     Package Tour                    No
## 4648     Travel agent, tour operator     Package Tour                    No
## 4649     Travel agent, tour operator     Package Tour                    No
## 4650              Friends, relatives      Independent                    No
## 4651                          Others      Independent                    No
## 4652     Travel agent, tour operator      Independent                    No
## 4654     Travel agent, tour operator      Independent                    No
## 4655 Newspaper, magazines, brochures      Independent                    No
## 4656     Travel agent, tour operator      Independent                    No
## 4658 Newspaper, magazines, brochures      Independent                    No
## 4659                          Others     Package Tour                   Yes
## 4660                  Radio, TV, Web      Independent                    No
## 4661     Travel agent, tour operator     Package Tour                   Yes
## 4662                  Radio, TV, Web     Package Tour                    No
## 4663 Newspaper, magazines, brochures     Package Tour                   Yes
## 4664                          Others      Independent                    No
## 4665              Friends, relatives     Package Tour                   Yes
## 4666              Friends, relatives      Independent                    No
## 4667              Friends, relatives      Independent                    No
## 4668     Travel agent, tour operator     Package Tour                   Yes
## 4669     Travel agent, tour operator     Package Tour                   Yes
## 4670              Friends, relatives      Independent                    No
## 4671              Friends, relatives      Independent                    No
## 4672                          Others      Independent                    No
## 4673              Friends, relatives      Independent                    No
## 4674                          Others      Independent                    No
## 4675     Travel agent, tour operator     Package Tour                    No
## 4676 Newspaper, magazines, brochures      Independent                    No
## 4677     Travel agent, tour operator     Package Tour                    No
## 4678              Friends, relatives     Package Tour                   Yes
## 4679              Friends, relatives     Package Tour                    No
## 4680              Friends, relatives     Package Tour                    No
## 4681     Travel agent, tour operator     Package Tour                    No
## 4682     Travel agent, tour operator     Package Tour                    No
## 4683         Tanzania Mission Abroad      Independent                    No
## 4684                          Others      Independent                    No
## 4685              Friends, relatives     Package Tour                   Yes
## 4686     Travel agent, tour operator      Independent                    No
## 4687              Friends, relatives      Independent                    No
## 4688                      Trade fair      Independent                    No
## 4689              Friends, relatives     Package Tour                    No
## 4690     Travel agent, tour operator      Independent                    No
## 4691     Travel agent, tour operator     Package Tour                   Yes
## 4692     Travel agent, tour operator     Package Tour                    No
## 4693                  Radio, TV, Web      Independent                    No
## 4694              Friends, relatives      Independent                    No
## 4695              Friends, relatives      Independent                    No
## 4696              Friends, relatives      Independent                    No
## 4697              Friends, relatives      Independent                    No
## 4698     Travel agent, tour operator     Package Tour                    No
## 4699              Friends, relatives      Independent                    No
## 4700     Travel agent, tour operator     Package Tour                    No
## 4701                          Others      Independent                    No
## 4702                  Radio, TV, Web     Package Tour                   Yes
## 4703     Travel agent, tour operator      Independent                    No
## 4704 Newspaper, magazines, brochures      Independent                    No
## 4705     Travel agent, tour operator     Package Tour                   Yes
## 4706                          Others      Independent                    No
## 4707              Friends, relatives      Independent                    No
## 4708              Friends, relatives      Independent                    No
## 4709              Friends, relatives      Independent                    No
## 4711              Friends, relatives     Package Tour                   Yes
## 4712                      Trade fair      Independent                    No
## 4713     Travel agent, tour operator     Package Tour                   Yes
## 4714     Travel agent, tour operator     Package Tour                   Yes
## 4715                      Trade fair      Independent                    No
## 4717              Friends, relatives      Independent                    No
## 4718     Travel agent, tour operator     Package Tour                   Yes
## 4719              Friends, relatives     Package Tour                    No
## 4720              Friends, relatives      Independent                    No
## 4721     Travel agent, tour operator     Package Tour                   Yes
## 4722                  Radio, TV, Web      Independent                    No
## 4723                  Radio, TV, Web      Independent                    No
## 4724              Friends, relatives      Independent                    No
## 4725              Friends, relatives      Independent                    No
## 4726              Friends, relatives      Independent                    No
## 4727              Friends, relatives     Package Tour                   Yes
## 4728              Friends, relatives      Independent                    No
## 4729              Friends, relatives      Independent                    No
## 4730                  Radio, TV, Web     Package Tour                   Yes
## 4731              Friends, relatives      Independent                    No
## 4732              Friends, relatives      Independent                    No
## 4733              Friends, relatives      Independent                    No
## 4734     Travel agent, tour operator     Package Tour                    No
## 4735     Travel agent, tour operator      Independent                    No
## 4736     Travel agent, tour operator     Package Tour                    No
## 4737     Travel agent, tour operator     Package Tour                   Yes
## 4738              Friends, relatives      Independent                    No
## 4739     Travel agent, tour operator     Package Tour                   Yes
## 4740              Friends, relatives      Independent                    No
## 4741              Friends, relatives     Package Tour                    No
## 4742              Friends, relatives      Independent                    No
## 4743                  Radio, TV, Web     Package Tour                   Yes
## 4744                  Radio, TV, Web      Independent                    No
## 4745              Friends, relatives      Independent                    No
## 4746              Friends, relatives      Independent                    No
## 4747              Friends, relatives      Independent                    No
## 4748     Travel agent, tour operator     Package Tour                    No
## 4749              Friends, relatives      Independent                    No
## 4750              Friends, relatives      Independent                    No
## 4751              Friends, relatives      Independent                    No
## 4752     Travel agent, tour operator     Package Tour                    No
## 4753                  Radio, TV, Web      Independent                    No
## 4754              Friends, relatives      Independent                    No
## 4755     Travel agent, tour operator      Independent                    No
## 4756     Travel agent, tour operator     Package Tour                   Yes
## 4757              Friends, relatives      Independent                    No
## 4758              Friends, relatives      Independent                    No
## 4759                  Radio, TV, Web     Package Tour                   Yes
## 4760              Friends, relatives     Package Tour                    No
## 4761              Friends, relatives      Independent                    No
## 4762     Travel agent, tour operator     Package Tour                    No
## 4763                          Others      Independent                    No
## 4764                  Radio, TV, Web      Independent                    No
## 4765     Travel agent, tour operator     Package Tour                    No
## 4766                          Others      Independent                    No
## 4767              Friends, relatives      Independent                    No
## 4768 Newspaper, magazines, brochures      Independent                    No
## 4769              Friends, relatives      Independent                    No
## 4770     Travel agent, tour operator     Package Tour                   Yes
## 4771              Friends, relatives      Independent                    No
## 4772              Friends, relatives      Independent                    No
## 4773     Travel agent, tour operator      Independent                    No
## 4774              Friends, relatives      Independent                    No
## 4775     Travel agent, tour operator     Package Tour                    No
## 4776     Travel agent, tour operator      Independent                    No
## 4777     Travel agent, tour operator     Package Tour                   Yes
## 4778              Friends, relatives      Independent                    No
## 4780     Travel agent, tour operator     Package Tour                   Yes
## 4781     Travel agent, tour operator     Package Tour                   Yes
## 4782     Travel agent, tour operator     Package Tour                    No
## 4783     Travel agent, tour operator     Package Tour                    No
## 4784     Travel agent, tour operator     Package Tour                    No
## 4785              Friends, relatives      Independent                    No
## 4786                          Others      Independent                    No
## 4788     Travel agent, tour operator     Package Tour                   Yes
## 4789              Friends, relatives      Independent                    No
## 4790              Friends, relatives      Independent                    No
## 4791                  Radio, TV, Web      Independent                    No
## 4792     Travel agent, tour operator     Package Tour                   Yes
## 4793     Travel agent, tour operator     Package Tour                    No
## 4794              Friends, relatives      Independent                    No
## 4795     Travel agent, tour operator     Package Tour                   Yes
## 4796     Travel agent, tour operator     Package Tour                    No
## 4797     Travel agent, tour operator     Package Tour                    No
## 4798     Travel agent, tour operator     Package Tour                   Yes
## 4799     Travel agent, tour operator      Independent                    No
## 4800     Travel agent, tour operator     Package Tour                   Yes
## 4801              Friends, relatives      Independent                    No
## 4802 Newspaper, magazines, brochures     Package Tour                    No
## 4803     Travel agent, tour operator     Package Tour                   Yes
## 4804              Friends, relatives      Independent                    No
## 4806              Friends, relatives      Independent                    No
## 4808                  Radio, TV, Web     Package Tour                   Yes
## 4810     Travel agent, tour operator     Package Tour                   Yes
## 4811                      Trade fair      Independent                    No
## 4812     Travel agent, tour operator     Package Tour                    No
## 4813              Friends, relatives      Independent                    No
## 4815     Travel agent, tour operator     Package Tour                    No
## 4816              Friends, relatives     Package Tour                   Yes
## 4817     Travel agent, tour operator      Independent                    No
## 4818     Travel agent, tour operator     Package Tour                   Yes
## 4819              Friends, relatives      Independent                    No
## 4822     Travel agent, tour operator      Independent                    No
## 4823     Travel agent, tour operator     Package Tour                    No
## 4824              Friends, relatives      Independent                    No
## 4825 Newspaper, magazines, brochures     Package Tour                   Yes
## 4826     Travel agent, tour operator     Package Tour                   Yes
## 4827 Newspaper, magazines, brochures     Package Tour                   Yes
## 4828                          Others     Package Tour                   Yes
## 4829     Travel agent, tour operator     Package Tour                   Yes
## 4830                          Others      Independent                    No
## 4831     Travel agent, tour operator     Package Tour                   Yes
## 4832     Travel agent, tour operator     Package Tour                   Yes
## 4833     Travel agent, tour operator     Package Tour                    No
## 4834              Friends, relatives      Independent                    No
## 4835              Friends, relatives      Independent                    No
## 4836                  Radio, TV, Web      Independent                    No
## 4837     Travel agent, tour operator     Package Tour                    No
## 4838 Newspaper, magazines, brochures      Independent                    No
## 4839     Travel agent, tour operator      Independent                    No
## 4840     Travel agent, tour operator     Package Tour                    No
## 4842                  Radio, TV, Web      Independent                    No
## 4843     Travel agent, tour operator     Package Tour                   Yes
## 4844     Travel agent, tour operator      Independent                    No
## 4845              Friends, relatives      Independent                    No
## 4846     Travel agent, tour operator     Package Tour                   Yes
## 4847     Travel agent, tour operator     Package Tour                    No
## 4848     Travel agent, tour operator     Package Tour                   Yes
## 4849                  Radio, TV, Web      Independent                    No
## 4850     Travel agent, tour operator     Package Tour                   Yes
## 4851              Inflight magazines      Independent                    No
## 4852 Newspaper, magazines, brochures     Package Tour                   Yes
## 4853              Friends, relatives      Independent                    No
## 4854     Travel agent, tour operator     Package Tour                    No
## 4855     Travel agent, tour operator     Package Tour                   Yes
## 4856     Travel agent, tour operator     Package Tour                    No
## 4857     Travel agent, tour operator      Independent                    No
## 4858     Travel agent, tour operator      Independent                    No
## 4859     Travel agent, tour operator     Package Tour                    No
## 4860                      Trade fair      Independent                    No
## 4861     Travel agent, tour operator     Package Tour                   Yes
## 4862              Friends, relatives      Independent                    No
## 4863     Travel agent, tour operator     Package Tour                   Yes
## 4865              Friends, relatives      Independent                    No
## 4866              Friends, relatives      Independent                    No
## 4867                  Radio, TV, Web     Package Tour                    No
## 4868                  Radio, TV, Web     Package Tour                   Yes
## 4869              Friends, relatives      Independent                    No
## 4870              Friends, relatives      Independent                    No
## 4871                  Radio, TV, Web     Package Tour                   Yes
## 4872     Travel agent, tour operator     Package Tour                   Yes
## 4874 Newspaper, magazines, brochures      Independent                    No
## 4875 Newspaper, magazines, brochures      Independent                    No
## 4876 Newspaper, magazines, brochures     Package Tour                   Yes
## 4877     Travel agent, tour operator     Package Tour                   Yes
## 4878              Friends, relatives      Independent                    No
## 4879              Inflight magazines      Independent                    No
## 4880              Friends, relatives      Independent                    No
## 4881                  Radio, TV, Web      Independent                    No
## 4882     Travel agent, tour operator     Package Tour                   Yes
## 4883 Newspaper, magazines, brochures      Independent                    No
## 4884     Travel agent, tour operator     Package Tour                   Yes
## 4885     Travel agent, tour operator     Package Tour                    No
## 4886                  Radio, TV, Web     Package Tour                   Yes
## 4887              Friends, relatives      Independent                    No
## 4888     Travel agent, tour operator     Package Tour                   Yes
## 4889     Travel agent, tour operator     Package Tour                   Yes
## 4890     Travel agent, tour operator      Independent                   Yes
## 4891     Travel agent, tour operator     Package Tour                    No
## 4892     Travel agent, tour operator     Package Tour                    No
## 4893              Friends, relatives      Independent                    No
## 4894     Travel agent, tour operator     Package Tour                   Yes
## 4896     Travel agent, tour operator     Package Tour                   Yes
## 4897              Friends, relatives      Independent                    No
## 4898     Travel agent, tour operator     Package Tour                   Yes
## 4899              Friends, relatives     Package Tour                   Yes
## 4900     Travel agent, tour operator     Package Tour                    No
## 4901              Friends, relatives      Independent                    No
## 4902     Travel agent, tour operator     Package Tour                   Yes
## 4903              Friends, relatives      Independent                    No
## 4904              Friends, relatives     Package Tour                   Yes
## 4905              Friends, relatives      Independent                    No
## 4906     Travel agent, tour operator     Package Tour                    No
## 4907              Friends, relatives      Independent                    No
## 4908              Friends, relatives      Independent                    No
## 4909              Friends, relatives      Independent                    No
## 4910         Tanzania Mission Abroad      Independent                    No
## 4911     Travel agent, tour operator     Package Tour                    No
## 4912     Travel agent, tour operator     Package Tour                    No
## 4913              Friends, relatives      Independent                    No
## 4914     Travel agent, tour operator     Package Tour                    No
## 4916     Travel agent, tour operator     Package Tour                   Yes
## 4917              Friends, relatives      Independent                    No
## 4918     Travel agent, tour operator     Package Tour                   Yes
## 4919     Travel agent, tour operator      Independent                    No
## 4920                          Others      Independent                    No
## 4921              Friends, relatives      Independent                    No
## 4922     Travel agent, tour operator     Package Tour                   Yes
## 4923     Travel agent, tour operator     Package Tour                   Yes
## 4924     Travel agent, tour operator     Package Tour                   Yes
## 4925              Friends, relatives      Independent                    No
## 4926                  Radio, TV, Web      Independent                    No
## 4927     Travel agent, tour operator      Independent                    No
## 4928 Newspaper, magazines, brochures      Independent                    No
## 4929              Friends, relatives      Independent                    No
## 4930                  Radio, TV, Web     Package Tour                    No
## 4931 Newspaper, magazines, brochures     Package Tour                    No
## 4932         Tanzania Mission Abroad      Independent                    No
## 4933 Newspaper, magazines, brochures      Independent                    No
## 4934     Travel agent, tour operator     Package Tour                    No
## 4936              Friends, relatives      Independent                    No
## 4937     Travel agent, tour operator     Package Tour                    No
## 4938                          Others     Package Tour                   Yes
## 4939              Friends, relatives      Independent                    No
## 4940                          Others      Independent                    No
## 4941     Travel agent, tour operator     Package Tour                   Yes
## 4942              Friends, relatives     Package Tour                   Yes
## 4944     Travel agent, tour operator     Package Tour                    No
## 4945              Friends, relatives      Independent                    No
## 4946     Travel agent, tour operator     Package Tour                   Yes
## 4947 Newspaper, magazines, brochures      Independent                    No
## 4948              Friends, relatives     Package Tour                   Yes
## 4949     Travel agent, tour operator      Independent                    No
## 4950     Travel agent, tour operator     Package Tour                    No
## 4951     Travel agent, tour operator     Package Tour                   Yes
## 4952                          Others      Independent                    No
## 4953     Travel agent, tour operator     Package Tour                    No
## 4954              Friends, relatives     Package Tour                    No
## 4956              Friends, relatives      Independent                    No
## 4957     Travel agent, tour operator     Package Tour                   Yes
## 4959     Travel agent, tour operator     Package Tour                   Yes
## 4960              Friends, relatives      Independent                    No
## 4961              Friends, relatives      Independent                    No
## 4962     Travel agent, tour operator     Package Tour                   Yes
## 4963     Travel agent, tour operator     Package Tour                   Yes
## 4964                          Others      Independent                    No
## 4965              Friends, relatives      Independent                    No
## 4966     Travel agent, tour operator     Package Tour                   Yes
## 4967     Travel agent, tour operator     Package Tour                   Yes
## 4968     Travel agent, tour operator     Package Tour                   Yes
## 4969              Friends, relatives      Independent                    No
## 4970 Newspaper, magazines, brochures     Package Tour                   Yes
## 4972     Travel agent, tour operator     Package Tour                   Yes
## 4973              Friends, relatives      Independent                    No
## 4974              Friends, relatives     Package Tour                    No
## 4975                  Radio, TV, Web      Independent                    No
## 4976              Friends, relatives      Independent                    No
## 4977     Travel agent, tour operator     Package Tour                   Yes
## 4978              Friends, relatives      Independent                    No
## 4979 Newspaper, magazines, brochures      Independent                    No
## 4980     Travel agent, tour operator     Package Tour                    No
## 4981     Travel agent, tour operator     Package Tour                   Yes
## 4982     Travel agent, tour operator     Package Tour                   Yes
## 4983                          Others      Independent                    No
## 4984 Newspaper, magazines, brochures     Package Tour                   Yes
## 4985     Travel agent, tour operator     Package Tour                   Yes
## 4986     Travel agent, tour operator      Independent                    No
## 4987              Friends, relatives      Independent                    No
## 4988     Travel agent, tour operator     Package Tour                   Yes
## 4989     Travel agent, tour operator     Package Tour                   Yes
## 4990     Travel agent, tour operator     Package Tour                    No
## 4991                  Radio, TV, Web     Package Tour                    No
## 4993              Friends, relatives      Independent                    No
## 4994     Travel agent, tour operator     Package Tour                   Yes
## 4995     Travel agent, tour operator     Package Tour                    No
## 4996              Friends, relatives      Independent                    No
## 4997     Travel agent, tour operator     Package Tour                   Yes
## 4998     Travel agent, tour operator      Independent                    No
## 4999                          Others     Package Tour                    No
## 5000     Travel agent, tour operator     Package Tour                   Yes
## 5001              Friends, relatives      Independent                    No
## 5002              Friends, relatives      Independent                    No
## 5003              Friends, relatives     Package Tour                   Yes
## 5004 Newspaper, magazines, brochures      Independent                    No
## 5005              Friends, relatives      Independent                    No
## 5006 Newspaper, magazines, brochures      Independent                    No
## 5007              Friends, relatives      Independent                    No
## 5008                          Others      Independent                    No
## 5009     Travel agent, tour operator     Package Tour                   Yes
## 5010     Travel agent, tour operator     Package Tour                   Yes
## 5011     Travel agent, tour operator     Package Tour                   Yes
## 5012     Travel agent, tour operator     Package Tour                   Yes
## 5013     Travel agent, tour operator     Package Tour                    No
## 5014                          Others     Package Tour                    No
## 5017              Friends, relatives     Package Tour                   Yes
## 5018              Friends, relatives      Independent                    No
## 5019     Travel agent, tour operator     Package Tour                   Yes
## 5021 Newspaper, magazines, brochures      Independent                    No
## 5022              Friends, relatives      Independent                    No
## 5023              Friends, relatives      Independent                    No
## 5024                          Others      Independent                    No
## 5025              Friends, relatives      Independent                    No
## 5026              Friends, relatives      Independent                    No
## 5027              Friends, relatives     Package Tour                   Yes
## 5028     Travel agent, tour operator     Package Tour                   Yes
## 5029                  Radio, TV, Web      Independent                    No
## 5030                          Others      Independent                    No
## 5031     Travel agent, tour operator     Package Tour                   Yes
## 5032              Friends, relatives      Independent                    No
## 5033                  Radio, TV, Web      Independent                    No
## 5034              Friends, relatives      Independent                    No
## 5035     Travel agent, tour operator      Independent                    No
## 5036              Friends, relatives      Independent                    No
## 5037              Friends, relatives      Independent                    No
## 5038     Travel agent, tour operator      Independent                    No
## 5039              Friends, relatives     Package Tour                    No
## 5040 Newspaper, magazines, brochures     Package Tour                   Yes
## 5041     Travel agent, tour operator     Package Tour                   Yes
## 5042     Travel agent, tour operator     Package Tour                   Yes
## 5043     Travel agent, tour operator     Package Tour                   Yes
## 5044 Newspaper, magazines, brochures     Package Tour                   Yes
## 5045              Friends, relatives      Independent                    No
## 5046              Friends, relatives      Independent                    No
## 5047                  Radio, TV, Web     Package Tour                   Yes
## 5048                  Radio, TV, Web      Independent                    No
## 5049                          Others      Independent                    No
## 5050              Friends, relatives     Package Tour                   Yes
## 5051              Friends, relatives     Package Tour                    No
## 5052                          Others      Independent                    No
## 5053              Friends, relatives      Independent                    No
## 5054     Travel agent, tour operator     Package Tour                   Yes
## 5055                  Radio, TV, Web      Independent                    No
## 5056                      Trade fair     Package Tour                   Yes
## 5057     Travel agent, tour operator     Package Tour                   Yes
## 5058              Friends, relatives      Independent                    No
## 5059     Travel agent, tour operator     Package Tour                   Yes
## 5060                          Others      Independent                    No
## 5061     Travel agent, tour operator      Independent                    No
## 5062     Travel agent, tour operator     Package Tour                   Yes
## 5063     Travel agent, tour operator      Independent                    No
## 5064              Friends, relatives      Independent                    No
## 5065     Travel agent, tour operator     Package Tour                   Yes
## 5066              Friends, relatives      Independent                    No
## 5067     Travel agent, tour operator      Independent                    No
## 5068              Friends, relatives      Independent                    No
## 5070                          Others     Package Tour                    No
## 5071     Travel agent, tour operator     Package Tour                    No
## 5072                  Radio, TV, Web      Independent                    No
## 5073              Friends, relatives      Independent                    No
## 5074         Tanzania Mission Abroad      Independent                    No
## 5075              Friends, relatives      Independent                    No
## 5076              Friends, relatives      Independent                    No
## 5077     Travel agent, tour operator     Package Tour                    No
## 5078     Travel agent, tour operator     Package Tour                   Yes
## 5079 Newspaper, magazines, brochures      Independent                    No
## 5080     Travel agent, tour operator     Package Tour                   Yes
## 5081              Friends, relatives      Independent                    No
## 5082     Travel agent, tour operator     Package Tour                   Yes
## 5083                          Others     Package Tour                   Yes
## 5085     Travel agent, tour operator     Package Tour                    No
## 5086 Newspaper, magazines, brochures      Independent                    No
## 5087                      Trade fair      Independent                    No
## 5088     Travel agent, tour operator     Package Tour                    No
## 5089              Friends, relatives      Independent                    No
## 5090     Travel agent, tour operator     Package Tour                   Yes
## 5091                          Others      Independent                    No
## 5092     Travel agent, tour operator     Package Tour                   Yes
## 5093              Inflight magazines     Package Tour                   Yes
## 5094                          Others      Independent                    No
## 5095     Travel agent, tour operator     Package Tour                   Yes
## 5096     Travel agent, tour operator     Package Tour                   Yes
## 5097     Travel agent, tour operator      Independent                    No
## 5098     Travel agent, tour operator     Package Tour                   Yes
## 5099     Travel agent, tour operator     Package Tour                    No
## 5100     Travel agent, tour operator     Package Tour                   Yes
## 5101     Travel agent, tour operator      Independent                    No
##      package_accomodation package_food package_transport_tz package_sightseeing
## 1                      No           No                   No                  No
## 2                     Yes          Yes                  Yes                 Yes
## 3                     Yes           No                  Yes                  No
## 4                      No           No                   No                  No
## 5                      No           No                   No                  No
## 6                      No           No                   No                  No
## 7                     Yes          Yes                  Yes                  No
## 8                      No           No                   No                  No
## 9                     Yes          Yes                  Yes                 Yes
## 10                     No           No                   No                  No
## 11                     No           No                   No                  No
## 12                     No           No                   No                  No
## 13                    Yes          Yes                   No                  No
## 14                     No           No                   No                  No
## 16                     No           No                   No                  No
## 17                    Yes          Yes                  Yes                  No
## 18                     No           No                   No                  No
## 19                    Yes          Yes                  Yes                  No
## 20                     No           No                   No                  No
## 21                     No           No                   No                  No
## 22                     No           No                   No                  No
## 23                     No           No                   No                  No
## 24                    Yes          Yes                  Yes                 Yes
## 25                     No           No                   No                  No
## 26                     No           No                   No                  No
## 27                    Yes          Yes                   No                  No
## 28                     No           No                   No                  No
## 29                     No           No                   No                  No
## 30                     No           No                   No                  No
## 31                     No           No                   No                  No
## 32                    Yes          Yes                  Yes                 Yes
## 33                     No           No                   No                  No
## 34                     No           No                   No                  No
## 35                    Yes          Yes                  Yes                 Yes
## 36                    Yes          Yes                  Yes                 Yes
## 37                    Yes          Yes                  Yes                 Yes
## 38                    Yes          Yes                  Yes                 Yes
## 39                     No           No                   No                  No
## 40                    Yes          Yes                  Yes                 Yes
## 41                     No           No                   No                  No
## 43                    Yes          Yes                  Yes                  No
## 44                    Yes          Yes                  Yes                 Yes
## 45                    Yes          Yes                  Yes                 Yes
## 46                    Yes          Yes                  Yes                 Yes
## 47                    Yes          Yes                  Yes                 Yes
## 48                     No           No                   No                  No
## 49                     No           No                   No                  No
## 50                     No           No                   No                  No
## 51                    Yes          Yes                  Yes                  No
## 52                    Yes          Yes                  Yes                  No
## 53                    Yes          Yes                  Yes                  No
## 54                     No           No                   No                  No
## 55                    Yes          Yes                  Yes                 Yes
## 56                    Yes          Yes                  Yes                  No
## 57                    Yes          Yes                  Yes                 Yes
## 58                     No           No                   No                  No
## 59                    Yes          Yes                  Yes                  No
## 60                    Yes           No                   No                 Yes
## 61                    Yes          Yes                  Yes                 Yes
## 62                     No           No                   No                  No
## 63                    Yes          Yes                   No                  No
## 64                     No           No                   No                  No
## 65                    Yes          Yes                   No                  No
## 66                    Yes          Yes                  Yes                 Yes
## 67                     No           No                   No                  No
## 68                     No           No                   No                  No
## 69                    Yes          Yes                  Yes                  No
## 70                    Yes          Yes                  Yes                 Yes
## 71                     No           No                   No                  No
## 72                    Yes          Yes                   No                  No
## 74                     No           No                   No                  No
## 75                     No           No                   No                  No
## 76                     No           No                   No                  No
## 77                    Yes          Yes                  Yes                 Yes
## 78                     No           No                   No                  No
## 79                     No           No                   No                  No
## 80                     No           No                   No                  No
## 81                    Yes          Yes                  Yes                  No
## 82                    Yes          Yes                  Yes                 Yes
## 83                     No           No                   No                  No
## 84                    Yes           No                   No                  No
## 85                    Yes          Yes                  Yes                 Yes
## 86                     No          Yes                  Yes                 Yes
## 87                     No           No                   No                  No
## 88                    Yes          Yes                  Yes                  No
## 89                     No           No                   No                  No
## 90                    Yes          Yes                  Yes                 Yes
## 92                     No           No                   No                  No
## 93                     No           No                   No                  No
## 94                    Yes          Yes                  Yes                  No
## 96                    Yes          Yes                  Yes                 Yes
## 97                     No          Yes                  Yes                 Yes
## 98                     No           No                   No                  No
## 99                    Yes          Yes                  Yes                 Yes
## 100                   Yes          Yes                  Yes                  No
## 101                    No           No                   No                  No
## 102                    No           No                   No                  No
## 103                    No           No                   No                  No
## 104                    No           No                   No                  No
## 105                   Yes          Yes                  Yes                 Yes
## 106                   Yes          Yes                  Yes                 Yes
## 107                    No           No                   No                  No
## 109                    No           No                   No                  No
## 110                   Yes          Yes                   No                  No
## 112                    No           No                   No                  No
## 113                    No           No                   No                  No
## 114                   Yes          Yes                  Yes                  No
## 115                   Yes          Yes                  Yes                 Yes
## 116                   Yes          Yes                  Yes                 Yes
## 117                   Yes          Yes                  Yes                 Yes
## 118                    No           No                   No                  No
## 119                   Yes          Yes                  Yes                  No
## 120                    No           No                   No                  No
## 121                   Yes          Yes                  Yes                 Yes
## 122                    No           No                   No                  No
## 123                   Yes          Yes                  Yes                  No
## 124                    No           No                   No                  No
## 125                   Yes          Yes                  Yes                 Yes
## 126                   Yes          Yes                  Yes                  No
## 127                    No           No                   No                  No
## 128                   Yes          Yes                  Yes                 Yes
## 129                    No          Yes                   No                 Yes
## 130                   Yes          Yes                  Yes                 Yes
## 131                   Yes          Yes                  Yes                 Yes
## 132                    No           No                   No                  No
## 133                   Yes          Yes                  Yes                 Yes
## 134                    No           No                   No                  No
## 135                   Yes          Yes                  Yes                  No
## 136                   Yes          Yes                   No                  No
## 137                   Yes          Yes                  Yes                 Yes
## 138                    No           No                   No                  No
## 139                    No           No                   No                  No
## 140                    No           No                   No                  No
## 141                   Yes          Yes                   No                 Yes
## 142                   Yes          Yes                   No                  No
## 143                    No           No                   No                  No
## 144                   Yes          Yes                  Yes                  No
## 145                    No           No                   No                  No
## 146                   Yes          Yes                  Yes                  No
## 147                   Yes          Yes                  Yes                 Yes
## 148                   Yes          Yes                  Yes                 Yes
## 149                    No           No                   No                  No
## 150                    No           No                   No                  No
## 151                   Yes          Yes                  Yes                 Yes
## 152                    No           No                   No                  No
## 153                   Yes          Yes                  Yes                 Yes
## 155                   Yes          Yes                  Yes                  No
## 156                   Yes          Yes                  Yes                  No
## 157                    No           No                   No                  No
## 159                   Yes          Yes                  Yes                  No
## 160                   Yes          Yes                  Yes                  No
## 161                    No           No                   No                  No
## 162                   Yes          Yes                  Yes                 Yes
## 163                   Yes          Yes                  Yes                 Yes
## 164                    No           No                   No                  No
## 165                    No           No                   No                  No
## 166                   Yes           No                  Yes                 Yes
## 167                    No           No                   No                  No
## 168                   Yes          Yes                  Yes                 Yes
## 169                    No           No                   No                  No
## 170                    No          Yes                  Yes                 Yes
## 171                   Yes           No                  Yes                 Yes
## 172                    No           No                   No                  No
## 173                    No          Yes                   No                 Yes
## 174                   Yes          Yes                  Yes                  No
## 175                    No           No                   No                  No
## 176                   Yes          Yes                  Yes                 Yes
## 177                    No           No                   No                  No
## 178                   Yes          Yes                  Yes                 Yes
## 179                   Yes          Yes                  Yes                  No
## 180                    No           No                   No                  No
## 181                    No           No                   No                  No
## 182                   Yes          Yes                  Yes                 Yes
## 183                    No           No                   No                  No
## 185                   Yes          Yes                  Yes                 Yes
## 186                   Yes          Yes                  Yes                  No
## 187                    No           No                   No                  No
## 188                   Yes          Yes                  Yes                 Yes
## 189                    No           No                   No                  No
## 190                   Yes          Yes                  Yes                  No
## 191                   Yes          Yes                  Yes                 Yes
## 192                    No           No                   No                  No
## 193                   Yes          Yes                  Yes                 Yes
## 194                    No           No                   No                  No
## 195                    No           No                   No                  No
## 196                    No           No                   No                  No
## 197                   Yes          Yes                   No                  No
## 198                   Yes          Yes                  Yes                 Yes
## 199                    No           No                   No                  No
## 201                    No           No                   No                  No
## 202                    No           No                   No                  No
## 203                    No           No                   No                  No
## 204                   Yes          Yes                   No                  No
## 205                   Yes          Yes                  Yes                  No
## 206                    No           No                   No                  No
## 207                   Yes          Yes                  Yes                 Yes
## 208                    No           No                   No                  No
## 209                    No           No                   No                  No
## 210                   Yes          Yes                   No                  No
## 211                    No           No                   No                  No
## 212                   Yes          Yes                  Yes                 Yes
## 215                   Yes          Yes                  Yes                  No
## 216                   Yes          Yes                  Yes                  No
## 217                   Yes          Yes                  Yes                 Yes
## 218                    No           No                   No                  No
## 219                    No           No                   No                  No
## 220                   Yes          Yes                  Yes                 Yes
## 221                   Yes          Yes                  Yes                 Yes
## 222                   Yes          Yes                  Yes                 Yes
## 223                    No          Yes                  Yes                  No
## 224                   Yes          Yes                  Yes                 Yes
## 225                    No           No                   No                  No
## 226                    No           No                   No                  No
## 227                    No           No                   No                  No
## 228                   Yes          Yes                  Yes                 Yes
## 229                   Yes          Yes                  Yes                 Yes
## 231                   Yes          Yes                   No                  No
## 232                   Yes          Yes                  Yes                  No
## 233                    No           No                   No                  No
## 234                    No           No                   No                  No
## 235                   Yes          Yes                  Yes                 Yes
## 236                    No           No                   No                  No
## 238                    No           No                   No                  No
## 239                   Yes          Yes                   No                  No
## 240                   Yes          Yes                  Yes                  No
## 242                   Yes          Yes                  Yes                 Yes
## 244                    No           No                   No                  No
## 245                    No           No                   No                  No
## 246                    No           No                   No                  No
## 247                    No           No                   No                  No
## 248                   Yes          Yes                  Yes                  No
## 249                   Yes          Yes                  Yes                 Yes
## 250                    No           No                   No                  No
## 251                   Yes          Yes                  Yes                 Yes
## 252                   Yes          Yes                  Yes                 Yes
## 253                    No           No                   No                  No
## 254                   Yes          Yes                  Yes                 Yes
## 255                    No           No                   No                  No
## 256                   Yes          Yes                  Yes                 Yes
## 257                   Yes          Yes                  Yes                 Yes
## 258                   Yes          Yes                  Yes                 Yes
## 259                    No           No                   No                  No
## 260                   Yes          Yes                  Yes                 Yes
## 262                   Yes          Yes                  Yes                 Yes
## 263                    No           No                   No                  No
## 264                   Yes          Yes                   No                  No
## 265                   Yes          Yes                  Yes                 Yes
## 266                    No           No                   No                  No
## 267                   Yes          Yes                   No                  No
## 269                   Yes          Yes                   No                  No
## 270                    No           No                   No                  No
## 271                    No           No                   No                  No
## 272                    No           No                   No                  No
## 273                    No           No                   No                  No
## 274                   Yes          Yes                  Yes                  No
## 275                    No           No                   No                  No
## 277                   Yes          Yes                  Yes                 Yes
## 278                   Yes          Yes                   No                  No
## 279                   Yes          Yes                  Yes                  No
## 280                   Yes          Yes                   No                  No
## 282                    No           No                   No                  No
## 283                    No           No                   No                  No
## 284                    No           No                   No                  No
## 286                    No           No                   No                  No
## 287                   Yes          Yes                  Yes                 Yes
## 288                    No           No                   No                  No
## 289                    No           No                   No                  No
## 290                   Yes          Yes                   No                  No
## 291                   Yes          Yes                  Yes                  No
## 292                    No           No                   No                  No
## 293                    No           No                   No                  No
## 294                   Yes          Yes                   No                  No
## 295                    No           No                   No                  No
## 296                   Yes          Yes                  Yes                 Yes
## 297                    No           No                   No                  No
## 298                   Yes          Yes                  Yes                 Yes
## 299                    No           No                   No                  No
## 300                    No           No                   No                  No
## 301                    No           No                   No                  No
## 302                    No           No                   No                  No
## 303                   Yes          Yes                  Yes                 Yes
## 304                   Yes          Yes                   No                  No
## 305                    No           No                   No                  No
## 306                    No           No                   No                  No
## 307                    No           No                   No                  No
## 309                    No           No                   No                  No
## 310                   Yes          Yes                  Yes                 Yes
## 311                    No           No                   No                  No
## 312                    No           No                   No                  No
## 313                   Yes          Yes                  Yes                 Yes
## 314                    No           No                   No                  No
## 315                    No           No                   No                  No
## 316                   Yes          Yes                  Yes                 Yes
## 317                   Yes          Yes                   No                  No
## 318                   Yes          Yes                  Yes                 Yes
## 319                    No           No                   No                  No
## 321                   Yes           No                  Yes                 Yes
## 322                    No           No                   No                  No
## 323                   Yes          Yes                  Yes                 Yes
## 324                    No           No                   No                  No
## 325                    No           No                   No                  No
## 326                    No           No                   No                  No
## 327                   Yes          Yes                  Yes                 Yes
## 328                    No           No                   No                  No
## 330                   Yes           No                  Yes                 Yes
## 332                    No           No                   No                  No
## 333                    No           No                   No                  No
## 334                   Yes          Yes                   No                  No
## 335                   Yes          Yes                  Yes                  No
## 336                    No           No                   No                  No
## 337                   Yes          Yes                  Yes                  No
## 338                   Yes          Yes                  Yes                 Yes
## 339                    No           No                   No                  No
## 340                    No           No                   No                  No
## 341                    No           No                   No                  No
## 342                    No           No                   No                  No
## 343                   Yes          Yes                  Yes                 Yes
## 344                    No           No                   No                  No
## 345                   Yes          Yes                  Yes                 Yes
## 346                   Yes          Yes                  Yes                 Yes
## 347                   Yes          Yes                  Yes                  No
## 348                   Yes          Yes                   No                 Yes
## 349                    No           No                   No                  No
## 350                   Yes          Yes                  Yes                 Yes
## 351                    No           No                   No                  No
## 352                   Yes          Yes                   No                  No
## 353                    No           No                   No                  No
## 354                   Yes          Yes                  Yes                 Yes
## 355                    No           No                   No                  No
## 356                   Yes          Yes                   No                  No
## 357                    No           No                   No                  No
## 358                    No           No                   No                  No
## 359                   Yes          Yes                  Yes                  No
## 360                   Yes           No                  Yes                 Yes
## 361                   Yes          Yes                  Yes                  No
## 362                    No           No                   No                  No
## 363                   Yes          Yes                  Yes                 Yes
## 364                    No           No                   No                  No
## 365                   Yes           No                   No                  No
## 366                    No           No                   No                  No
## 367                    No           No                   No                  No
## 368                    No           No                   No                  No
## 369                   Yes          Yes                  Yes                 Yes
## 370                   Yes          Yes                  Yes                 Yes
## 371                   Yes          Yes                  Yes                 Yes
## 372                   Yes           No                  Yes                  No
## 373                    No           No                   No                  No
## 374                    No           No                   No                  No
## 375                   Yes          Yes                  Yes                 Yes
## 376                   Yes          Yes                  Yes                 Yes
## 377                   Yes          Yes                  Yes                  No
## 378                    No           No                   No                  No
## 379                    No           No                   No                  No
## 380                    No           No                   No                  No
## 381                   Yes          Yes                   No                  No
## 382                    No           No                   No                  No
## 383                    No           No                   No                  No
## 384                   Yes          Yes                   No                 Yes
## 385                    No           No                   No                  No
## 386                   Yes          Yes                  Yes                 Yes
## 388                    No           No                   No                  No
## 390                    No           No                   No                  No
## 391                   Yes          Yes                  Yes                  No
## 392                   Yes          Yes                  Yes                  No
## 393                    No           No                   No                  No
## 394                   Yes          Yes                  Yes                 Yes
## 395                    No           No                   No                  No
## 396                   Yes          Yes                  Yes                 Yes
## 397                    No           No                   No                  No
## 398                   Yes          Yes                  Yes                 Yes
## 399                    No           No                   No                  No
## 400                    No           No                   No                  No
## 401                   Yes          Yes                  Yes                 Yes
## 402                   Yes          Yes                  Yes                 Yes
## 403                   Yes          Yes                  Yes                 Yes
## 404                   Yes          Yes                  Yes                 Yes
## 405                    No           No                   No                  No
## 406                   Yes          Yes                  Yes                 Yes
## 407                   Yes          Yes                  Yes                  No
## 408                    No           No                   No                  No
## 409                    No           No                   No                  No
## 410                   Yes          Yes                  Yes                  No
## 412                    No           No                   No                  No
## 413                    No           No                   No                  No
## 414                   Yes          Yes                  Yes                 Yes
## 415                   Yes          Yes                  Yes                 Yes
## 417                    No          Yes                  Yes                  No
## 419                    No           No                   No                  No
## 420                   Yes           No                  Yes                  No
## 421                    No           No                   No                  No
## 422                   Yes          Yes                  Yes                 Yes
## 423                    No           No                   No                  No
## 424                   Yes          Yes                  Yes                 Yes
## 425                    No           No                   No                  No
## 426                   Yes          Yes                  Yes                 Yes
## 427                   Yes          Yes                   No                 Yes
## 428                   Yes          Yes                  Yes                  No
## 429                    No           No                   No                  No
## 430                   Yes          Yes                  Yes                 Yes
## 431                    No           No                   No                  No
## 432                    No           No                   No                  No
## 433                    No           No                   No                  No
## 434                   Yes          Yes                  Yes                 Yes
## 435                    No           No                   No                  No
## 436                    No           No                   No                  No
## 437                    No           No                   No                  No
## 438                   Yes          Yes                  Yes                 Yes
## 439                   Yes          Yes                   No                  No
## 440                   Yes           No                  Yes                 Yes
## 441                   Yes          Yes                  Yes                  No
## 442                    No           No                   No                  No
## 443                   Yes          Yes                  Yes                 Yes
## 444                   Yes          Yes                  Yes                 Yes
## 446                    No           No                   No                  No
## 448                   Yes          Yes                  Yes                 Yes
## 449                   Yes          Yes                   No                  No
## 450                    No           No                   No                  No
## 451                    No           No                   No                  No
## 452                   Yes          Yes                  Yes                  No
## 453                   Yes          Yes                  Yes                  No
## 454                    No           No                   No                  No
## 456                    No           No                   No                  No
## 457                    No           No                   No                  No
## 458                   Yes          Yes                  Yes                 Yes
## 459                    No           No                   No                  No
## 460                    No          Yes                   No                 Yes
## 461                   Yes           No                  Yes                  No
## 462                    No           No                   No                  No
## 463                    No           No                   No                  No
## 464                    No           No                   No                  No
## 465                    No           No                   No                  No
## 466                   Yes          Yes                  Yes                  No
## 467                    No           No                   No                  No
## 468                   Yes           No                   No                 Yes
## 469                   Yes          Yes                  Yes                 Yes
## 470                    No           No                   No                  No
## 471                   Yes          Yes                  Yes                 Yes
## 472                    No           No                   No                  No
## 473                    No           No                   No                  No
## 474                   Yes          Yes                  Yes                 Yes
## 475                   Yes          Yes                  Yes                 Yes
## 476                   Yes          Yes                  Yes                 Yes
## 477                    No           No                   No                  No
## 478                    No           No                   No                  No
## 479                   Yes          Yes                  Yes                 Yes
## 480                    No           No                   No                  No
## 481                    No           No                   No                  No
## 482                   Yes          Yes                  Yes                 Yes
## 483                   Yes          Yes                   No                  No
## 484                   Yes          Yes                  Yes                  No
## 485                    No           No                   No                  No
## 486                   Yes          Yes                  Yes                 Yes
## 487                    No           No                   No                  No
## 488                    No           No                   No                  No
## 489                   Yes          Yes                  Yes                 Yes
## 490                    No           No                   No                  No
## 491                   Yes          Yes                  Yes                 Yes
## 492                   Yes          Yes                   No                 Yes
## 493                   Yes          Yes                  Yes                 Yes
## 494                   Yes          Yes                   No                  No
## 495                    No           No                   No                  No
## 496                    No           No                   No                  No
## 497                    No          Yes                  Yes                  No
## 498                    No           No                   No                  No
## 499                   Yes           No                  Yes                  No
## 500                    No           No                   No                  No
## 501                    No           No                   No                  No
## 502                    No           No                   No                  No
## 503                   Yes           No                  Yes                 Yes
## 504                   Yes          Yes                  Yes                  No
## 505                    No           No                   No                  No
## 506                    No           No                   No                  No
## 507                    No           No                   No                  No
## 508                    No           No                   No                  No
## 510                    No           No                   No                  No
## 511                    No           No                   No                  No
## 512                   Yes          Yes                  Yes                  No
## 513                    No           No                   No                  No
## 514                   Yes          Yes                  Yes                  No
## 515                   Yes          Yes                  Yes                 Yes
## 516                   Yes          Yes                  Yes                 Yes
## 517                   Yes          Yes                  Yes                  No
## 518                   Yes          Yes                  Yes                 Yes
## 519                    No           No                   No                  No
## 520                    No           No                   No                  No
## 521                   Yes          Yes                  Yes                 Yes
## 522                    No           No                   No                  No
## 523                    No           No                   No                  No
## 524                    No           No                   No                  No
## 525                   Yes          Yes                  Yes                 Yes
## 526                   Yes          Yes                   No                  No
## 527                   Yes           No                  Yes                  No
## 528                   Yes          Yes                  Yes                 Yes
## 529                    No           No                   No                  No
## 530                    No           No                   No                  No
## 531                   Yes           No                  Yes                 Yes
## 532                   Yes          Yes                  Yes                 Yes
## 533                    No           No                   No                  No
## 534                   Yes          Yes                  Yes                 Yes
## 535                   Yes          Yes                  Yes                 Yes
## 536                    No           No                   No                  No
## 537                    No           No                   No                  No
## 538                    No           No                   No                  No
## 539                   Yes          Yes                  Yes                 Yes
## 540                    No           No                   No                  No
## 541                   Yes           No                   No                 Yes
## 542                   Yes          Yes                  Yes                 Yes
## 544                   Yes          Yes                  Yes                 Yes
## 545                    No           No                   No                  No
## 546                    No           No                   No                  No
## 547                   Yes           No                   No                 Yes
## 548                   Yes          Yes                  Yes                 Yes
## 549                   Yes          Yes                  Yes                 Yes
## 550                    No           No                   No                  No
## 551                   Yes          Yes                  Yes                 Yes
## 552                    No           No                   No                  No
## 553                    No           No                   No                  No
## 554                   Yes          Yes                  Yes                 Yes
## 555                    No           No                   No                  No
## 556                    No           No                   No                  No
## 557                    No           No                   No                  No
## 558                    No           No                   No                  No
## 559                   Yes          Yes                  Yes                 Yes
## 560                   Yes          Yes                  Yes                  No
## 561                    No           No                   No                  No
## 562                   Yes          Yes                  Yes                 Yes
## 563                   Yes           No                  Yes                  No
## 564                   Yes           No                  Yes                 Yes
## 565                    No           No                   No                  No
## 566                   Yes          Yes                   No                 Yes
## 567                   Yes          Yes                  Yes                 Yes
## 568                    No           No                   No                  No
## 570                   Yes          Yes                  Yes                  No
## 571                   Yes          Yes                  Yes                  No
## 572                   Yes          Yes                  Yes                  No
## 573                    No           No                   No                  No
## 574                   Yes          Yes                  Yes                 Yes
## 575                   Yes          Yes                  Yes                  No
## 576                    No           No                   No                  No
## 577                    No           No                   No                  No
## 578                    No           No                   No                  No
## 579                   Yes          Yes                  Yes                 Yes
## 580                    No           No                   No                  No
## 581                   Yes          Yes                   No                  No
## 582                   Yes          Yes                  Yes                 Yes
## 583                    No           No                   No                  No
## 584                   Yes          Yes                  Yes                  No
## 585                   Yes          Yes                   No                  No
## 586                    No           No                   No                  No
## 587                    No           No                   No                  No
## 588                    No           No                   No                  No
## 589                   Yes          Yes                  Yes                  No
## 590                    No           No                   No                  No
## 591                   Yes          Yes                  Yes                 Yes
## 592                   Yes          Yes                  Yes                 Yes
## 593                   Yes          Yes                  Yes                 Yes
## 594                   Yes          Yes                  Yes                 Yes
## 595                   Yes          Yes                   No                 Yes
## 596                    No           No                   No                  No
## 597                    No           No                   No                  No
## 598                    No           No                   No                  No
## 600                   Yes          Yes                  Yes                 Yes
## 601                    No           No                   No                  No
## 602                    No           No                   No                  No
## 603                    No           No                   No                  No
## 604                   Yes          Yes                   No                  No
## 605                   Yes          Yes                  Yes                 Yes
## 606                   Yes          Yes                   No                  No
## 607                   Yes          Yes                  Yes                 Yes
## 608                   Yes          Yes                  Yes                 Yes
## 609                   Yes           No                  Yes                  No
## 610                   Yes          Yes                  Yes                 Yes
## 612                    No           No                   No                  No
## 613                   Yes           No                  Yes                  No
## 614                    No           No                   No                  No
## 615                   Yes           No                  Yes                 Yes
## 616                    No           No                   No                  No
## 617                    No           No                   No                  No
## 618                   Yes          Yes                  Yes                  No
## 620                    No           No                   No                  No
## 622                   Yes          Yes                  Yes                  No
## 623                   Yes          Yes                  Yes                 Yes
## 624                   Yes          Yes                  Yes                 Yes
## 625                   Yes          Yes                  Yes                  No
## 626                    No           No                   No                  No
## 627                    No           No                   No                  No
## 628                    No           No                   No                  No
## 629                    No           No                   No                 Yes
## 630                    No           No                   No                  No
## 631                   Yes          Yes                  Yes                 Yes
## 632                   Yes          Yes                  Yes                 Yes
## 633                    No           No                   No                  No
## 634                   Yes          Yes                  Yes                  No
## 635                   Yes          Yes                  Yes                 Yes
## 636                    No           No                   No                  No
## 637                    No           No                   No                  No
## 638                   Yes          Yes                  Yes                  No
## 639                   Yes          Yes                  Yes                 Yes
## 640                    No           No                   No                  No
## 641                   Yes          Yes                  Yes                 Yes
## 642                   Yes          Yes                  Yes                 Yes
## 643                    No           No                   No                  No
## 644                   Yes          Yes                  Yes                 Yes
## 645                    No           No                   No                  No
## 646                    No           No                   No                  No
## 647                    No           No                   No                  No
## 648                    No           No                   No                  No
## 649                   Yes          Yes                  Yes                 Yes
## 650                    No           No                   No                  No
## 651                    No           No                   No                  No
## 652                    No           No                   No                  No
## 653                   Yes          Yes                  Yes                 Yes
## 655                   Yes          Yes                  Yes                 Yes
## 657                    No          Yes                  Yes                 Yes
## 658                   Yes          Yes                  Yes                 Yes
## 659                    No           No                   No                  No
## 660                    No           No                   No                  No
## 661                   Yes          Yes                  Yes                 Yes
## 662                    No           No                   No                  No
## 663                   Yes          Yes                  Yes                  No
## 664                    No           No                   No                  No
## 665                    No           No                   No                  No
## 666                   Yes          Yes                  Yes                 Yes
## 667                   Yes          Yes                  Yes                 Yes
## 668                   Yes           No                  Yes                  No
## 669                   Yes          Yes                  Yes                 Yes
## 670                    No           No                   No                  No
## 671                    No           No                   No                  No
## 672                    No           No                   No                  No
## 673                    No           No                   No                  No
## 674                   Yes          Yes                   No                  No
## 675                   Yes           No                  Yes                  No
## 676                   Yes          Yes                  Yes                  No
## 677                    No           No                   No                  No
## 679                   Yes          Yes                  Yes                 Yes
## 680                    No           No                   No                  No
## 681                    No           No                   No                  No
## 682                   Yes          Yes                  Yes                  No
## 683                   Yes          Yes                  Yes                  No
## 684                   Yes          Yes                  Yes                 Yes
## 685                    No           No                   No                  No
## 687                   Yes          Yes                  Yes                  No
## 688                    No           No                   No                  No
## 689                    No           No                   No                  No
## 690                    No           No                   No                  No
## 691                    No           No                   No                  No
## 692                    No           No                   No                  No
## 693                    No           No                   No                  No
## 694                    No           No                   No                  No
## 696                    No           No                   No                  No
## 698                   Yes          Yes                  Yes                  No
## 699                   Yes          Yes                  Yes                  No
## 700                   Yes          Yes                  Yes                 Yes
## 701                    No           No                   No                  No
## 702                   Yes          Yes                  Yes                  No
## 703                   Yes          Yes                  Yes                 Yes
## 704                    No           No                   No                  No
## 706                    No           No                   No                  No
## 707                   Yes          Yes                  Yes                  No
## 708                   Yes          Yes                  Yes                 Yes
## 709                    No           No                   No                  No
## 710                   Yes          Yes                  Yes                  No
## 711                   Yes          Yes                  Yes                 Yes
## 712                    No           No                   No                  No
## 713                    No           No                   No                  No
## 714                    No           No                   No                  No
## 715                    No           No                   No                  No
## 716                    No           No                   No                  No
## 718                    No           No                   No                  No
## 719                    No           No                   No                  No
## 720                    No           No                   No                  No
## 721                   Yes          Yes                   No                  No
## 722                    No           No                   No                  No
## 723                   Yes          Yes                  Yes                 Yes
## 724                   Yes          Yes                  Yes                  No
## 725                   Yes          Yes                   No                 Yes
## 727                   Yes           No                  Yes                 Yes
## 728                   Yes          Yes                  Yes                 Yes
## 729                    No           No                   No                  No
## 730                   Yes          Yes                  Yes                  No
## 731                    No           No                   No                  No
## 732                    No           No                   No                  No
## 733                   Yes          Yes                  Yes                 Yes
## 734                   Yes          Yes                  Yes                  No
## 735                   Yes          Yes                   No                  No
## 736                    No           No                   No                  No
## 737                   Yes          Yes                  Yes                 Yes
## 738                    No           No                   No                  No
## 739                    No           No                   No                  No
## 740                    No           No                   No                  No
## 741                    No           No                   No                  No
## 742                    No           No                   No                  No
## 743                   Yes          Yes                  Yes                 Yes
## 744                    No           No                   No                  No
## 745                   Yes          Yes                  Yes                 Yes
## 746                   Yes          Yes                  Yes                  No
## 747                    No           No                   No                  No
## 748                   Yes          Yes                   No                  No
## 749                   Yes          Yes                  Yes                 Yes
## 750                    No           No                   No                  No
## 752                    No           No                   No                  No
## 753                    No           No                   No                  No
## 754                   Yes          Yes                  Yes                 Yes
## 755                    No           No                   No                  No
## 756                    No           No                   No                  No
## 758                   Yes          Yes                  Yes                 Yes
## 759                   Yes          Yes                  Yes                  No
## 761                   Yes           No                   No                 Yes
## 762                   Yes          Yes                  Yes                 Yes
## 763                    No           No                   No                  No
## 764                    No           No                   No                  No
## 765                    No           No                   No                  No
## 766                   Yes          Yes                  Yes                 Yes
## 767                   Yes           No                  Yes                 Yes
## 769                   Yes          Yes                  Yes                  No
## 770                    No           No                   No                  No
## 771                    No           No                   No                  No
## 772                    No           No                   No                  No
## 773                   Yes          Yes                  Yes                 Yes
## 774                    No           No                   No                  No
## 775                   Yes          Yes                  Yes                 Yes
## 776                   Yes          Yes                  Yes                 Yes
## 777                   Yes          Yes                  Yes                 Yes
## 778                   Yes          Yes                  Yes                  No
## 779                    No           No                   No                  No
## 780                   Yes          Yes                  Yes                  No
## 781                    No           No                   No                  No
## 782                   Yes           No                  Yes                 Yes
## 783                    No           No                   No                  No
## 784                    No           No                   No                  No
## 785                    No           No                   No                  No
## 786                   Yes          Yes                  Yes                  No
## 787                    No           No                   No                  No
## 788                   Yes          Yes                  Yes                 Yes
## 789                   Yes          Yes                  Yes                 Yes
## 790                   Yes          Yes                  Yes                  No
## 791                   Yes          Yes                   No                  No
## 792                    No           No                   No                  No
## 793                   Yes          Yes                  Yes                  No
## 795                   Yes          Yes                  Yes                 Yes
## 796                   Yes           No                  Yes                 Yes
## 797                   Yes          Yes                  Yes                 Yes
## 798                    No           No                   No                  No
## 799                    No           No                   No                  No
## 800                   Yes           No                  Yes                 Yes
## 801                    No           No                   No                  No
## 802                   Yes          Yes                  Yes                  No
## 803                    No           No                   No                  No
## 804                   Yes          Yes                  Yes                 Yes
## 805                   Yes          Yes                  Yes                 Yes
## 806                   Yes          Yes                  Yes                 Yes
## 808                   Yes          Yes                  Yes                 Yes
## 809                    No           No                   No                  No
## 810                    No           No                   No                  No
## 811                    No           No                   No                  No
## 812                    No           No                   No                  No
## 813                    No           No                   No                  No
## 814                    No           No                   No                  No
## 815                   Yes          Yes                  Yes                  No
## 816                    No           No                   No                  No
## 817                    No           No                   No                  No
## 818                   Yes          Yes                  Yes                  No
## 820                    No           No                   No                  No
## 821                   Yes          Yes                   No                  No
## 822                    No           No                   No                  No
## 823                    No           No                   No                  No
## 824                    No           No                   No                  No
## 825                    No           No                   No                  No
## 826                   Yes          Yes                  Yes                  No
## 827                    No           No                   No                  No
## 828                    No           No                   No                  No
## 829                   Yes          Yes                  Yes                  No
## 830                   Yes          Yes                  Yes                  No
## 831                    No           No                   No                  No
## 832                    No           No                   No                  No
## 833                   Yes          Yes                  Yes                  No
## 834                    No           No                   No                  No
## 835                    No           No                   No                  No
## 836                    No           No                   No                  No
## 837                    No           No                   No                  No
## 838                    No           No                   No                  No
## 839                   Yes          Yes                  Yes                 Yes
## 840                   Yes          Yes                  Yes                  No
## 841                    No           No                   No                  No
## 842                   Yes          Yes                  Yes                 Yes
## 843                   Yes          Yes                  Yes                  No
## 844                    No           No                   No                  No
## 845                   Yes          Yes                  Yes                  No
## 846                    No           No                   No                  No
## 847                    No           No                   No                  No
## 848                    No           No                   No                  No
## 849                   Yes          Yes                  Yes                 Yes
## 851                   Yes           No                  Yes                 Yes
## 852                    No           No                   No                  No
## 853                   Yes          Yes                   No                  No
## 854                    No           No                   No                  No
## 855                    No           No                   No                  No
## 856                    No           No                   No                  No
## 857                    No           No                   No                  No
## 858                   Yes          Yes                   No                 Yes
## 859                    No           No                   No                  No
## 860                    No           No                   No                  No
## 861                   Yes          Yes                  Yes                 Yes
## 862                   Yes          Yes                  Yes                 Yes
## 863                   Yes          Yes                  Yes                 Yes
## 864                    No           No                   No                  No
## 865                   Yes          Yes                  Yes                 Yes
## 866                   Yes          Yes                   No                 Yes
## 867                   Yes           No                  Yes                  No
## 869                    No           No                   No                  No
## 870                   Yes          Yes                  Yes                  No
## 871                   Yes          Yes                   No                  No
## 872                    No           No                   No                  No
## 873                    No           No                   No                  No
## 874                   Yes          Yes                  Yes                 Yes
## 875                   Yes           No                  Yes                 Yes
## 876                   Yes          Yes                  Yes                 Yes
## 877                    No           No                   No                  No
## 878                    No           No                   No                  No
## 880                   Yes          Yes                  Yes                 Yes
## 881                   Yes          Yes                  Yes                 Yes
## 882                   Yes           No                  Yes                 Yes
## 883                    No           No                   No                  No
## 884                    No           No                   No                  No
## 885                    No           No                   No                  No
## 886                    No           No                   No                  No
## 887                    No           No                   No                  No
## 888                   Yes          Yes                  Yes                 Yes
## 889                   Yes          Yes                  Yes                 Yes
## 891                    No           No                   No                  No
## 892                    No           No                   No                  No
## 893                    No           No                   No                  No
## 894                    No           No                   No                  No
## 895                   Yes          Yes                   No                  No
## 896                   Yes          Yes                  Yes                  No
## 898                    No           No                   No                  No
## 900                    No           No                   No                  No
## 901                    No           No                   No                  No
## 904                   Yes          Yes                  Yes                 Yes
## 905                    No           No                   No                  No
## 906                   Yes          Yes                   No                  No
## 907                   Yes          Yes                  Yes                  No
## 908                   Yes          Yes                  Yes                 Yes
## 909                    No           No                   No                  No
## 910                    No           No                   No                  No
## 911                   Yes          Yes                  Yes                  No
## 913                    No           No                   No                  No
## 914                    No           No                   No                  No
## 915                    No           No                   No                  No
## 916                   Yes          Yes                  Yes                 Yes
## 917                    No           No                   No                  No
## 918                   Yes          Yes                   No                  No
## 919                   Yes          Yes                  Yes                 Yes
## 920                    No           No                   No                  No
## 921                    No           No                   No                  No
## 922                    No           No                   No                  No
## 923                   Yes           No                  Yes                  No
## 924                    No           No                   No                  No
## 925                    No           No                   No                  No
## 926                    No           No                   No                  No
## 927                    No           No                   No                  No
## 928                    No           No                   No                  No
## 929                   Yes          Yes                  Yes                 Yes
## 930                   Yes           No                  Yes                  No
## 931                   Yes          Yes                  Yes                 Yes
## 932                    No           No                   No                  No
## 933                   Yes          Yes                   No                  No
## 934                   Yes          Yes                  Yes                 Yes
## 935                    No           No                   No                  No
## 937                   Yes          Yes                  Yes                  No
## 938                    No           No                   No                  No
## 939                   Yes          Yes                  Yes                 Yes
## 940                   Yes          Yes                  Yes                  No
## 941                   Yes          Yes                  Yes                 Yes
## 942                    No           No                   No                  No
## 943                    No           No                   No                  No
## 944                   Yes          Yes                  Yes                 Yes
## 945                   Yes          Yes                   No                 Yes
## 946                    No           No                   No                  No
## 947                   Yes          Yes                  Yes                 Yes
## 948                    No           No                   No                  No
## 949                    No           No                   No                  No
## 950                    No           No                   No                  No
## 951                   Yes          Yes                  Yes                 Yes
## 952                    No           No                   No                  No
## 953                    No           No                   No                  No
## 955                   Yes          Yes                  Yes                 Yes
## 956                    No           No                   No                  No
## 957                   Yes          Yes                  Yes                 Yes
## 958                   Yes          Yes                  Yes                  No
## 959                    No           No                   No                  No
## 960                    No           No                   No                  No
## 961                    No           No                   No                  No
## 962                   Yes          Yes                  Yes                 Yes
## 963                   Yes          Yes                  Yes                  No
## 964                   Yes          Yes                  Yes                 Yes
## 966                    No           No                   No                  No
## 967                   Yes          Yes                  Yes                  No
## 968                    No           No                   No                  No
## 971                   Yes          Yes                  Yes                 Yes
## 972                   Yes          Yes                  Yes                 Yes
## 973                   Yes          Yes                  Yes                  No
## 975                    No           No                   No                  No
## 976                   Yes          Yes                  Yes                 Yes
## 977                    No           No                   No                  No
## 978                    No           No                   No                  No
## 979                    No           No                   No                  No
## 980                   Yes          Yes                  Yes                 Yes
## 981                    No           No                   No                  No
## 982                   Yes          Yes                  Yes                 Yes
## 983                   Yes          Yes                  Yes                  No
## 984                    No           No                   No                  No
## 985                    No           No                   No                  No
## 986                    No           No                   No                  No
## 987                   Yes          Yes                  Yes                 Yes
## 988                   Yes          Yes                  Yes                 Yes
## 989                    No           No                   No                  No
## 991                   Yes          Yes                  Yes                  No
## 992                    No           No                   No                  No
## 993                    No           No                   No                  No
## 994                    No           No                   No                  No
## 995                    No           No                   No                  No
## 996                   Yes          Yes                  Yes                 Yes
## 997                    No           No                   No                  No
## 998                    No           No                   No                  No
## 999                    No           No                   No                  No
## 1000                   No           No                   No                  No
## 1001                  Yes          Yes                  Yes                 Yes
## 1002                  Yes          Yes                   No                 Yes
## 1003                  Yes          Yes                  Yes                 Yes
## 1005                  Yes          Yes                   No                 Yes
## 1006                   No           No                   No                  No
## 1007                   No          Yes                  Yes                 Yes
## 1008                   No           No                   No                  No
## 1009                   No           No                   No                  No
## 1010                  Yes           No                  Yes                  No
## 1011                  Yes          Yes                  Yes                  No
## 1012                  Yes          Yes                  Yes                 Yes
## 1013                  Yes           No                  Yes                 Yes
## 1014                  Yes           No                  Yes                  No
## 1015                   No           No                   No                  No
## 1016                   No           No                   No                  No
## 1017                  Yes           No                  Yes                 Yes
## 1018                   No           No                   No                  No
## 1019                   No           No                   No                  No
## 1020                   No           No                   No                  No
## 1021                   No           No                   No                  No
## 1022                  Yes          Yes                   No                  No
## 1023                   No           No                   No                  No
## 1024                  Yes          Yes                  Yes                  No
## 1025                   No           No                   No                 Yes
## 1026                   No           No                   No                  No
## 1027                   No           No                   No                  No
## 1028                   No           No                   No                  No
## 1029                   No           No                   No                  No
## 1030                  Yes          Yes                  Yes                 Yes
## 1031                  Yes          Yes                  Yes                 Yes
## 1032                  Yes          Yes                  Yes                 Yes
## 1033                   No           No                   No                  No
## 1034                   No           No                   No                  No
## 1035                  Yes          Yes                  Yes                 Yes
## 1036                  Yes          Yes                  Yes                  No
## 1037                   No           No                   No                  No
## 1038                  Yes          Yes                  Yes                 Yes
## 1039                   No           No                   No                  No
## 1041                   No           No                   No                  No
## 1042                   No           No                   No                  No
## 1043                   No           No                   No                  No
## 1044                   No           No                   No                  No
## 1045                   No           No                   No                  No
## 1046                  Yes          Yes                   No                 Yes
## 1047                  Yes          Yes                  Yes                 Yes
## 1048                   No           No                   No                  No
## 1049                  Yes           No                  Yes                 Yes
## 1050                   No           No                   No                  No
## 1051                  Yes          Yes                   No                 Yes
## 1052                  Yes          Yes                  Yes                  No
## 1053                  Yes          Yes                  Yes                  No
## 1055                   No           No                   No                  No
## 1056                  Yes          Yes                  Yes                 Yes
## 1057                   No           No                   No                  No
## 1058                   No           No                   No                  No
## 1059                  Yes          Yes                  Yes                 Yes
## 1060                   No           No                   No                  No
## 1061                  Yes           No                  Yes                 Yes
## 1062                  Yes          Yes                  Yes                 Yes
## 1063                  Yes          Yes                  Yes                 Yes
## 1065                  Yes          Yes                  Yes                 Yes
## 1066                   No           No                   No                  No
## 1067                   No           No                   No                  No
## 1068                  Yes          Yes                  Yes                 Yes
## 1069                   No           No                   No                  No
## 1070                  Yes          Yes                  Yes                 Yes
## 1071                  Yes          Yes                  Yes                 Yes
## 1072                   No           No                   No                  No
## 1073                  Yes          Yes                  Yes                  No
## 1074                   No           No                   No                  No
## 1075                  Yes          Yes                  Yes                 Yes
## 1077                  Yes          Yes                  Yes                 Yes
## 1078                  Yes          Yes                  Yes                 Yes
## 1079                   No           No                   No                  No
## 1080                  Yes          Yes                   No                  No
## 1081                   No           No                   No                  No
## 1082                   No           No                   No                  No
## 1083                  Yes          Yes                  Yes                 Yes
## 1084                   No           No                   No                  No
## 1086                   No           No                   No                  No
## 1087                   No           No                   No                  No
## 1088                   No           No                   No                  No
## 1089                  Yes          Yes                  Yes                 Yes
## 1090                  Yes           No                   No                  No
## 1091                   No           No                   No                  No
## 1092                   No           No                   No                  No
## 1093                  Yes          Yes                   No                  No
## 1094                   No           No                   No                  No
## 1095                  Yes          Yes                  Yes                 Yes
## 1096                   No           No                   No                  No
## 1097                   No           No                   No                  No
## 1098                  Yes          Yes                  Yes                 Yes
## 1099                  Yes          Yes                  Yes                 Yes
## 1100                   No           No                   No                  No
## 1101                  Yes          Yes                  Yes                 Yes
## 1102                   No           No                   No                  No
## 1103                  Yes          Yes                  Yes                  No
## 1104                   No           No                   No                  No
## 1105                  Yes          Yes                  Yes                  No
## 1106                   No           No                   No                  No
## 1107                   No           No                   No                  No
## 1108                  Yes          Yes                  Yes                 Yes
## 1109                   No          Yes                  Yes                  No
## 1110                  Yes          Yes                  Yes                  No
## 1111                  Yes          Yes                  Yes                  No
## 1112                  Yes          Yes                  Yes                  No
## 1113                   No           No                   No                  No
## 1114                   No           No                   No                  No
## 1116                  Yes          Yes                  Yes                  No
## 1118                   No           No                   No                  No
## 1119                  Yes          Yes                  Yes                  No
## 1120                   No           No                   No                  No
## 1123                   No           No                   No                  No
## 1124                   No           No                   No                  No
## 1125                   No           No                   No                  No
## 1126                  Yes           No                  Yes                 Yes
## 1127                   No           No                   No                  No
## 1128                  Yes          Yes                  Yes                 Yes
## 1129                  Yes          Yes                  Yes                 Yes
## 1130                  Yes          Yes                  Yes                 Yes
## 1131                  Yes          Yes                  Yes                 Yes
## 1132                  Yes          Yes                  Yes                  No
## 1133                   No           No                   No                  No
## 1135                   No           No                   No                  No
## 1136                   No           No                   No                  No
## 1137                  Yes          Yes                  Yes                 Yes
## 1138                  Yes          Yes                  Yes                 Yes
## 1139                   No           No                   No                  No
## 1140                  Yes          Yes                  Yes                  No
## 1141                  Yes          Yes                  Yes                  No
## 1142                   No           No                   No                  No
## 1143                   No           No                   No                  No
## 1144                   No           No                   No                  No
## 1145                   No           No                   No                  No
## 1146                   No           No                   No                  No
## 1147                  Yes          Yes                   No                  No
## 1148                  Yes          Yes                  Yes                 Yes
## 1149                   No           No                   No                  No
## 1150                  Yes          Yes                  Yes                 Yes
## 1151                  Yes          Yes                  Yes                  No
## 1152                   No           No                   No                  No
## 1153                  Yes          Yes                  Yes                 Yes
## 1154                  Yes          Yes                  Yes                 Yes
## 1155                   No           No                   No                  No
## 1156                   No           No                   No                  No
## 1157                  Yes           No                  Yes                 Yes
## 1158                   No           No                   No                  No
## 1159                   No           No                   No                  No
## 1160                  Yes          Yes                   No                  No
## 1161                   No           No                   No                  No
## 1163                   No           No                   No                  No
## 1164                  Yes          Yes                  Yes                 Yes
## 1165                   No           No                   No                  No
## 1166                  Yes          Yes                  Yes                 Yes
## 1167                  Yes          Yes                  Yes                 Yes
## 1168                  Yes          Yes                  Yes                 Yes
## 1169                  Yes          Yes                  Yes                 Yes
## 1170                   No           No                   No                  No
## 1172                   No           No                   No                  No
## 1173                  Yes          Yes                  Yes                  No
## 1174                  Yes          Yes                  Yes                 Yes
## 1175                  Yes          Yes                  Yes                 Yes
## 1176                  Yes          Yes                  Yes                  No
## 1177                   No           No                   No                  No
## 1178                  Yes          Yes                  Yes                  No
## 1179                  Yes          Yes                  Yes                 Yes
## 1180                  Yes          Yes                  Yes                  No
## 1181                  Yes           No                  Yes                 Yes
## 1182                   No           No                   No                  No
## 1183                   No           No                  Yes                  No
## 1184                   No           No                   No                  No
## 1185                   No           No                   No                  No
## 1186                  Yes          Yes                  Yes                  No
## 1187                   No           No                   No                  No
## 1188                  Yes          Yes                  Yes                 Yes
## 1189                  Yes          Yes                   No                  No
## 1190                   No           No                   No                  No
## 1191                  Yes          Yes                  Yes                 Yes
## 1192                   No           No                   No                  No
## 1193                  Yes          Yes                  Yes                 Yes
## 1194                   No           No                   No                  No
## 1195                  Yes           No                  Yes                  No
## 1196                  Yes          Yes                  Yes                  No
## 1197                  Yes          Yes                  Yes                 Yes
## 1198                   No           No                   No                  No
## 1199                  Yes          Yes                  Yes                 Yes
## 1200                  Yes          Yes                  Yes                  No
## 1201                  Yes          Yes                  Yes                 Yes
## 1202                   No           No                   No                  No
## 1203                  Yes          Yes                  Yes                  No
## 1205                   No           No                   No                  No
## 1206                   No           No                   No                  No
## 1207                   No           No                   No                  No
## 1208                   No           No                   No                  No
## 1209                  Yes          Yes                  Yes                 Yes
## 1210                   No           No                   No                  No
## 1211                  Yes          Yes                   No                 Yes
## 1212                  Yes          Yes                  Yes                  No
## 1213                   No           No                   No                  No
## 1214                  Yes          Yes                  Yes                 Yes
## 1215                   No           No                   No                  No
## 1216                  Yes          Yes                  Yes                 Yes
## 1217                   No           No                   No                  No
## 1218                  Yes          Yes                  Yes                  No
## 1219                   No           No                   No                  No
## 1220                  Yes          Yes                  Yes                 Yes
## 1221                  Yes          Yes                  Yes                  No
## 1222                  Yes          Yes                  Yes                 Yes
## 1223                   No           No                   No                  No
## 1224                   No           No                   No                  No
## 1225                  Yes          Yes                  Yes                  No
## 1227                  Yes          Yes                  Yes                 Yes
## 1228                   No           No                   No                  No
## 1229                  Yes          Yes                  Yes                  No
## 1232                   No           No                   No                  No
## 1233                  Yes          Yes                   No                 Yes
## 1234                  Yes          Yes                  Yes                  No
## 1235                   No           No                   No                  No
## 1237                  Yes          Yes                   No                  No
## 1238                   No           No                   No                  No
## 1239                   No           No                   No                  No
## 1240                   No           No                   No                  No
## 1241                  Yes           No                   No                  No
## 1242                   No           No                   No                  No
## 1243                   No           No                   No                  No
## 1244                   No           No                   No                  No
## 1245                  Yes          Yes                  Yes                 Yes
## 1246                   No           No                   No                  No
## 1247                   No           No                   No                  No
## 1248                   No           No                   No                  No
## 1249                  Yes          Yes                  Yes                 Yes
## 1250                  Yes          Yes                  Yes                 Yes
## 1251                  Yes           No                   No                 Yes
## 1252                   No           No                   No                  No
## 1253                   No           No                   No                  No
## 1254                  Yes          Yes                  Yes                 Yes
## 1255                  Yes          Yes                   No                  No
## 1256                   No           No                   No                  No
## 1257                   No           No                   No                  No
## 1258                  Yes          Yes                  Yes                 Yes
## 1259                   No           No                   No                  No
## 1260                   No           No                   No                  No
## 1261                   No           No                   No                  No
## 1262                  Yes          Yes                  Yes                  No
## 1263                  Yes          Yes                  Yes                  No
## 1264                   No           No                   No                  No
## 1265                   No           No                   No                  No
## 1266                  Yes          Yes                  Yes                 Yes
## 1267                  Yes          Yes                  Yes                  No
## 1268                  Yes          Yes                  Yes                 Yes
## 1269                  Yes          Yes                  Yes                  No
## 1270                  Yes           No                   No                  No
## 1271                  Yes          Yes                  Yes                 Yes
## 1272                   No           No                   No                  No
## 1274                  Yes          Yes                  Yes                 Yes
## 1275                   No           No                   No                  No
## 1276                  Yes          Yes                  Yes                  No
## 1277                   No           No                   No                  No
## 1278                   No           No                   No                  No
## 1279                   No           No                   No                  No
## 1280                  Yes          Yes                  Yes                 Yes
## 1281                   No           No                   No                  No
## 1282                   No           No                   No                  No
## 1283                   No           No                   No                  No
## 1284                  Yes           No                  Yes                  No
## 1286                   No           No                   No                  No
## 1287                   No           No                   No                  No
## 1288                  Yes          Yes                  Yes                 Yes
## 1289                   No           No                   No                  No
## 1290                  Yes          Yes                   No                  No
## 1291                  Yes          Yes                  Yes                 Yes
## 1292                   No           No                   No                  No
## 1293                  Yes          Yes                  Yes                 Yes
## 1294                   No           No                   No                  No
## 1295                  Yes          Yes                  Yes                 Yes
## 1296                  Yes          Yes                  Yes                 Yes
## 1297                  Yes          Yes                  Yes                  No
## 1298                  Yes          Yes                  Yes                  No
## 1299                  Yes          Yes                  Yes                 Yes
## 1300                   No           No                   No                  No
## 1301                  Yes          Yes                   No                  No
## 1302                  Yes          Yes                  Yes                  No
## 1303                   No          Yes                  Yes                  No
## 1304                   No           No                   No                  No
## 1305                   No           No                   No                  No
## 1306                  Yes          Yes                   No                  No
## 1307                  Yes          Yes                  Yes                 Yes
## 1308                   No           No                   No                  No
## 1309                   No           No                   No                  No
## 1310                   No           No                   No                  No
## 1311                  Yes          Yes                  Yes                 Yes
## 1312                   No           No                   No                  No
## 1313                  Yes          Yes                  Yes                  No
## 1314                   No           No                   No                  No
## 1315                   No           No                   No                  No
## 1316                   No           No                   No                  No
## 1317                   No           No                   No                  No
## 1318                   No           No                   No                  No
## 1320                   No           No                   No                  No
## 1321                  Yes          Yes                   No                 Yes
## 1322                   No           No                   No                  No
## 1323                  Yes          Yes                  Yes                 Yes
## 1324                   No           No                   No                  No
## 1325                   No           No                   No                  No
## 1326                   No           No                   No                  No
## 1327                   No           No                   No                  No
## 1328                   No           No                   No                  No
## 1329                  Yes          Yes                  Yes                 Yes
## 1330                   No           No                   No                  No
## 1331                  Yes          Yes                  Yes                 Yes
## 1332                  Yes          Yes                  Yes                  No
## 1333                  Yes          Yes                  Yes                  No
## 1334                   No           No                   No                  No
## 1335                  Yes          Yes                  Yes                 Yes
## 1336                   No           No                   No                  No
## 1337                   No           No                   No                  No
## 1338                  Yes          Yes                  Yes                 Yes
## 1339                   No           No                   No                  No
## 1340                   No          Yes                   No                  No
## 1341                  Yes          Yes                  Yes                 Yes
## 1342                  Yes          Yes                  Yes                 Yes
## 1343                  Yes          Yes                  Yes                  No
## 1344                   No           No                   No                  No
## 1345                  Yes          Yes                  Yes                  No
## 1346                  Yes          Yes                  Yes                  No
## 1347                  Yes          Yes                  Yes                 Yes
## 1348                   No           No                   No                  No
## 1349                  Yes          Yes                   No                  No
## 1350                  Yes          Yes                  Yes                 Yes
## 1351                   No           No                   No                  No
## 1352                   No           No                   No                  No
## 1353                   No           No                   No                  No
## 1354                  Yes          Yes                  Yes                  No
## 1355                   No           No                   No                  No
## 1356                  Yes          Yes                  Yes                 Yes
## 1357                  Yes          Yes                  Yes                 Yes
## 1359                   No           No                   No                  No
## 1361                  Yes           No                   No                  No
## 1362                   No           No                   No                  No
## 1363                   No           No                   No                  No
## 1365                  Yes          Yes                  Yes                  No
## 1366                  Yes          Yes                   No                  No
## 1367                  Yes          Yes                  Yes                 Yes
## 1368                  Yes          Yes                  Yes                 Yes
## 1369                   No           No                   No                  No
## 1371                  Yes          Yes                  Yes                 Yes
## 1372                   No           No                   No                  No
## 1373                  Yes          Yes                  Yes                  No
## 1374                  Yes          Yes                  Yes                  No
## 1376                  Yes          Yes                  Yes                  No
## 1377                  Yes           No                  Yes                 Yes
## 1378                  Yes          Yes                  Yes                 Yes
## 1379                  Yes           No                  Yes                  No
## 1380                   No           No                   No                  No
## 1381                  Yes          Yes                  Yes                  No
## 1383                   No           No                   No                  No
## 1384                   No           No                   No                  No
## 1385                  Yes          Yes                  Yes                 Yes
## 1386                   No           No                   No                  No
## 1387                  Yes          Yes                  Yes                  No
## 1388                   No           No                   No                  No
## 1389                  Yes           No                  Yes                  No
## 1390                   No           No                   No                  No
## 1391                   No           No                   No                  No
## 1392                  Yes          Yes                  Yes                 Yes
## 1393                  Yes          Yes                   No                 Yes
## 1394                   No           No                   No                  No
## 1395                   No           No                   No                  No
## 1396                  Yes          Yes                  Yes                 Yes
## 1397                   No           No                   No                  No
## 1398                  Yes          Yes                  Yes                 Yes
## 1399                   No           No                   No                  No
## 1400                   No           No                   No                  No
## 1401                  Yes          Yes                   No                 Yes
## 1402                  Yes           No                   No                  No
## 1403                   No           No                   No                  No
## 1404                   No           No                   No                  No
## 1405                  Yes          Yes                  Yes                  No
## 1406                  Yes          Yes                  Yes                 Yes
## 1407                   No           No                   No                  No
## 1408                   No           No                   No                  No
## 1409                  Yes          Yes                   No                  No
## 1410                  Yes           No                  Yes                 Yes
## 1411                   No           No                   No                  No
## 1412                  Yes           No                  Yes                 Yes
## 1413                   No           No                   No                  No
## 1414                  Yes          Yes                  Yes                 Yes
## 1415                  Yes          Yes                  Yes                 Yes
## 1416                   No           No                   No                  No
## 1417                  Yes          Yes                  Yes                  No
## 1418                  Yes          Yes                  Yes                  No
## 1419                   No           No                   No                  No
## 1420                  Yes          Yes                   No                  No
## 1421                  Yes          Yes                   No                 Yes
## 1422                   No           No                   No                  No
## 1423                  Yes          Yes                  Yes                 Yes
## 1425                  Yes          Yes                  Yes                 Yes
## 1426                   No           No                   No                  No
## 1427                   No           No                   No                  No
## 1428                   No           No                   No                  No
## 1429                   No           No                   No                  No
## 1430                   No           No                   No                  No
## 1431                   No           No                   No                  No
## 1432                  Yes           No                  Yes                  No
## 1433                  Yes          Yes                  Yes                 Yes
## 1434                  Yes          Yes                  Yes                  No
## 1435                   No           No                   No                  No
## 1437                  Yes          Yes                  Yes                  No
## 1438                  Yes          Yes                  Yes                 Yes
## 1439                  Yes          Yes                  Yes                 Yes
## 1440                  Yes          Yes                   No                  No
## 1441                  Yes          Yes                  Yes                 Yes
## 1442                   No           No                   No                  No
## 1443                  Yes          Yes                  Yes                 Yes
## 1444                   No           No                   No                  No
## 1445                   No           No                   No                  No
## 1446                  Yes          Yes                  Yes                 Yes
## 1447                  Yes          Yes                  Yes                 Yes
## 1448                   No           No                   No                  No
## 1449                   No           No                   No                  No
## 1450                  Yes          Yes                  Yes                  No
## 1451                  Yes          Yes                  Yes                  No
## 1452                  Yes          Yes                  Yes                 Yes
## 1453                  Yes          Yes                  Yes                 Yes
## 1454                  Yes           No                  Yes                 Yes
## 1455                   No           No                   No                  No
## 1456                   No           No                   No                  No
## 1457                  Yes          Yes                  Yes                  No
## 1458                   No           No                   No                  No
## 1459                  Yes          Yes                  Yes                 Yes
## 1460                   No           No                   No                  No
## 1461                   No           No                   No                  No
## 1464                   No           No                   No                  No
## 1465                  Yes          Yes                  Yes                 Yes
## 1466                   No           No                   No                  No
## 1467                   No           No                   No                  No
## 1468                   No          Yes                   No                 Yes
## 1469                  Yes          Yes                  Yes                 Yes
## 1470                   No           No                   No                  No
## 1471                  Yes          Yes                  Yes                 Yes
## 1472                  Yes          Yes                  Yes                 Yes
## 1473                   No           No                   No                  No
## 1474                  Yes          Yes                  Yes                  No
## 1476                  Yes          Yes                  Yes                 Yes
## 1477                  Yes          Yes                  Yes                 Yes
## 1478                  Yes          Yes                  Yes                  No
## 1479                  Yes          Yes                  Yes                  No
## 1480                   No           No                   No                  No
## 1481                  Yes          Yes                  Yes                 Yes
## 1482                  Yes           No                  Yes                 Yes
## 1483                  Yes          Yes                  Yes                 Yes
## 1484                  Yes          Yes                   No                  No
## 1485                   No           No                   No                  No
## 1486                   No           No                   No                  No
## 1487                  Yes          Yes                   No                 Yes
## 1488                   No           No                   No                  No
## 1489                  Yes          Yes                  Yes                 Yes
## 1490                   No           No                   No                  No
## 1491                  Yes          Yes                  Yes                 Yes
## 1492                   No           No                   No                 Yes
## 1493                   No           No                   No                  No
## 1494                   No           No                   No                  No
## 1495                   No           No                   No                  No
## 1496                   No           No                   No                  No
## 1497                   No          Yes                  Yes                 Yes
## 1498                   No           No                   No                  No
## 1499                   No           No                   No                  No
## 1500                  Yes          Yes                  Yes                  No
## 1501                  Yes          Yes                  Yes                 Yes
## 1502                   No           No                   No                  No
## 1503                  Yes          Yes                  Yes                 Yes
## 1504                   No           No                   No                  No
## 1505                   No           No                   No                  No
## 1506                   No           No                   No                  No
## 1507                   No           No                   No                  No
## 1509                   No           No                   No                  No
## 1510                  Yes          Yes                  Yes                 Yes
## 1511                  Yes           No                   No                 Yes
## 1512                  Yes          Yes                  Yes                 Yes
## 1514                   No           No                   No                  No
## 1515                   No           No                   No                  No
## 1516                   No           No                   No                  No
## 1517                   No           No                   No                  No
## 1518                  Yes          Yes                  Yes                 Yes
## 1519                  Yes          Yes                  Yes                 Yes
## 1520                   No           No                   No                  No
## 1521                  Yes          Yes                  Yes                 Yes
## 1522                   No           No                   No                  No
## 1524                   No           No                   No                  No
## 1525                   No           No                   No                  No
## 1526                   No           No                   No                  No
## 1527                   No           No                   No                  No
## 1528                  Yes          Yes                  Yes                 Yes
## 1529                  Yes          Yes                  Yes                 Yes
## 1530                   No           No                   No                  No
## 1531                   No           No                   No                  No
## 1532                   No           No                   No                  No
## 1533                   No           No                   No                  No
## 1534                  Yes           No                   No                 Yes
## 1535                   No           No                   No                  No
## 1536                   No           No                   No                  No
## 1537                  Yes          Yes                  Yes                  No
## 1538                   No           No                   No                  No
## 1539                  Yes          Yes                  Yes                 Yes
## 1540                   No           No                   No                  No
## 1541                   No           No                   No                  No
## 1542                   No           No                   No                  No
## 1543                  Yes          Yes                  Yes                 Yes
## 1544                  Yes          Yes                  Yes                 Yes
## 1545                  Yes          Yes                  Yes                  No
## 1546                   No           No                   No                  No
## 1547                  Yes          Yes                  Yes                 Yes
## 1548                  Yes          Yes                  Yes                 Yes
## 1549                   No           No                   No                  No
## 1550                  Yes          Yes                  Yes                 Yes
## 1551                   No           No                   No                  No
## 1552                   No           No                   No                  No
## 1553                  Yes          Yes                   No                  No
## 1554                  Yes          Yes                  Yes                  No
## 1555                   No           No                   No                  No
## 1556                   No           No                   No                  No
## 1557                   No           No                   No                  No
## 1558                   No           No                   No                  No
## 1559                   No           No                   No                  No
## 1560                   No           No                   No                  No
## 1561                  Yes          Yes                  Yes                 Yes
## 1562                   No           No                   No                  No
## 1563                   No           No                   No                  No
## 1564                   No           No                   No                  No
## 1565                   No           No                   No                  No
## 1566                  Yes          Yes                  Yes                 Yes
## 1567                   No           No                   No                  No
## 1568                   No           No                   No                  No
## 1569                  Yes          Yes                  Yes                 Yes
## 1570                   No           No                   No                  No
## 1571                   No           No                   No                  No
## 1572                  Yes          Yes                  Yes                 Yes
## 1573                  Yes          Yes                   No                  No
## 1574                  Yes          Yes                  Yes                 Yes
## 1575                   No           No                   No                  No
## 1576                  Yes          Yes                  Yes                  No
## 1578                   No           No                   No                  No
## 1579                  Yes          Yes                  Yes                 Yes
## 1580                  Yes          Yes                  Yes                 Yes
## 1581                   No           No                   No                  No
## 1582                   No           No                   No                  No
## 1583                  Yes          Yes                  Yes                  No
## 1585                   No           No                   No                  No
## 1586                  Yes          Yes                   No                  No
## 1587                  Yes          Yes                  Yes                 Yes
## 1588                  Yes          Yes                  Yes                 Yes
## 1589                   No           No                   No                  No
## 1590                  Yes          Yes                  Yes                 Yes
## 1591                  Yes          Yes                   No                  No
## 1592                  Yes          Yes                  Yes                 Yes
## 1593                   No           No                   No                  No
## 1594                   No           No                   No                  No
## 1595                  Yes          Yes                  Yes                 Yes
## 1596                   No           No                   No                  No
## 1597                  Yes          Yes                  Yes                 Yes
## 1598                  Yes          Yes                  Yes                 Yes
## 1599                   No           No                   No                  No
## 1600                   No           No                   No                  No
## 1601                   No           No                   No                  No
## 1602                  Yes          Yes                  Yes                 Yes
## 1603                   No           No                   No                  No
## 1605                   No           No                   No                  No
## 1606                   No          Yes                  Yes                 Yes
## 1607                   No           No                   No                  No
## 1608                  Yes          Yes                  Yes                  No
## 1609                  Yes          Yes                  Yes                 Yes
## 1610                   No           No                   No                  No
## 1611                  Yes           No                  Yes                 Yes
## 1612                   No           No                   No                  No
## 1613                  Yes          Yes                   No                  No
## 1614                  Yes           No                   No                  No
## 1615                   No           No                   No                  No
## 1616                  Yes          Yes                  Yes                 Yes
## 1617                   No           No                   No                  No
## 1618                  Yes           No                  Yes                 Yes
## 1619                   No           No                   No                  No
## 1620                  Yes          Yes                   No                  No
## 1621                   No           No                   No                  No
## 1622                   No           No                   No                  No
## 1623                   No           No                   No                  No
## 1624                  Yes           No                  Yes                 Yes
## 1625                   No           No                   No                  No
## 1626                   No           No                   No                  No
## 1627                  Yes          Yes                  Yes                 Yes
## 1628                  Yes          Yes                  Yes                  No
## 1629                  Yes          Yes                  Yes                 Yes
## 1630                   No           No                   No                  No
## 1631                  Yes          Yes                  Yes                 Yes
## 1632                  Yes          Yes                  Yes                  No
## 1633                  Yes          Yes                   No                  No
## 1634                   No           No                   No                  No
## 1635                  Yes          Yes                   No                  No
## 1636                  Yes          Yes                  Yes                 Yes
## 1637                   No           No                   No                  No
## 1638                  Yes          Yes                  Yes                 Yes
## 1639                   No           No                   No                  No
## 1640                  Yes          Yes                   No                 Yes
## 1641                   No           No                   No                  No
## 1642                  Yes          Yes                  Yes                 Yes
## 1643                  Yes          Yes                   No                  No
## 1644                  Yes          Yes                  Yes                  No
## 1645                  Yes          Yes                  Yes                 Yes
## 1646                   No           No                   No                  No
## 1647                   No           No                   No                  No
## 1648                  Yes          Yes                  Yes                 Yes
## 1649                  Yes          Yes                   No                 Yes
## 1650                  Yes          Yes                  Yes                 Yes
## 1651                   No           No                   No                  No
## 1652                  Yes          Yes                  Yes                 Yes
## 1653                  Yes          Yes                  Yes                  No
## 1655                   No           No                   No                  No
## 1656                   No           No                   No                  No
## 1657                   No           No                   No                  No
## 1658                  Yes          Yes                  Yes                 Yes
## 1659                  Yes           No                  Yes                  No
## 1660                  Yes          Yes                  Yes                 Yes
## 1661                  Yes          Yes                  Yes                 Yes
## 1662                  Yes          Yes                  Yes                 Yes
## 1663                  Yes           No                   No                 Yes
## 1664                  Yes          Yes                  Yes                  No
## 1665                  Yes          Yes                   No                  No
## 1666                  Yes          Yes                  Yes                  No
## 1669                  Yes          Yes                  Yes                 Yes
## 1670                  Yes          Yes                  Yes                  No
## 1671                   No           No                   No                  No
## 1672                  Yes          Yes                  Yes                  No
## 1673                  Yes          Yes                  Yes                 Yes
## 1674                   No           No                   No                  No
## 1675                  Yes          Yes                  Yes                 Yes
## 1676                   No           No                   No                  No
## 1677                  Yes          Yes                  Yes                  No
## 1678                   No           No                   No                  No
## 1679                   No           No                   No                  No
## 1680                  Yes          Yes                  Yes                  No
## 1682                   No           No                   No                  No
## 1683                  Yes          Yes                  Yes                 Yes
## 1684                   No           No                   No                  No
## 1685                  Yes          Yes                   No                 Yes
## 1686                   No           No                   No                  No
## 1687                  Yes          Yes                  Yes                 Yes
## 1688                  Yes          Yes                  Yes                 Yes
## 1689                   No           No                   No                  No
## 1690                  Yes          Yes                  Yes                  No
## 1691                  Yes          Yes                  Yes                 Yes
## 1692                   No           No                   No                  No
## 1693                  Yes          Yes                  Yes                  No
## 1694                   No           No                   No                  No
## 1695                  Yes          Yes                  Yes                 Yes
## 1696                  Yes          Yes                   No                  No
## 1697                  Yes          Yes                  Yes                 Yes
## 1698                  Yes          Yes                  Yes                 Yes
## 1700                  Yes          Yes                  Yes                 Yes
## 1701                   No           No                   No                  No
## 1702                  Yes          Yes                  Yes                  No
## 1703                   No           No                   No                  No
## 1704                  Yes          Yes                  Yes                  No
## 1705                   No           No                   No                  No
## 1706                   No           No                   No                 Yes
## 1707                  Yes          Yes                   No                  No
## 1708                  Yes           No                  Yes                 Yes
## 1709                   No           No                   No                  No
## 1710                  Yes          Yes                   No                 Yes
## 1711                   No           No                   No                  No
## 1712                  Yes           No                  Yes                 Yes
## 1713                   No           No                   No                  No
## 1714                  Yes          Yes                  Yes                  No
## 1715                   No           No                   No                  No
## 1716                   No           No                   No                  No
## 1717                  Yes          Yes                  Yes                 Yes
## 1718                  Yes          Yes                  Yes                 Yes
## 1719                  Yes          Yes                  Yes                 Yes
## 1721                   No           No                   No                  No
## 1722                   No           No                   No                  No
## 1724                   No           No                   No                  No
## 1725                   No           No                   No                  No
## 1726                  Yes          Yes                  Yes                 Yes
## 1727                   No           No                   No                  No
## 1728                  Yes          Yes                  Yes                 Yes
## 1729                   No           No                   No                  No
## 1730                   No           No                   No                  No
## 1731                  Yes          Yes                  Yes                 Yes
## 1732                  Yes          Yes                  Yes                 Yes
## 1733                   No           No                   No                  No
## 1734                   No           No                   No                  No
## 1735                  Yes          Yes                  Yes                 Yes
## 1736                   No           No                   No                  No
## 1737                   No           No                   No                  No
## 1738                  Yes          Yes                  Yes                  No
## 1739                  Yes          Yes                  Yes                  No
## 1740                   No           No                   No                  No
## 1741                   No           No                   No                  No
## 1742                   No           No                   No                  No
## 1743                   No           No                   No                  No
## 1744                   No           No                   No                  No
## 1745                   No           No                   No                  No
## 1746                   No           No                   No                  No
## 1747                   No           No                   No                  No
## 1749                   No          Yes                   No                 Yes
## 1750                   No           No                   No                  No
## 1751                  Yes          Yes                  Yes                  No
## 1752                   No           No                   No                  No
## 1753                   No           No                   No                  No
## 1754                   No           No                   No                  No
## 1755                   No           No                   No                  No
## 1756                   No           No                   No                  No
## 1757                   No           No                   No                  No
## 1758                   No           No                   No                  No
## 1759                   No           No                   No                  No
## 1761                  Yes          Yes                  Yes                 Yes
## 1762                   No           No                   No                  No
## 1763                   No           No                   No                  No
## 1764                   No           No                   No                  No
## 1765                  Yes          Yes                  Yes                 Yes
## 1766                  Yes          Yes                  Yes                 Yes
## 1769                  Yes           No                   No                 Yes
## 1770                   No           No                   No                  No
## 1771                  Yes          Yes                  Yes                 Yes
## 1773                  Yes          Yes                  Yes                 Yes
## 1774                   No           No                   No                  No
## 1775                   No           No                   No                  No
## 1776                   No           No                   No                  No
## 1778                  Yes          Yes                  Yes                 Yes
## 1779                  Yes          Yes                  Yes                 Yes
## 1780                  Yes          Yes                  Yes                  No
## 1781                   No           No                   No                  No
## 1782                  Yes          Yes                  Yes                 Yes
## 1783                  Yes          Yes                  Yes                 Yes
## 1784                  Yes          Yes                  Yes                  No
## 1785                  Yes          Yes                  Yes                 Yes
## 1786                   No           No                   No                  No
## 1787                  Yes          Yes                  Yes                 Yes
## 1788                  Yes          Yes                  Yes                 Yes
## 1789                  Yes          Yes                  Yes                 Yes
## 1790                   No           No                   No                  No
## 1791                   No           No                   No                  No
## 1792                  Yes           No                   No                  No
## 1793                  Yes          Yes                  Yes                 Yes
## 1794                  Yes          Yes                  Yes                 Yes
## 1795                  Yes          Yes                  Yes                  No
## 1796                  Yes          Yes                  Yes                 Yes
## 1797                   No           No                   No                  No
## 1798                  Yes          Yes                  Yes                 Yes
## 1799                   No           No                   No                  No
## 1800                   No           No                   No                  No
## 1801                  Yes          Yes                  Yes                 Yes
## 1802                   No           No                   No                  No
## 1803                  Yes          Yes                  Yes                 Yes
## 1804                  Yes          Yes                  Yes                 Yes
## 1805                   No           No                   No                  No
## 1806                   No           No                   No                  No
## 1807                   No           No                   No                  No
## 1808                  Yes          Yes                  Yes                 Yes
## 1809                   No           No                   No                  No
## 1810                  Yes          Yes                  Yes                  No
## 1811                  Yes          Yes                  Yes                  No
## 1812                  Yes          Yes                  Yes                 Yes
## 1813                  Yes           No                  Yes                  No
## 1814                   No           No                   No                  No
## 1815                   No           No                   No                  No
## 1816                   No           No                   No                  No
## 1817                   No           No                   No                  No
## 1818                   No           No                   No                  No
## 1819                  Yes           No                   No                  No
## 1820                  Yes          Yes                  Yes                  No
## 1821                  Yes          Yes                  Yes                 Yes
## 1822                  Yes          Yes                  Yes                 Yes
## 1823                  Yes          Yes                  Yes                 Yes
## 1824                  Yes          Yes                   No                  No
## 1825                   No           No                   No                  No
## 1826                   No           No                   No                  No
## 1827                   No           No                   No                  No
## 1828                  Yes           No                  Yes                 Yes
## 1829                   No           No                   No                  No
## 1830                  Yes          Yes                  Yes                 Yes
## 1831                  Yes          Yes                   No                  No
## 1832                  Yes          Yes                  Yes                 Yes
## 1833                  Yes          Yes                  Yes                 Yes
## 1834                   No           No                   No                  No
## 1835                  Yes          Yes                  Yes                 Yes
## 1836                   No           No                   No                  No
## 1837                   No           No                   No                  No
## 1838                   No           No                   No                  No
## 1839                   No           No                   No                  No
## 1840                  Yes           No                  Yes                 Yes
## 1841                  Yes          Yes                  Yes                  No
## 1842                  Yes          Yes                  Yes                 Yes
## 1843                   No           No                   No                  No
## 1844                   No           No                   No                  No
## 1845                   No           No                   No                  No
## 1846                   No           No                   No                  No
## 1847                  Yes          Yes                  Yes                 Yes
## 1848                   No           No                   No                  No
## 1849                   No           No                   No                  No
## 1850                  Yes          Yes                   No                  No
## 1851                  Yes           No                  Yes                  No
## 1852                   No           No                   No                  No
## 1853                  Yes          Yes                  Yes                 Yes
## 1854                   No           No                   No                  No
## 1855                  Yes          Yes                  Yes                 Yes
## 1856                  Yes          Yes                  Yes                 Yes
## 1857                  Yes          Yes                  Yes                 Yes
## 1858                  Yes          Yes                   No                 Yes
## 1859                   No           No                   No                  No
## 1860                   No          Yes                  Yes                  No
## 1861                  Yes          Yes                  Yes                 Yes
## 1862                  Yes          Yes                  Yes                 Yes
## 1863                  Yes          Yes                  Yes                 Yes
## 1864                   No           No                   No                  No
## 1865                  Yes          Yes                  Yes                  No
## 1866                   No           No                   No                  No
## 1868                  Yes          Yes                  Yes                  No
## 1869                   No           No                   No                  No
## 1870                   No           No                   No                  No
## 1871                  Yes           No                  Yes                 Yes
## 1872                   No           No                  Yes                 Yes
## 1873                  Yes          Yes                   No                 Yes
## 1874                   No           No                   No                  No
## 1875                  Yes          Yes                  Yes                 Yes
## 1876                  Yes          Yes                  Yes                  No
## 1877                   No           No                   No                  No
## 1878                  Yes          Yes                   No                 Yes
## 1879                  Yes          Yes                  Yes                 Yes
## 1880                   No           No                   No                  No
## 1881                   No           No                   No                  No
## 1882                   No           No                   No                  No
## 1883                   No           No                   No                  No
## 1884                  Yes          Yes                  Yes                  No
## 1885                  Yes           No                  Yes                 Yes
## 1886                   No           No                   No                  No
## 1887                   No           No                   No                  No
## 1888                  Yes           No                  Yes                 Yes
## 1889                   No           No                   No                  No
## 1890                   No           No                   No                  No
## 1891                   No           No                   No                  No
## 1892                  Yes          Yes                  Yes                 Yes
## 1893                  Yes          Yes                  Yes                 Yes
## 1894                  Yes          Yes                  Yes                 Yes
## 1895                   No           No                   No                  No
## 1896                   No           No                   No                  No
## 1897                  Yes          Yes                  Yes                 Yes
## 1898                   No           No                   No                  No
## 1899                   No           No                   No                  No
## 1900                   No           No                   No                  No
## 1901                  Yes           No                   No                  No
## 1902                   No           No                   No                  No
## 1903                  Yes          Yes                  Yes                 Yes
## 1904                   No           No                   No                  No
## 1906                   No           No                   No                  No
## 1907                   No           No                   No                  No
## 1908                  Yes          Yes                  Yes                  No
## 1909                  Yes           No                  Yes                 Yes
## 1910                  Yes          Yes                  Yes                  No
## 1911                  Yes          Yes                  Yes                  No
## 1912                   No           No                   No                  No
## 1913                   No           No                   No                  No
## 1914                   No           No                   No                  No
## 1915                  Yes          Yes                  Yes                 Yes
## 1916                   No           No                   No                  No
## 1917                  Yes          Yes                  Yes                  No
## 1918                   No           No                   No                  No
## 1919                   No           No                   No                  No
## 1920                  Yes          Yes                   No                  No
## 1921                   No           No                   No                  No
## 1922                   No           No                   No                  No
## 1923                  Yes          Yes                  Yes                 Yes
## 1924                   No           No                   No                  No
## 1926                   No           No                   No                  No
## 1927                   No           No                   No                  No
## 1928                   No           No                   No                  No
## 1929                   No           No                   No                  No
## 1930                  Yes           No                  Yes                 Yes
## 1931                  Yes          Yes                  Yes                  No
## 1932                   No           No                   No                  No
## 1933                   No           No                   No                  No
## 1934                  Yes          Yes                  Yes                 Yes
## 1935                  Yes          Yes                  Yes                  No
## 1936                  Yes          Yes                  Yes                 Yes
## 1937                  Yes          Yes                  Yes                 Yes
## 1938                  Yes          Yes                  Yes                 Yes
## 1939                   No           No                   No                 Yes
## 1941                  Yes          Yes                  Yes                  No
## 1943                  Yes          Yes                  Yes                  No
## 1944                  Yes          Yes                  Yes                  No
## 1945                   No           No                   No                  No
## 1946                   No           No                   No                  No
## 1947                  Yes          Yes                  Yes                 Yes
## 1948                   No           No                   No                  No
## 1949                  Yes          Yes                  Yes                 Yes
## 1950                  Yes          Yes                  Yes                 Yes
## 1951                   No           No                   No                  No
## 1952                   No           No                   No                  No
## 1953                   No           No                   No                  No
## 1954                   No           No                   No                  No
## 1955                  Yes          Yes                  Yes                 Yes
## 1956                  Yes          Yes                  Yes                  No
## 1957                  Yes           No                  Yes                  No
## 1958                   No           No                   No                  No
## 1959                   No           No                   No                  No
## 1960                   No           No                   No                  No
## 1961                  Yes          Yes                   No                  No
## 1962                   No           No                   No                  No
## 1963                   No           No                   No                  No
## 1964                   No           No                   No                  No
## 1965                  Yes          Yes                  Yes                 Yes
## 1966                   No           No                   No                  No
## 1967                  Yes          Yes                  Yes                  No
## 1968                   No           No                   No                  No
## 1969                  Yes          Yes                  Yes                 Yes
## 1970                   No           No                   No                  No
## 1971                   No           No                   No                  No
## 1972                  Yes          Yes                   No                 Yes
## 1973                   No           No                   No                  No
## 1974                   No           No                   No                  No
## 1975                   No           No                   No                  No
## 1977                   No           No                   No                  No
## 1979                  Yes          Yes                   No                  No
## 1980                   No           No                   No                  No
## 1981                   No           No                   No                  No
## 1982                   No           No                   No                  No
## 1983                   No           No                   No                  No
## 1984                   No           No                   No                  No
## 1985                   No           No                   No                  No
## 1986                  Yes          Yes                  Yes                 Yes
## 1987                  Yes          Yes                  Yes                  No
## 1988                   No           No                   No                  No
## 1989                  Yes          Yes                  Yes                 Yes
## 1990                  Yes          Yes                  Yes                 Yes
## 1991                  Yes          Yes                  Yes                 Yes
## 1992                  Yes          Yes                  Yes                  No
## 1993                   No           No                   No                  No
## 1994                  Yes          Yes                  Yes                 Yes
## 1995                   No           No                   No                  No
## 1996                   No           No                   No                  No
## 1997                   No           No                   No                  No
## 1998                  Yes          Yes                  Yes                 Yes
## 1999                   No           No                   No                  No
## 2000                  Yes           No                  Yes                 Yes
## 2001                  Yes          Yes                  Yes                 Yes
## 2002                   No           No                   No                  No
## 2003                   No           No                   No                  No
## 2004                  Yes          Yes                  Yes                  No
## 2005                  Yes          Yes                  Yes                 Yes
## 2006                   No           No                   No                  No
## 2007                  Yes           No                   No                  No
## 2008                   No           No                   No                  No
## 2009                   No           No                   No                  No
## 2010                  Yes          Yes                  Yes                  No
## 2011                   No           No                   No                  No
## 2013                  Yes          Yes                  Yes                  No
## 2015                   No           No                   No                  No
## 2016                   No           No                   No                  No
## 2017                   No           No                   No                  No
## 2018                   No           No                   No                  No
## 2019                  Yes          Yes                  Yes                  No
## 2020                   No           No                   No                  No
## 2021                  Yes          Yes                  Yes                  No
## 2022                  Yes          Yes                   No                  No
## 2023                  Yes          Yes                  Yes                 Yes
## 2024                   No           No                   No                  No
## 2025                   No          Yes                  Yes                  No
## 2026                   No           No                   No                  No
## 2027                   No           No                   No                  No
## 2028                   No           No                   No                  No
## 2029                   No           No                   No                  No
## 2030                   No           No                   No                  No
## 2031                   No           No                   No                  No
## 2032                   No           No                   No                  No
## 2033                   No           No                   No                  No
## 2034                   No           No                   No                  No
## 2035                   No           No                   No                  No
## 2036                  Yes          Yes                  Yes                 Yes
## 2038                   No           No                   No                  No
## 2039                  Yes          Yes                  Yes                 Yes
## 2040                   No           No                   No                  No
## 2041                   No           No                   No                  No
## 2042                  Yes          Yes                  Yes                 Yes
## 2043                   No           No                   No                  No
## 2044                  Yes          Yes                  Yes                 Yes
## 2045                  Yes          Yes                  Yes                  No
## 2046                   No           No                   No                  No
## 2047                   No           No                   No                  No
## 2048                  Yes          Yes                  Yes                 Yes
## 2049                  Yes          Yes                  Yes                 Yes
## 2050                   No           No                   No                  No
## 2052                  Yes           No                   No                 Yes
## 2053                  Yes          Yes                  Yes                  No
## 2055                  Yes          Yes                  Yes                 Yes
## 2056                   No           No                   No                  No
## 2057                  Yes          Yes                  Yes                  No
## 2058                  Yes          Yes                  Yes                 Yes
## 2059                  Yes          Yes                  Yes                 Yes
## 2061                   No           No                   No                  No
## 2062                  Yes          Yes                  Yes                 Yes
## 2063                  Yes          Yes                  Yes                 Yes
## 2064                   No           No                   No                  No
## 2065                   No           No                   No                  No
## 2067                  Yes          Yes                   No                  No
## 2068                   No           No                   No                  No
## 2069                   No           No                   No                  No
## 2071                   No           No                   No                  No
## 2072                  Yes          Yes                   No                  No
## 2073                  Yes          Yes                  Yes                 Yes
## 2074                   No           No                   No                  No
## 2075                   No           No                   No                  No
## 2076                  Yes          Yes                  Yes                  No
## 2077                  Yes          Yes                  Yes                 Yes
## 2078                   No           No                   No                  No
## 2079                  Yes          Yes                  Yes                 Yes
## 2080                  Yes          Yes                  Yes                 Yes
## 2081                  Yes          Yes                  Yes                  No
## 2082                   No           No                   No                  No
## 2083                  Yes          Yes                  Yes                  No
## 2084                  Yes          Yes                  Yes                 Yes
## 2085                  Yes          Yes                  Yes                  No
## 2086                  Yes          Yes                  Yes                 Yes
## 2087                   No           No                   No                  No
## 2088                   No           No                   No                  No
## 2089                   No           No                   No                  No
## 2090                  Yes          Yes                  Yes                 Yes
## 2092                   No           No                   No                  No
## 2094                   No           No                   No                  No
## 2095                   No           No                   No                  No
## 2096                   No           No                   No                  No
## 2098                  Yes          Yes                  Yes                 Yes
## 2099                   No           No                   No                  No
## 2100                  Yes          Yes                   No                 Yes
## 2101                   No           No                   No                  No
## 2102                   No           No                   No                  No
## 2103                  Yes           No                   No                  No
## 2104                  Yes          Yes                  Yes                  No
## 2105                   No           No                   No                  No
## 2106                   No           No                   No                  No
## 2107                   No           No                   No                  No
## 2108                  Yes          Yes                  Yes                 Yes
## 2109                  Yes          Yes                  Yes                  No
## 2110                  Yes          Yes                  Yes                 Yes
## 2111                   No           No                   No                  No
## 2112                   No           No                   No                  No
## 2113                  Yes          Yes                  Yes                 Yes
## 2114                   No           No                   No                  No
## 2115                   No           No                   No                  No
## 2116                  Yes          Yes                   No                  No
## 2117                  Yes          Yes                  Yes                 Yes
## 2119                  Yes          Yes                  Yes                 Yes
## 2120                  Yes          Yes                   No                 Yes
## 2121                   No           No                   No                  No
## 2122                  Yes          Yes                  Yes                  No
## 2123                  Yes          Yes                  Yes                 Yes
## 2126                  Yes          Yes                   No                  No
## 2127                  Yes          Yes                  Yes                 Yes
## 2128                  Yes          Yes                  Yes                 Yes
## 2129                   No           No                   No                  No
## 2130                   No           No                   No                  No
## 2131                  Yes          Yes                  Yes                 Yes
## 2132                   No           No                   No                  No
## 2133                  Yes          Yes                  Yes                 Yes
## 2134                   No           No                   No                  No
## 2135                   No           No                   No                  No
## 2136                  Yes          Yes                  Yes                 Yes
## 2137                  Yes          Yes                  Yes                 Yes
## 2138                   No           No                   No                  No
## 2140                   No           No                   No                  No
## 2141                  Yes          Yes                  Yes                  No
## 2142                   No           No                   No                  No
## 2143                   No          Yes                   No                 Yes
## 2144                  Yes          Yes                  Yes                  No
## 2145                   No           No                   No                  No
## 2146                  Yes          Yes                  Yes                  No
## 2147                   No           No                  Yes                  No
## 2148                  Yes          Yes                   No                  No
## 2149                   No           No                   No                  No
## 2150                  Yes          Yes                  Yes                 Yes
## 2151                  Yes          Yes                   No                  No
## 2152                  Yes          Yes                  Yes                  No
## 2154                   No           No                   No                  No
## 2155                  Yes          Yes                  Yes                 Yes
## 2157                  Yes          Yes                  Yes                 Yes
## 2158                   No           No                   No                  No
## 2160                  Yes          Yes                  Yes                 Yes
## 2161                  Yes          Yes                  Yes                 Yes
## 2163                  Yes          Yes                  Yes                 Yes
## 2164                   No           No                   No                  No
## 2165                   No           No                   No                  No
## 2166                  Yes          Yes                  Yes                 Yes
## 2167                   No           No                   No                  No
## 2169                  Yes          Yes                   No                  No
## 2170                  Yes           No                  Yes                 Yes
## 2171                   No           No                   No                  No
## 2172                   No           No                   No                  No
## 2174                  Yes          Yes                  Yes                 Yes
## 2175                  Yes          Yes                  Yes                 Yes
## 2176                  Yes          Yes                  Yes                 Yes
## 2177                   No           No                   No                  No
## 2178                   No           No                   No                  No
## 2179                   No           No                   No                  No
## 2180                  Yes          Yes                  Yes                 Yes
## 2181                   No           No                   No                  No
## 2182                   No           No                   No                  No
## 2183                   No           No                   No                  No
## 2184                  Yes          Yes                  Yes                 Yes
## 2185                   No           No                   No                  No
## 2186                   No           No                   No                  No
## 2187                   No           No                   No                  No
## 2188                  Yes          Yes                  Yes                 Yes
## 2189                   No           No                   No                  No
## 2190                  Yes           No                  Yes                 Yes
## 2192                  Yes          Yes                  Yes                 Yes
## 2193                   No           No                   No                  No
## 2194                   No           No                   No                  No
## 2195                   No           No                   No                  No
## 2196                   No           No                   No                  No
## 2197                   No           No                   No                  No
## 2198                  Yes          Yes                   No                  No
## 2199                   No           No                   No                  No
## 2200                   No           No                   No                  No
## 2201                   No           No                   No                  No
## 2202                   No           No                   No                  No
## 2203                  Yes          Yes                  Yes                 Yes
## 2204                   No           No                   No                  No
## 2205                   No           No                   No                  No
## 2206                  Yes          Yes                  Yes                 Yes
## 2207                  Yes          Yes                  Yes                 Yes
## 2208                   No           No                   No                  No
## 2209                  Yes          Yes                  Yes                  No
## 2210                   No           No                   No                  No
## 2211                   No           No                   No                  No
## 2212                   No           No                   No                  No
## 2213                  Yes          Yes                  Yes                 Yes
## 2214                   No           No                   No                  No
## 2215                  Yes          Yes                  Yes                  No
## 2216                  Yes          Yes                  Yes                  No
## 2217                  Yes           No                  Yes                 Yes
## 2218                   No           No                   No                  No
## 2219                  Yes          Yes                  Yes                  No
## 2220                  Yes          Yes                  Yes                 Yes
## 2221                  Yes          Yes                  Yes                 Yes
## 2222                   No           No                   No                  No
## 2223                  Yes          Yes                  Yes                 Yes
## 2224                  Yes          Yes                  Yes                 Yes
## 2225                   No           No                   No                  No
## 2226                   No           No                   No                  No
## 2227                   No           No                   No                  No
## 2228                  Yes          Yes                  Yes                 Yes
## 2229                   No           No                   No                  No
## 2230                   No           No                   No                  No
## 2232                   No           No                   No                  No
## 2233                   No           No                   No                  No
## 2234                  Yes          Yes                  Yes                 Yes
## 2235                   No           No                   No                  No
## 2236                   No           No                   No                  No
## 2237                   No           No                   No                  No
## 2239                   No           No                   No                  No
## 2240                  Yes          Yes                   No                  No
## 2241                   No           No                   No                  No
## 2242                  Yes           No                   No                 Yes
## 2243                   No           No                   No                  No
## 2244                  Yes          Yes                  Yes                  No
## 2245                   No           No                   No                  No
## 2246                  Yes          Yes                  Yes                 Yes
## 2247                   No           No                   No                  No
## 2248                   No           No                   No                  No
## 2249                  Yes           No                   No                  No
## 2250                  Yes          Yes                  Yes                 Yes
## 2252                   No           No                   No                  No
## 2253                   No           No                   No                  No
## 2254                   No           No                   No                  No
## 2255                   No           No                   No                  No
## 2256                  Yes          Yes                  Yes                  No
## 2257                   No           No                   No                  No
## 2258                  Yes          Yes                  Yes                 Yes
## 2260                  Yes           No                  Yes                 Yes
## 2261                   No           No                   No                  No
## 2262                   No           No                   No                  No
## 2263                  Yes          Yes                  Yes                 Yes
## 2264                  Yes          Yes                  Yes                  No
## 2265                   No           No                   No                  No
## 2266                   No           No                   No                  No
## 2267                  Yes          Yes                  Yes                  No
## 2268                  Yes          Yes                  Yes                 Yes
## 2269                  Yes          Yes                   No                 Yes
## 2270                   No           No                   No                  No
## 2271                  Yes          Yes                  Yes                  No
## 2272                  Yes          Yes                  Yes                 Yes
## 2273                  Yes          Yes                  Yes                 Yes
## 2274                  Yes           No                   No                 Yes
## 2275                  Yes          Yes                  Yes                  No
## 2276                  Yes           No                  Yes                 Yes
## 2277                   No           No                   No                  No
## 2278                   No           No                   No                  No
## 2279                   No           No                   No                  No
## 2280                   No           No                   No                  No
## 2281                  Yes           No                   No                 Yes
## 2282                   No           No                   No                  No
## 2283                  Yes          Yes                  Yes                 Yes
## 2284                   No           No                   No                  No
## 2285                   No           No                   No                  No
## 2286                  Yes           No                  Yes                 Yes
## 2287                   No           No                   No                  No
## 2288                   No           No                   No                  No
## 2289                   No           No                   No                  No
## 2290                   No           No                   No                  No
## 2291                   No           No                   No                  No
## 2292                  Yes          Yes                  Yes                 Yes
## 2293                  Yes          Yes                  Yes                  No
## 2294                   No           No                   No                  No
## 2295                   No           No                   No                  No
## 2297                  Yes          Yes                   No                 Yes
## 2298                  Yes          Yes                  Yes                 Yes
## 2299                   No           No                   No                  No
## 2300                  Yes          Yes                  Yes                 Yes
## 2301                  Yes          Yes                  Yes                  No
## 2302                  Yes          Yes                  Yes                 Yes
## 2303                   No           No                   No                  No
## 2304                   No           No                   No                  No
## 2305                  Yes          Yes                  Yes                 Yes
## 2306                  Yes          Yes                  Yes                  No
## 2307                  Yes          Yes                  Yes                 Yes
## 2308                  Yes          Yes                  Yes                 Yes
## 2309                  Yes          Yes                  Yes                 Yes
## 2310                  Yes          Yes                  Yes                 Yes
## 2311                  Yes          Yes                  Yes                 Yes
## 2312                   No           No                   No                  No
## 2313                   No           No                   No                  No
## 2314                  Yes          Yes                  Yes                 Yes
## 2315                   No           No                   No                  No
## 2316                  Yes          Yes                  Yes                  No
## 2317                   No          Yes                   No                  No
## 2318                  Yes          Yes                  Yes                 Yes
## 2319                  Yes          Yes                  Yes                 Yes
## 2321                   No           No                   No                  No
## 2322                  Yes          Yes                  Yes                 Yes
## 2323                  Yes          Yes                   No                  No
## 2324                   No           No                   No                  No
## 2325                   No           No                   No                  No
## 2326                  Yes          Yes                  Yes                  No
## 2327                  Yes          Yes                  Yes                 Yes
## 2328                  Yes          Yes                  Yes                  No
## 2329                   No           No                   No                  No
## 2330                  Yes          Yes                  Yes                 Yes
## 2331                   No           No                   No                  No
## 2332                  Yes          Yes                  Yes                  No
## 2333                  Yes          Yes                  Yes                 Yes
## 2334                   No           No                   No                  No
## 2336                  Yes          Yes                  Yes                  No
## 2337                  Yes          Yes                  Yes                 Yes
## 2338                  Yes          Yes                  Yes                  No
## 2339                   No           No                   No                  No
## 2340                  Yes          Yes                  Yes                  No
## 2341                  Yes          Yes                  Yes                  No
## 2342                  Yes           No                  Yes                 Yes
## 2343                  Yes           No                   No                 Yes
## 2344                   No           No                   No                  No
## 2345                   No           No                   No                  No
## 2346                   No           No                   No                  No
## 2347                  Yes          Yes                  Yes                  No
## 2348                  Yes          Yes                  Yes                 Yes
## 2349                  Yes          Yes                  Yes                  No
## 2350                  Yes          Yes                  Yes                  No
## 2351                   No           No                   No                  No
## 2352                  Yes          Yes                  Yes                  No
## 2354                   No           No                   No                  No
## 2355                  Yes          Yes                   No                 Yes
## 2356                   No           No                   No                  No
## 2357                   No           No                   No                  No
## 2358                  Yes          Yes                  Yes                  No
## 2359                   No           No                   No                  No
## 2360                  Yes          Yes                  Yes                  No
## 2361                   No           No                   No                  No
## 2362                  Yes          Yes                  Yes                 Yes
## 2363                  Yes          Yes                  Yes                 Yes
## 2364                   No           No                   No                  No
## 2365                  Yes          Yes                   No                  No
## 2366                  Yes          Yes                   No                  No
## 2367                   No           No                   No                  No
## 2368                  Yes          Yes                  Yes                 Yes
## 2369                   No           No                   No                  No
## 2370                  Yes           No                  Yes                 Yes
## 2371                   No           No                   No                  No
## 2372                  Yes          Yes                  Yes                 Yes
## 2373                   No           No                   No                  No
## 2374                   No           No                   No                  No
## 2375                  Yes          Yes                  Yes                  No
## 2376                   No           No                   No                  No
## 2377                  Yes          Yes                  Yes                 Yes
## 2378                  Yes          Yes                  Yes                 Yes
## 2379                   No           No                   No                  No
## 2380                  Yes          Yes                  Yes                 Yes
## 2381                  Yes          Yes                  Yes                 Yes
## 2382                   No           No                   No                  No
## 2383                   No           No                   No                  No
## 2384                   No           No                   No                  No
## 2385                  Yes           No                  Yes                  No
## 2386                  Yes           No                  Yes                 Yes
## 2387                   No           No                   No                  No
## 2388                  Yes          Yes                  Yes                 Yes
## 2389                  Yes          Yes                  Yes                 Yes
## 2390                  Yes          Yes                   No                 Yes
## 2391                   No           No                   No                  No
## 2392                  Yes          Yes                  Yes                 Yes
## 2393                   No           No                   No                  No
## 2394                   No           No                   No                  No
## 2395                  Yes          Yes                  Yes                 Yes
## 2396                   No           No                   No                  No
## 2397                  Yes          Yes                  Yes                 Yes
## 2398                   No           No                   No                  No
## 2399                  Yes          Yes                   No                  No
## 2401                   No           No                   No                  No
## 2402                   No           No                   No                  No
## 2403                   No           No                   No                  No
## 2404                  Yes          Yes                  Yes                 Yes
## 2405                   No           No                   No                  No
## 2406                  Yes          Yes                  Yes                 Yes
## 2407                  Yes           No                  Yes                  No
## 2408                   No           No                   No                  No
## 2409                  Yes          Yes                  Yes                 Yes
## 2410                  Yes          Yes                  Yes                 Yes
## 2411                   No           No                   No                  No
## 2412                   No           No                   No                  No
## 2413                  Yes          Yes                  Yes                 Yes
## 2414                  Yes          Yes                  Yes                 Yes
## 2417                   No           No                   No                  No
## 2418                   No           No                   No                  No
## 2419                  Yes          Yes                  Yes                  No
## 2420                  Yes          Yes                   No                 Yes
## 2421                   No           No                   No                  No
## 2422                  Yes           No                  Yes                  No
## 2424                   No           No                   No                  No
## 2425                  Yes          Yes                   No                  No
## 2426                  Yes          Yes                  Yes                  No
## 2427                   No           No                   No                  No
## 2428                   No           No                   No                  No
## 2430                   No           No                   No                  No
## 2431                   No           No                   No                  No
## 2432                  Yes          Yes                  Yes                  No
## 2433                   No           No                   No                  No
## 2435                  Yes          Yes                  Yes                 Yes
## 2436                  Yes          Yes                  Yes                 Yes
## 2437                   No           No                   No                  No
## 2438                  Yes          Yes                  Yes                 Yes
## 2439                   No           No                   No                  No
## 2440                  Yes           No                  Yes                  No
## 2441                  Yes          Yes                  Yes                 Yes
## 2442                  Yes          Yes                  Yes                 Yes
## 2443                  Yes          Yes                  Yes                 Yes
## 2444                   No           No                   No                  No
## 2445                   No           No                   No                  No
## 2446                  Yes          Yes                  Yes                 Yes
## 2447                  Yes          Yes                  Yes                 Yes
## 2448                   No           No                   No                  No
## 2449                   No           No                   No                  No
## 2450                   No           No                   No                  No
## 2451                   No           No                   No                  No
## 2452                  Yes          Yes                  Yes                 Yes
## 2453                  Yes           No                  Yes                 Yes
## 2454                  Yes          Yes                  Yes                  No
## 2455                   No           No                   No                  No
## 2456                   No           No                   No                  No
## 2457                  Yes          Yes                  Yes                 Yes
## 2458                   No           No                   No                  No
## 2459                   No           No                   No                  No
## 2460                   No           No                   No                  No
## 2461                  Yes          Yes                  Yes                 Yes
## 2462                   No           No                   No                  No
## 2463                   No           No                   No                  No
## 2464                  Yes          Yes                  Yes                 Yes
## 2465                   No          Yes                  Yes                 Yes
## 2467                   No           No                   No                  No
## 2468                   No           No                   No                  No
## 2469                  Yes          Yes                  Yes                 Yes
## 2470                   No           No                   No                  No
## 2471                   No           No                   No                  No
## 2472                  Yes          Yes                  Yes                 Yes
## 2473                  Yes          Yes                  Yes                 Yes
## 2474                  Yes          Yes                  Yes                 Yes
## 2475                  Yes          Yes                  Yes                 Yes
## 2477                   No           No                   No                  No
## 2478                  Yes          Yes                  Yes                  No
## 2479                  Yes          Yes                  Yes                 Yes
## 2480                  Yes          Yes                  Yes                  No
## 2481                  Yes          Yes                  Yes                  No
## 2482                   No           No                   No                  No
## 2483                   No           No                   No                  No
## 2484                   No           No                   No                  No
## 2485                  Yes           No                   No                  No
## 2486                   No           No                   No                  No
## 2487                   No           No                   No                  No
## 2488                   No           No                   No                  No
## 2489                  Yes          Yes                  Yes                  No
## 2490                   No           No                   No                  No
## 2491                   No           No                   No                  No
## 2492                   No           No                   No                  No
## 2493                  Yes          Yes                   No                  No
## 2494                   No           No                   No                  No
## 2495                  Yes          Yes                  Yes                 Yes
## 2497                   No           No                   No                  No
## 2498                  Yes          Yes                  Yes                  No
## 2499                  Yes          Yes                  Yes                 Yes
## 2500                   No           No                   No                  No
## 2502                   No           No                   No                  No
## 2503                  Yes          Yes                  Yes                  No
## 2504                  Yes          Yes                  Yes                 Yes
## 2506                  Yes          Yes                  Yes                  No
## 2507                  Yes          Yes                  Yes                 Yes
## 2508                  Yes          Yes                  Yes                  No
## 2509                   No           No                   No                  No
## 2510                  Yes          Yes                   No                  No
## 2511                   No           No                   No                  No
## 2512                   No           No                   No                  No
## 2513                   No           No                   No                  No
## 2514                   No           No                   No                  No
## 2515                   No           No                   No                  No
## 2516                   No           No                   No                  No
## 2517                   No           No                   No                  No
## 2518                  Yes          Yes                  Yes                  No
## 2519                  Yes          Yes                  Yes                  No
## 2520                  Yes          Yes                  Yes                 Yes
## 2521                   No           No                   No                  No
## 2522                  Yes          Yes                   No                  No
## 2523                   No           No                   No                  No
## 2524                   No           No                   No                  No
## 2525                   No           No                   No                  No
## 2526                  Yes          Yes                  Yes                 Yes
## 2527                   No           No                   No                  No
## 2528                  Yes          Yes                  Yes                 Yes
## 2529                  Yes           No                  Yes                 Yes
## 2530                   No           No                   No                  No
## 2531                  Yes          Yes                  Yes                  No
## 2532                  Yes          Yes                  Yes                 Yes
## 2533                   No           No                   No                  No
## 2534                  Yes          Yes                   No                  No
## 2535                   No           No                   No                  No
## 2536                  Yes           No                  Yes                  No
## 2537                  Yes          Yes                   No                  No
## 2538                  Yes          Yes                   No                  No
## 2539                   No           No                   No                  No
## 2540                  Yes          Yes                  Yes                 Yes
## 2541                   No           No                   No                  No
## 2542                   No           No                   No                  No
## 2543                   No           No                   No                  No
## 2544                  Yes          Yes                  Yes                 Yes
## 2545                  Yes          Yes                   No                  No
## 2546                   No           No                   No                  No
## 2547                  Yes          Yes                  Yes                 Yes
## 2548                  Yes          Yes                  Yes                 Yes
## 2549                   No           No                   No                  No
## 2550                   No           No                   No                  No
## 2551                   No           No                   No                  No
## 2552                   No           No                   No                  No
## 2553                   No           No                   No                  No
## 2554                  Yes          Yes                  Yes                  No
## 2555                   No           No                   No                  No
## 2556                   No           No                   No                  No
## 2557                  Yes          Yes                   No                  No
## 2558                  Yes          Yes                  Yes                 Yes
## 2559                   No           No                   No                  No
## 2560                  Yes          Yes                   No                  No
## 2561                   No           No                   No                  No
## 2562                   No           No                   No                  No
## 2563                  Yes          Yes                   No                  No
## 2564                  Yes          Yes                  Yes                  No
## 2566                   No           No                   No                  No
## 2567                  Yes          Yes                  Yes                 Yes
## 2568                  Yes          Yes                  Yes                  No
## 2569                   No           No                   No                  No
## 2570                   No           No                   No                  No
## 2571                   No           No                   No                  No
## 2572                   No           No                   No                  No
## 2573                  Yes          Yes                  Yes                 Yes
## 2574                   No           No                   No                  No
## 2576                  Yes          Yes                  Yes                  No
## 2577                   No           No                   No                  No
## 2578                   No           No                   No                  No
## 2579                   No           No                   No                  No
## 2580                  Yes          Yes                  Yes                  No
## 2581                  Yes          Yes                  Yes                 Yes
## 2582                   No           No                   No                  No
## 2583                   No           No                   No                  No
## 2584                   No           No                   No                  No
## 2585                  Yes          Yes                  Yes                 Yes
## 2586                  Yes          Yes                  Yes                  No
## 2587                  Yes          Yes                  Yes                 Yes
## 2588                  Yes          Yes                  Yes                 Yes
## 2589                   No           No                   No                  No
## 2590                   No           No                   No                  No
## 2591                   No           No                   No                  No
## 2592                  Yes          Yes                  Yes                 Yes
## 2593                  Yes          Yes                  Yes                 Yes
## 2594                  Yes          Yes                  Yes                  No
## 2595                  Yes          Yes                  Yes                 Yes
## 2596                   No           No                   No                  No
## 2597                  Yes          Yes                  Yes                 Yes
## 2598                   No           No                   No                  No
## 2599                   No           No                   No                  No
## 2600                  Yes          Yes                  Yes                 Yes
## 2601                  Yes          Yes                  Yes                 Yes
## 2602                   No           No                   No                  No
## 2603                   No           No                   No                  No
## 2604                   No           No                   No                  No
## 2605                   No           No                   No                  No
## 2606                  Yes          Yes                   No                 Yes
## 2607                  Yes          Yes                  Yes                  No
## 2609                   No           No                   No                  No
## 2610                  Yes          Yes                  Yes                 Yes
## 2611                   No           No                   No                  No
## 2612                  Yes          Yes                  Yes                 Yes
## 2613                  Yes          Yes                  Yes                  No
## 2614                  Yes          Yes                  Yes                  No
## 2615                  Yes          Yes                  Yes                 Yes
## 2616                  Yes          Yes                  Yes                  No
## 2617                   No           No                   No                  No
## 2618                   No           No                   No                  No
## 2620                   No           No                   No                  No
## 2621                   No           No                   No                  No
## 2623                  Yes          Yes                  Yes                 Yes
## 2624                  Yes           No                  Yes                  No
## 2625                   No           No                   No                  No
## 2626                   No           No                   No                  No
## 2627                   No           No                   No                  No
## 2628                  Yes          Yes                  Yes                 Yes
## 2629                  Yes          Yes                   No                  No
## 2630                  Yes          Yes                  Yes                 Yes
## 2631                  Yes          Yes                  Yes                  No
## 2632                   No           No                   No                  No
## 2633                  Yes          Yes                  Yes                 Yes
## 2635                   No           No                   No                  No
## 2636                  Yes          Yes                  Yes                 Yes
## 2637                   No           No                   No                  No
## 2638                  Yes          Yes                  Yes                 Yes
## 2639                   No           No                   No                  No
## 2640                  Yes          Yes                  Yes                 Yes
## 2641                  Yes          Yes                  Yes                 Yes
## 2642                  Yes          Yes                  Yes                 Yes
## 2643                   No           No                   No                  No
## 2645                   No           No                   No                  No
## 2646                   No           No                  Yes                 Yes
## 2647                   No           No                   No                  No
## 2648                   No           No                   No                  No
## 2649                   No           No                   No                  No
## 2650                  Yes          Yes                  Yes                 Yes
## 2651                  Yes          Yes                  Yes                 Yes
## 2652                  Yes          Yes                  Yes                 Yes
## 2653                  Yes          Yes                  Yes                 Yes
## 2654                  Yes          Yes                  Yes                 Yes
## 2655                   No           No                   No                  No
## 2656                  Yes          Yes                  Yes                 Yes
## 2657                  Yes          Yes                  Yes                 Yes
## 2658                  Yes          Yes                  Yes                 Yes
## 2659                  Yes          Yes                  Yes                 Yes
## 2660                   No           No                   No                  No
## 2661                   No           No                   No                  No
## 2662                   No           No                   No                  No
## 2663                   No           No                   No                  No
## 2664                   No           No                   No                  No
## 2665                  Yes          Yes                  Yes                 Yes
## 2666                  Yes           No                   No                 Yes
## 2667                   No           No                   No                  No
## 2668                   No           No                   No                  No
## 2669                   No           No                   No                  No
## 2671                   No           No                   No                  No
## 2672                   No           No                   No                  No
## 2674                   No           No                   No                  No
## 2675                  Yes          Yes                   No                 Yes
## 2676                   No           No                   No                  No
## 2677                   No           No                   No                  No
## 2678                  Yes          Yes                  Yes                  No
## 2679                  Yes          Yes                  Yes                 Yes
## 2680                  Yes          Yes                  Yes                  No
## 2681                   No           No                   No                  No
## 2682                   No           No                   No                  No
## 2683                   No           No                   No                  No
## 2684                   No           No                   No                  No
## 2685                  Yes          Yes                  Yes                 Yes
## 2686                  Yes           No                   No                  No
## 2687                   No           No                   No                  No
## 2688                   No           No                   No                  No
## 2689                  Yes           No                  Yes                 Yes
## 2690                  Yes          Yes                  Yes                 Yes
## 2691                  Yes          Yes                  Yes                  No
## 2692                  Yes          Yes                  Yes                 Yes
## 2693                  Yes          Yes                  Yes                 Yes
## 2694                   No           No                   No                  No
## 2695                   No           No                   No                  No
## 2696                  Yes          Yes                  Yes                  No
## 2697                  Yes          Yes                  Yes                 Yes
## 2698                   No           No                   No                  No
## 2699                   No           No                   No                  No
## 2700                  Yes          Yes                  Yes                 Yes
## 2701                   No           No                   No                  No
## 2702                   No           No                   No                  No
## 2703                   No           No                   No                  No
## 2704                  Yes          Yes                  Yes                 Yes
## 2705                   No           No                   No                  No
## 2706                  Yes          Yes                  Yes                 Yes
## 2707                  Yes          Yes                  Yes                 Yes
## 2708                  Yes           No                  Yes                 Yes
## 2709                  Yes          Yes                  Yes                  No
## 2711                   No           No                   No                  No
## 2712                   No           No                   No                  No
## 2713                  Yes          Yes                  Yes                 Yes
## 2714                  Yes          Yes                   No                 Yes
## 2715                   No           No                   No                  No
## 2716                   No           No                   No                  No
## 2717                  Yes          Yes                  Yes                 Yes
## 2718                  Yes          Yes                  Yes                  No
## 2719                   No           No                   No                  No
## 2720                   No           No                   No                  No
## 2721                   No           No                   No                  No
## 2723                   No           No                   No                  No
## 2724                   No           No                   No                  No
## 2725                  Yes          Yes                  Yes                 Yes
## 2726                  Yes          Yes                  Yes                  No
## 2727                  Yes          Yes                  Yes                 Yes
## 2728                   No           No                   No                  No
## 2729                  Yes          Yes                  Yes                  No
## 2730                   No           No                   No                  No
## 2731                  Yes          Yes                  Yes                 Yes
## 2732                  Yes          Yes                   No                 Yes
## 2733                   No           No                   No                  No
## 2734                  Yes           No                  Yes                 Yes
## 2735                   No           No                   No                  No
## 2737                  Yes          Yes                   No                  No
## 2738                  Yes          Yes                   No                  No
## 2739                   No           No                   No                  No
## 2741                  Yes          Yes                  Yes                 Yes
## 2742                   No           No                   No                  No
## 2743                   No           No                   No                  No
## 2744                  Yes          Yes                  Yes                 Yes
## 2745                  Yes          Yes                  Yes                 Yes
## 2746                   No           No                   No                  No
## 2748                  Yes          Yes                  Yes                 Yes
## 2749                  Yes          Yes                  Yes                  No
## 2750                   No           No                   No                  No
## 2751                   No           No                   No                  No
## 2752                  Yes          Yes                  Yes                 Yes
## 2753                   No           No                   No                  No
## 2754                  Yes           No                   No                  No
## 2755                  Yes          Yes                  Yes                 Yes
## 2757                  Yes          Yes                  Yes                 Yes
## 2758                  Yes          Yes                  Yes                 Yes
## 2759                   No           No                   No                  No
## 2760                   No           No                   No                  No
## 2761                  Yes          Yes                  Yes                 Yes
## 2762                   No           No                   No                  No
## 2763                   No           No                   No                  No
## 2764                  Yes          Yes                   No                  No
## 2765                   No           No                   No                  No
## 2766                  Yes          Yes                  Yes                 Yes
## 2767                  Yes          Yes                  Yes                 Yes
## 2768                  Yes          Yes                   No                 Yes
## 2769                  Yes          Yes                  Yes                  No
## 2770                  Yes          Yes                  Yes                 Yes
## 2771                  Yes          Yes                  Yes                 Yes
## 2772                   No           No                   No                  No
## 2773                   No           No                   No                  No
## 2774                   No           No                   No                  No
## 2775                  Yes          Yes                  Yes                 Yes
## 2776                   No           No                   No                  No
## 2778                  Yes          Yes                  Yes                 Yes
## 2779                  Yes          Yes                  Yes                 Yes
## 2780                  Yes          Yes                  Yes                 Yes
## 2781                   No           No                   No                  No
## 2782                  Yes          Yes                   No                  No
## 2783                   No           No                   No                  No
## 2784                   No           No                   No                  No
## 2785                  Yes          Yes                  Yes                  No
## 2787                  Yes          Yes                  Yes                 Yes
## 2788                  Yes          Yes                  Yes                 Yes
## 2789                   No           No                   No                  No
## 2790                   No           No                   No                  No
## 2791                   No           No                   No                  No
## 2792                  Yes          Yes                  Yes                 Yes
## 2793                   No           No                   No                  No
## 2794                  Yes          Yes                  Yes                 Yes
## 2795                  Yes          Yes                  Yes                  No
## 2796                   No           No                   No                  No
## 2797                  Yes          Yes                  Yes                 Yes
## 2798                   No           No                   No                  No
## 2799                   No           No                   No                  No
## 2801                  Yes          Yes                  Yes                  No
## 2802                   No           No                   No                  No
## 2803                  Yes           No                  Yes                  No
## 2804                  Yes          Yes                  Yes                  No
## 2805                   No           No                   No                  No
## 2806                   No           No                   No                  No
## 2807                  Yes          Yes                  Yes                  No
## 2808                   No           No                   No                  No
## 2809                   No           No                   No                 Yes
## 2810                  Yes          Yes                  Yes                 Yes
## 2811                   No           No                   No                  No
## 2812                   No           No                   No                  No
## 2814                   No           No                   No                  No
## 2815                   No           No                   No                  No
## 2816                  Yes          Yes                  Yes                 Yes
## 2817                   No           No                   No                  No
## 2818                   No           No                   No                  No
## 2819                  Yes          Yes                   No                 Yes
## 2820                  Yes          Yes                   No                 Yes
## 2821                   No           No                   No                  No
## 2822                  Yes          Yes                  Yes                 Yes
## 2823                  Yes          Yes                  Yes                 Yes
## 2825                   No           No                   No                  No
## 2826                   No           No                   No                  No
## 2827                  Yes          Yes                  Yes                  No
## 2829                  Yes          Yes                   No                 Yes
## 2830                  Yes           No                   No                  No
## 2831                  Yes          Yes                   No                  No
## 2832                   No           No                   No                  No
## 2834                   No           No                   No                  No
## 2835                  Yes          Yes                  Yes                 Yes
## 2836                   No           No                   No                  No
## 2837                   No           No                   No                  No
## 2838                  Yes           No                  Yes                  No
## 2839                  Yes           No                   No                  No
## 2840                  Yes          Yes                  Yes                 Yes
## 2841                  Yes          Yes                  Yes                 Yes
## 2842                  Yes          Yes                  Yes                  No
## 2843                   No           No                   No                  No
## 2844                  Yes          Yes                  Yes                  No
## 2845                  Yes           No                  Yes                  No
## 2846                  Yes          Yes                  Yes                 Yes
## 2847                  Yes          Yes                  Yes                 Yes
## 2848                  Yes          Yes                  Yes                 Yes
## 2849                  Yes          Yes                  Yes                 Yes
## 2850                   No           No                   No                  No
## 2851                  Yes          Yes                  Yes                 Yes
## 2852                   No           No                   No                  No
## 2853                  Yes          Yes                  Yes                 Yes
## 2855                  Yes          Yes                  Yes                 Yes
## 2856                   No           No                   No                  No
## 2857                   No           No                   No                  No
## 2858                   No           No                   No                  No
## 2859                  Yes          Yes                   No                 Yes
## 2860                   No          Yes                   No                 Yes
## 2861                  Yes          Yes                  Yes                 Yes
## 2862                   No           No                   No                  No
## 2863                   No           No                   No                  No
## 2865                  Yes          Yes                  Yes                 Yes
## 2866                  Yes           No                   No                  No
## 2867                   No           No                   No                  No
## 2869                   No           No                   No                  No
## 2870                   No           No                   No                  No
## 2871                  Yes          Yes                  Yes                  No
## 2872                   No           No                   No                  No
## 2873                  Yes          Yes                  Yes                 Yes
## 2874                   No           No                   No                  No
## 2875                  Yes          Yes                  Yes                 Yes
## 2876                   No           No                   No                  No
## 2877                   No           No                   No                  No
## 2878                   No           No                   No                  No
## 2879                  Yes          Yes                  Yes                  No
## 2880                  Yes          Yes                  Yes                 Yes
## 2881                   No           No                   No                  No
## 2882                  Yes          Yes                  Yes                 Yes
## 2883                  Yes          Yes                  Yes                 Yes
## 2884                  Yes          Yes                  Yes                 Yes
## 2885                   No           No                   No                  No
## 2886                  Yes          Yes                  Yes                 Yes
## 2887                  Yes          Yes                  Yes                  No
## 2888                   No           No                   No                  No
## 2889                   No           No                   No                  No
## 2890                  Yes          Yes                   No                 Yes
## 2891                  Yes          Yes                   No                  No
## 2892                  Yes          Yes                  Yes                 Yes
## 2893                  Yes          Yes                  Yes                 Yes
## 2894                  Yes          Yes                  Yes                 Yes
## 2895                   No           No                   No                  No
## 2896                   No           No                   No                  No
## 2898                   No           No                   No                  No
## 2900                  Yes           No                  Yes                 Yes
## 2901                   No           No                   No                  No
## 2902                  Yes          Yes                  Yes                 Yes
## 2903                  Yes          Yes                  Yes                 Yes
## 2904                   No           No                   No                  No
## 2905                  Yes          Yes                  Yes                 Yes
## 2906                   No           No                   No                  No
## 2907                  Yes          Yes                  Yes                  No
## 2908                   No           No                   No                  No
## 2909                   No           No                   No                  No
## 2910                  Yes          Yes                  Yes                  No
## 2911                  Yes          Yes                   No                  No
## 2912                   No           No                   No                  No
## 2913                   No           No                   No                  No
## 2914                  Yes          Yes                  Yes                 Yes
## 2915                  Yes          Yes                  Yes                  No
## 2917                   No           No                   No                  No
## 2918                   No           No                   No                  No
## 2919                  Yes          Yes                  Yes                 Yes
## 2921                  Yes          Yes                  Yes                 Yes
## 2922                   No           No                   No                  No
## 2923                  Yes          Yes                  Yes                 Yes
## 2924                   No           No                   No                  No
## 2925                   No           No                   No                  No
## 2926                   No           No                   No                  No
## 2927                  Yes          Yes                  Yes                  No
## 2928                  Yes          Yes                  Yes                 Yes
## 2929                   No           No                   No                  No
## 2930                  Yes          Yes                   No                 Yes
## 2932                  Yes          Yes                  Yes                 Yes
## 2934                   No           No                   No                  No
## 2935                  Yes          Yes                  Yes                 Yes
## 2936                   No          Yes                  Yes                 Yes
## 2937                   No           No                   No                  No
## 2938                   No           No                   No                  No
## 2939                  Yes          Yes                  Yes                 Yes
## 2940                   No           No                   No                  No
## 2941                  Yes          Yes                  Yes                  No
## 2942                  Yes          Yes                  Yes                 Yes
## 2943                  Yes          Yes                  Yes                  No
## 2944                  Yes          Yes                  Yes                  No
## 2945                  Yes          Yes                  Yes                  No
## 2946                  Yes          Yes                  Yes                 Yes
## 2947                  Yes          Yes                  Yes                 Yes
## 2948                  Yes          Yes                  Yes                 Yes
## 2949                   No           No                   No                  No
## 2950                   No           No                   No                  No
## 2951                  Yes          Yes                  Yes                  No
## 2952                  Yes          Yes                  Yes                 Yes
## 2953                  Yes          Yes                  Yes                  No
## 2954                   No           No                   No                  No
## 2955                   No           No                   No                  No
## 2956                  Yes          Yes                  Yes                 Yes
## 2957                  Yes          Yes                  Yes                 Yes
## 2958                   No           No                   No                  No
## 2959                  Yes          Yes                  Yes                  No
## 2960                   No           No                   No                  No
## 2961                   No           No                   No                  No
## 2962                   No           No                   No                  No
## 2963                  Yes          Yes                  Yes                 Yes
## 2964                   No           No                   No                  No
## 2965                  Yes          Yes                  Yes                  No
## 2966                   No           No                   No                  No
## 2967                   No           No                   No                  No
## 2968                  Yes          Yes                  Yes                  No
## 2969                   No           No                   No                  No
## 2971                  Yes          Yes                  Yes                 Yes
## 2972                   No           No                   No                  No
## 2973                   No           No                   No                  No
## 2974                  Yes          Yes                  Yes                 Yes
## 2975                   No           No                   No                  No
## 2976                   No           No                   No                  No
## 2977                   No           No                   No                  No
## 2978                  Yes          Yes                  Yes                 Yes
## 2979                   No           No                   No                  No
## 2980                   No           No                   No                  No
## 2981                   No           No                   No                  No
## 2982                   No           No                   No                  No
## 2983                   No           No                   No                  No
## 2984                   No           No                   No                  No
## 2985                   No           No                   No                  No
## 2986                   No           No                   No                  No
## 2987                  Yes          Yes                   No                  No
## 2988                   No           No                   No                  No
## 2989                  Yes          Yes                  Yes                 Yes
## 2990                   No           No                   No                  No
## 2991                   No           No                   No                  No
## 2993                   No           No                   No                  No
## 2994                  Yes          Yes                  Yes                 Yes
## 2995                  Yes          Yes                  Yes                 Yes
## 2996                   No           No                   No                  No
## 2997                   No           No                   No                 Yes
## 2998                   No           No                   No                  No
## 2999                  Yes          Yes                  Yes                 Yes
## 3000                  Yes           No                  Yes                 Yes
## 3001                   No           No                   No                  No
## 3002                   No           No                   No                  No
## 3003                  Yes          Yes                  Yes                 Yes
## 3004                  Yes          Yes                  Yes                  No
## 3005                  Yes          Yes                  Yes                 Yes
## 3006                   No           No                   No                  No
## 3007                   No           No                   No                  No
## 3008                  Yes          Yes                   No                  No
## 3010                   No           No                   No                  No
## 3011                  Yes          Yes                   No                 Yes
## 3012                  Yes          Yes                  Yes                 Yes
## 3013                  Yes          Yes                  Yes                  No
## 3014                  Yes          Yes                  Yes                 Yes
## 3015                  Yes          Yes                   No                 Yes
## 3016                   No           No                   No                  No
## 3017                   No           No                   No                  No
## 3018                  Yes          Yes                  Yes                 Yes
## 3019                  Yes          Yes                  Yes                 Yes
## 3020                  Yes          Yes                   No                 Yes
## 3021                   No           No                   No                  No
## 3022                   No           No                   No                  No
## 3023                   No           No                   No                  No
## 3024                   No           No                   No                  No
## 3025                  Yes          Yes                  Yes                 Yes
## 3026                   No           No                   No                  No
## 3027                   No           No                   No                  No
## 3028                   No           No                   No                  No
## 3029                  Yes          Yes                  Yes                 Yes
## 3030                  Yes          Yes                  Yes                 Yes
## 3031                  Yes          Yes                  Yes                  No
## 3032                   No           No                   No                  No
## 3033                   No           No                   No                  No
## 3034                  Yes          Yes                  Yes                  No
## 3035                  Yes          Yes                  Yes                 Yes
## 3036                   No          Yes                   No                  No
## 3037                   No           No                   No                  No
## 3038                   No           No                   No                  No
## 3040                   No           No                   No                  No
## 3041                   No           No                   No                  No
## 3042                  Yes          Yes                  Yes                  No
## 3043                  Yes          Yes                  Yes                 Yes
## 3044                   No           No                   No                  No
## 3045                  Yes          Yes                  Yes                 Yes
## 3046                   No           No                   No                  No
## 3047                   No           No                   No                  No
## 3048                   No           No                   No                  No
## 3049                  Yes          Yes                  Yes                 Yes
## 3050                   No           No                   No                  No
## 3051                  Yes          Yes                  Yes                  No
## 3052                  Yes           No                   No                 Yes
## 3054                  Yes          Yes                   No                 Yes
## 3055                  Yes          Yes                  Yes                  No
## 3057                   No           No                   No                  No
## 3058                   No           No                   No                  No
## 3059                  Yes          Yes                   No                  No
## 3060                  Yes          Yes                  Yes                  No
## 3061                   No           No                   No                  No
## 3063                  Yes           No                  Yes                  No
## 3064                  Yes          Yes                  Yes                 Yes
## 3065                  Yes          Yes                  Yes                  No
## 3066                   No           No                   No                  No
## 3067                   No           No                   No                  No
## 3068                  Yes           No                   No                 Yes
## 3069                  Yes          Yes                  Yes                 Yes
## 3070                   No           No                   No                  No
## 3071                   No           No                   No                  No
## 3072                  Yes          Yes                  Yes                 Yes
## 3073                  Yes          Yes                  Yes                 Yes
## 3075                  Yes          Yes                   No                 Yes
## 3076                  Yes          Yes                  Yes                  No
## 3078                   No           No                   No                  No
## 3079                  Yes          Yes                   No                 Yes
## 3080                  Yes          Yes                  Yes                 Yes
## 3081                   No           No                   No                  No
## 3082                   No           No                   No                  No
## 3083                  Yes          Yes                  Yes                 Yes
## 3084                  Yes          Yes                  Yes                 Yes
## 3085                  Yes          Yes                  Yes                  No
## 3086                  Yes          Yes                  Yes                  No
## 3087                  Yes          Yes                   No                 Yes
## 3088                   No           No                   No                  No
## 3089                   No           No                   No                  No
## 3090                   No           No                   No                  No
## 3091                  Yes          Yes                  Yes                 Yes
## 3092                   No           No                   No                  No
## 3093                  Yes          Yes                  Yes                 Yes
## 3094                  Yes          Yes                  Yes                 Yes
## 3095                   No           No                   No                  No
## 3096                  Yes           No                  Yes                  No
## 3097                   No           No                   No                  No
## 3098                   No           No                   No                  No
## 3099                  Yes          Yes                   No                 Yes
## 3100                  Yes          Yes                  Yes                 Yes
## 3101                  Yes          Yes                  Yes                  No
## 3102                   No           No                   No                  No
## 3103                   No           No                   No                  No
## 3104                   No           No                   No                  No
## 3105                   No           No                   No                  No
## 3107                  Yes          Yes                  Yes                 Yes
## 3108                   No           No                   No                  No
## 3109                  Yes          Yes                   No                  No
## 3110                   No           No                   No                  No
## 3111                  Yes          Yes                  Yes                  No
## 3112                  Yes          Yes                   No                  No
## 3113                   No           No                   No                  No
## 3114                   No           No                   No                  No
## 3115                   No           No                   No                  No
## 3116                   No           No                   No                  No
## 3117                   No           No                   No                  No
## 3118                  Yes          Yes                  Yes                  No
## 3119                   No           No                   No                  No
## 3120                   No           No                   No                  No
## 3121                   No           No                   No                  No
## 3122                   No           No                   No                  No
## 3123                   No           No                   No                  No
## 3124                   No           No                   No                  No
## 3126                  Yes          Yes                  Yes                  No
## 3127                   No           No                   No                  No
## 3128                  Yes           No                  Yes                 Yes
## 3129                  Yes          Yes                  Yes                 Yes
## 3130                  Yes          Yes                  Yes                  No
## 3131                  Yes          Yes                  Yes                 Yes
## 3132                   No           No                   No                  No
## 3133                   No           No                   No                  No
## 3134                   No           No                   No                  No
## 3135                   No           No                   No                  No
## 3136                   No           No                   No                  No
## 3137                  Yes          Yes                  Yes                 Yes
## 3138                  Yes          Yes                  Yes                  No
## 3139                   No           No                   No                  No
## 3140                   No           No                   No                  No
## 3141                  Yes          Yes                  Yes                 Yes
## 3142                   No           No                   No                  No
## 3143                  Yes          Yes                  Yes                  No
## 3144                   No           No                   No                  No
## 3145                  Yes          Yes                  Yes                 Yes
## 3146                   No           No                   No                  No
## 3148                  Yes          Yes                   No                  No
## 3149                  Yes          Yes                  Yes                 Yes
## 3150                  Yes          Yes                   No                  No
## 3151                   No           No                   No                  No
## 3152                   No           No                   No                  No
## 3153                  Yes          Yes                  Yes                  No
## 3154                  Yes          Yes                  Yes                 Yes
## 3155                  Yes          Yes                  Yes                 Yes
## 3156                   No           No                   No                  No
## 3157                   No           No                   No                  No
## 3161                   No           No                   No                  No
## 3162                   No           No                   No                  No
## 3163                  Yes          Yes                  Yes                 Yes
## 3164                   No           No                   No                  No
## 3166                   No           No                   No                  No
## 3168                  Yes          Yes                  Yes                 Yes
## 3169                   No           No                   No                  No
## 3170                  Yes          Yes                  Yes                 Yes
## 3172                   No           No                   No                  No
## 3173                   No           No                   No                  No
## 3175                   No           No                   No                  No
## 3176                  Yes          Yes                  Yes                 Yes
## 3178                   No           No                   No                  No
## 3179                   No           No                   No                  No
## 3180                  Yes          Yes                  Yes                 Yes
## 3182                  Yes          Yes                   No                  No
## 3183                   No           No                   No                  No
## 3184                  Yes          Yes                  Yes                  No
## 3185                   No           No                   No                  No
## 3186                  Yes          Yes                   No                  No
## 3187                   No           No                   No                  No
## 3188                  Yes          Yes                  Yes                 Yes
## 3189                  Yes          Yes                  Yes                 Yes
## 3190                   No           No                   No                  No
## 3191                   No           No                   No                  No
## 3192                  Yes          Yes                  Yes                  No
## 3193                  Yes          Yes                  Yes                 Yes
## 3194                   No           No                   No                  No
## 3197                  Yes          Yes                  Yes                 Yes
## 3198                   No           No                   No                  No
## 3199                  Yes          Yes                  Yes                 Yes
## 3200                   No           No                   No                  No
## 3201                  Yes          Yes                  Yes                 Yes
## 3202                   No           No                   No                  No
## 3203                   No           No                   No                  No
## 3204                   No           No                   No                  No
## 3205                  Yes          Yes                  Yes                 Yes
## 3206                  Yes          Yes                  Yes                 Yes
## 3207                  Yes          Yes                   No                  No
## 3208                  Yes          Yes                  Yes                 Yes
## 3209                  Yes          Yes                  Yes                  No
## 3210                   No           No                   No                  No
## 3211                  Yes          Yes                  Yes                 Yes
## 3212                  Yes          Yes                  Yes                 Yes
## 3213                  Yes          Yes                  Yes                 Yes
## 3214                  Yes          Yes                  Yes                  No
## 3215                  Yes          Yes                  Yes                 Yes
## 3216                  Yes          Yes                  Yes                 Yes
## 3218                  Yes          Yes                  Yes                 Yes
## 3219                  Yes          Yes                   No                  No
## 3220                   No           No                   No                  No
## 3221                   No           No                   No                  No
## 3222                  Yes          Yes                  Yes                 Yes
## 3223                   No           No                   No                  No
## 3224                   No           No                   No                  No
## 3225                   No           No                   No                  No
## 3226                  Yes          Yes                  Yes                 Yes
## 3227                   No           No                   No                  No
## 3228                  Yes          Yes                  Yes                  No
## 3229                  Yes          Yes                  Yes                  No
## 3230                   No           No                   No                  No
## 3231                   No           No                   No                  No
## 3232                  Yes          Yes                  Yes                 Yes
## 3234                  Yes          Yes                   No                  No
## 3235                  Yes          Yes                  Yes                  No
## 3236                   No           No                   No                  No
## 3237                  Yes          Yes                   No                 Yes
## 3238                   No           No                   No                  No
## 3239                  Yes          Yes                   No                  No
## 3240                  Yes          Yes                  Yes                  No
## 3241                  Yes          Yes                  Yes                  No
## 3242                   No           No                   No                  No
## 3243                   No           No                   No                  No
## 3245                   No           No                   No                  No
## 3246                   No           No                   No                 Yes
## 3248                   No           No                   No                  No
## 3249                  Yes          Yes                  Yes                 Yes
## 3251                   No           No                   No                  No
## 3252                  Yes          Yes                   No                  No
## 3253                   No           No                   No                  No
## 3254                   No           No                   No                  No
## 3255                   No           No                   No                  No
## 3256                  Yes           No                   No                 Yes
## 3258                   No           No                   No                  No
## 3259                   No           No                   No                  No
## 3260                  Yes          Yes                  Yes                 Yes
## 3262                  Yes          Yes                  Yes                 Yes
## 3263                   No           No                   No                  No
## 3264                   No           No                   No                  No
## 3265                   No           No                   No                  No
## 3266                  Yes          Yes                  Yes                  No
## 3267                   No           No                   No                  No
## 3268                  Yes          Yes                  Yes                 Yes
## 3269                   No           No                   No                  No
## 3270                  Yes          Yes                  Yes                  No
## 3271                   No           No                   No                  No
## 3272                  Yes          Yes                  Yes                 Yes
## 3273                  Yes          Yes                  Yes                 Yes
## 3274                   No           No                   No                  No
## 3275                   No           No                   No                  No
## 3276                   No           No                   No                  No
## 3277                   No           No                   No                  No
## 3278                   No           No                   No                  No
## 3279                  Yes          Yes                   No                  No
## 3280                   No           No                   No                  No
## 3281                  Yes          Yes                  Yes                  No
## 3282                   No           No                   No                  No
## 3283                   No           No                   No                  No
## 3284                   No           No                   No                  No
## 3285                   No           No                   No                  No
## 3287                  Yes          Yes                  Yes                 Yes
## 3288                  Yes          Yes                  Yes                 Yes
## 3289                   No           No                   No                  No
## 3290                   No           No                   No                  No
## 3291                  Yes          Yes                  Yes                  No
## 3292                   No           No                   No                  No
## 3293                  Yes          Yes                  Yes                  No
## 3294                   No           No                   No                  No
## 3295                  Yes           No                  Yes                 Yes
## 3296                   No           No                   No                 Yes
## 3297                   No           No                   No                  No
## 3298                   No           No                   No                  No
## 3299                  Yes          Yes                  Yes                 Yes
## 3300                  Yes          Yes                  Yes                 Yes
## 3301                  Yes          Yes                  Yes                 Yes
## 3303                  Yes           No                   No                 Yes
## 3304                  Yes          Yes                   No                  No
## 3305                   No           No                   No                  No
## 3306                  Yes          Yes                  Yes                  No
## 3307                   No           No                   No                  No
## 3308                  Yes          Yes                  Yes                 Yes
## 3309                   No           No                   No                  No
## 3310                  Yes          Yes                  Yes                 Yes
## 3311                  Yes          Yes                  Yes                 Yes
## 3312                  Yes          Yes                  Yes                 Yes
## 3313                  Yes          Yes                   No                  No
## 3314                  Yes          Yes                  Yes                 Yes
## 3315                   No           No                   No                  No
## 3316                  Yes          Yes                  Yes                 Yes
## 3317                  Yes          Yes                  Yes                 Yes
## 3318                  Yes          Yes                   No                  No
## 3320                   No           No                   No                  No
## 3321                  Yes          Yes                  Yes                 Yes
## 3322                   No           No                   No                  No
## 3323                  Yes          Yes                  Yes                  No
## 3324                   No           No                   No                  No
## 3325                  Yes          Yes                  Yes                 Yes
## 3326                   No           No                   No                  No
## 3327                   No           No                   No                  No
## 3328                   No           No                   No                  No
## 3329                  Yes          Yes                  Yes                 Yes
## 3330                  Yes          Yes                  Yes                  No
## 3331                  Yes          Yes                  Yes                 Yes
## 3332                   No           No                   No                  No
## 3333                  Yes          Yes                  Yes                 Yes
## 3334                   No           No                   No                  No
## 3335                  Yes          Yes                  Yes                 Yes
## 3336                   No           No                   No                  No
## 3337                  Yes          Yes                  Yes                 Yes
## 3338                  Yes          Yes                  Yes                 Yes
## 3339                   No           No                   No                  No
## 3340                  Yes          Yes                  Yes                  No
## 3341                   No           No                   No                  No
## 3342                  Yes          Yes                  Yes                 Yes
## 3343                   No           No                   No                 Yes
## 3344                   No           No                   No                  No
## 3345                   No           No                   No                  No
## 3346                  Yes          Yes                  Yes                  No
## 3347                   No           No                   No                  No
## 3349                   No           No                   No                  No
## 3350                  Yes          Yes                  Yes                 Yes
## 3351                   No           No                   No                  No
## 3352                   No           No                   No                  No
## 3353                  Yes          Yes                  Yes                 Yes
## 3354                   No           No                   No                  No
## 3355                  Yes          Yes                  Yes                  No
## 3356                   No           No                   No                  No
## 3357                   No           No                   No                  No
## 3358                  Yes          Yes                  Yes                  No
## 3359                   No           No                   No                  No
## 3360                   No           No                   No                  No
## 3361                   No           No                   No                  No
## 3362                  Yes          Yes                   No                 Yes
## 3363                  Yes           No                  Yes                 Yes
## 3365                   No           No                   No                  No
## 3366                   No           No                   No                  No
## 3367                   No           No                   No                  No
## 3368                   No           No                  Yes                  No
## 3369                   No           No                   No                  No
## 3370                  Yes          Yes                  Yes                  No
## 3372                  Yes          Yes                  Yes                  No
## 3373                   No           No                   No                  No
## 3374                  Yes          Yes                   No                 Yes
## 3375                  Yes          Yes                  Yes                  No
## 3376                   No           No                   No                  No
## 3377                   No           No                   No                  No
## 3378                   No           No                  Yes                 Yes
## 3379                  Yes          Yes                   No                  No
## 3380                   No           No                   No                  No
## 3381                   No           No                   No                  No
## 3382                   No           No                   No                  No
## 3383                   No           No                   No                  No
## 3384                   No           No                   No                  No
## 3385                   No           No                   No                  No
## 3386                  Yes          Yes                   No                  No
## 3387                   No           No                   No                  No
## 3388                  Yes          Yes                   No                  No
## 3389                   No           No                   No                  No
## 3390                   No           No                   No                  No
## 3391                  Yes          Yes                  Yes                 Yes
## 3392                  Yes          Yes                  Yes                  No
## 3393                   No           No                   No                  No
## 3394                  Yes          Yes                  Yes                 Yes
## 3395                  Yes           No                   No                 Yes
## 3396                  Yes          Yes                   No                  No
## 3397                  Yes          Yes                   No                 Yes
## 3398                  Yes          Yes                  Yes                 Yes
## 3399                   No           No                   No                  No
## 3400                  Yes          Yes                   No                 Yes
## 3402                   No           No                   No                  No
## 3404                   No           No                   No                  No
## 3405                  Yes          Yes                  Yes                 Yes
## 3406                   No           No                   No                  No
## 3407                  Yes          Yes                  Yes                 Yes
## 3408                   No           No                   No                  No
## 3409                   No           No                   No                  No
## 3410                  Yes          Yes                  Yes                  No
## 3411                  Yes          Yes                   No                 Yes
## 3412                   No           No                   No                  No
## 3413                   No           No                   No                  No
## 3414                   No           No                   No                  No
## 3415                   No           No                   No                  No
## 3416                  Yes          Yes                  Yes                 Yes
## 3417                  Yes          Yes                  Yes                 Yes
## 3418                  Yes          Yes                  Yes                 Yes
## 3419                   No           No                   No                  No
## 3420                   No           No                   No                  No
## 3421                  Yes          Yes                  Yes                  No
## 3422                   No           No                   No                  No
## 3423                   No           No                   No                  No
## 3424                  Yes          Yes                  Yes                 Yes
## 3425                  Yes          Yes                  Yes                 Yes
## 3426                   No           No                   No                  No
## 3427                   No           No                   No                  No
## 3428                   No           No                   No                  No
## 3429                   No           No                   No                  No
## 3430                  Yes           No                  Yes                 Yes
## 3431                  Yes          Yes                  Yes                  No
## 3432                   No           No                   No                  No
## 3433                   No           No                   No                  No
## 3434                  Yes          Yes                  Yes                  No
## 3436                  Yes          Yes                  Yes                  No
## 3437                  Yes          Yes                   No                 Yes
## 3438                  Yes          Yes                   No                  No
## 3439                  Yes          Yes                  Yes                 Yes
## 3440                  Yes          Yes                  Yes                  No
## 3441                  Yes          Yes                  Yes                 Yes
## 3442                   No           No                   No                  No
## 3443                   No           No                   No                  No
## 3444                  Yes          Yes                  Yes                  No
## 3445                  Yes          Yes                  Yes                 Yes
## 3446                  Yes          Yes                  Yes                 Yes
## 3447                   No           No                   No                  No
## 3448                  Yes          Yes                  Yes                 Yes
## 3449                   No           No                   No                  No
## 3450                  Yes          Yes                  Yes                  No
## 3451                   No           No                   No                  No
## 3452                  Yes          Yes                  Yes                 Yes
## 3453                  Yes          Yes                  Yes                 Yes
## 3454                   No           No                   No                  No
## 3455                  Yes          Yes                  Yes                  No
## 3456                   No           No                   No                  No
## 3457                  Yes          Yes                  Yes                 Yes
## 3458                  Yes          Yes                  Yes                 Yes
## 3459                  Yes          Yes                  Yes                 Yes
## 3460                  Yes          Yes                  Yes                 Yes
## 3461                   No           No                   No                  No
## 3462                   No           No                   No                  No
## 3463                  Yes          Yes                  Yes                  No
## 3464                   No           No                   No                  No
## 3465                  Yes          Yes                   No                  No
## 3466                   No           No                   No                  No
## 3467                  Yes          Yes                   No                  No
## 3468                   No           No                   No                  No
## 3469                  Yes          Yes                   No                  No
## 3470                  Yes          Yes                  Yes                  No
## 3471                   No           No                   No                  No
## 3472                   No           No                   No                  No
## 3473                  Yes          Yes                   No                 Yes
## 3474                   No           No                   No                  No
## 3476                  Yes          Yes                  Yes                  No
## 3477                   No           No                   No                  No
## 3478                   No           No                   No                  No
## 3479                   No           No                   No                  No
## 3480                   No           No                   No                  No
## 3481                  Yes          Yes                  Yes                  No
## 3482                   No           No                   No                  No
## 3484                   No           No                   No                  No
## 3485                   No           No                   No                  No
## 3486                   No           No                   No                  No
## 3487                   No           No                   No                  No
## 3488                   No           No                   No                  No
## 3489                  Yes          Yes                  Yes                 Yes
## 3490                   No           No                   No                  No
## 3491                   No           No                   No                  No
## 3492                   No           No                   No                  No
## 3493                   No           No                   No                  No
## 3494                   No           No                   No                  No
## 3495                   No           No                   No                  No
## 3496                  Yes          Yes                  Yes                  No
## 3497                   No           No                   No                  No
## 3498                  Yes          Yes                  Yes                  No
## 3499                   No           No                   No                  No
## 3500                  Yes           No                   No                  No
## 3501                   No           No                   No                  No
## 3502                  Yes          Yes                  Yes                  No
## 3503                  Yes           No                  Yes                 Yes
## 3504                  Yes          Yes                  Yes                  No
## 3505                  Yes          Yes                  Yes                 Yes
## 3506                   No           No                   No                  No
## 3508                  Yes          Yes                  Yes                 Yes
## 3509                  Yes          Yes                   No                 Yes
## 3510                  Yes          Yes                  Yes                 Yes
## 3511                   No           No                   No                  No
## 3512                   No           No                   No                  No
## 3513                   No           No                   No                  No
## 3514                  Yes          Yes                  Yes                 Yes
## 3515                  Yes          Yes                  Yes                  No
## 3516                   No           No                   No                  No
## 3517                   No           No                   No                  No
## 3518                  Yes           No                  Yes                 Yes
## 3519                  Yes           No                   No                 Yes
## 3520                   No           No                   No                  No
## 3521                   No           No                   No                  No
## 3522                  Yes          Yes                  Yes                 Yes
## 3523                  Yes          Yes                  Yes                 Yes
## 3524                  Yes          Yes                  Yes                 Yes
## 3525                  Yes          Yes                  Yes                 Yes
## 3526                   No           No                   No                  No
## 3527                   No           No                   No                  No
## 3528                   No           No                   No                  No
## 3530                   No           No                   No                  No
## 3531                   No           No                   No                  No
## 3532                   No           No                   No                  No
## 3533                   No           No                   No                  No
## 3535                  Yes          Yes                  Yes                 Yes
## 3536                  Yes          Yes                  Yes                  No
## 3537                   No           No                   No                  No
## 3538                   No           No                   No                  No
## 3539                  Yes          Yes                  Yes                 Yes
## 3540                  Yes           No                   No                  No
## 3541                  Yes          Yes                   No                 Yes
## 3542                  Yes          Yes                  Yes                  No
## 3543                  Yes          Yes                  Yes                  No
## 3545                   No           No                   No                  No
## 3546                   No           No                   No                  No
## 3547                  Yes          Yes                  Yes                  No
## 3548                  Yes          Yes                  Yes                  No
## 3549                  Yes          Yes                  Yes                 Yes
## 3550                   No           No                   No                  No
## 3551                   No           No                   No                  No
## 3552                   No           No                   No                  No
## 3553                  Yes          Yes                  Yes                 Yes
## 3554                  Yes          Yes                   No                 Yes
## 3555                  Yes          Yes                  Yes                  No
## 3556                   No           No                   No                  No
## 3557                  Yes          Yes                  Yes                 Yes
## 3558                  Yes          Yes                  Yes                  No
## 3559                   No           No                   No                  No
## 3560                   No           No                   No                  No
## 3561                  Yes          Yes                  Yes                 Yes
## 3562                   No           No                   No                  No
## 3563                  Yes          Yes                  Yes                 Yes
## 3564                  Yes          Yes                   No                  No
## 3566                   No           No                   No                  No
## 3567                  Yes          Yes                  Yes                 Yes
## 3568                   No           No                   No                  No
## 3570                  Yes          Yes                  Yes                  No
## 3573                  Yes          Yes                  Yes                 Yes
## 3574                  Yes          Yes                  Yes                 Yes
## 3576                  Yes          Yes                  Yes                 Yes
## 3577                   No           No                   No                  No
## 3578                   No           No                   No                  No
## 3579                   No           No                   No                  No
## 3580                   No           No                   No                  No
## 3581                   No           No                   No                  No
## 3582                  Yes          Yes                  Yes                 Yes
## 3583                  Yes          Yes                  Yes                 Yes
## 3584                  Yes          Yes                   No                  No
## 3585                  Yes          Yes                   No                 Yes
## 3586                   No           No                   No                  No
## 3587                  Yes          Yes                  Yes                  No
## 3588                   No           No                   No                  No
## 3589                  Yes          Yes                  Yes                 Yes
## 3591                  Yes          Yes                  Yes                  No
## 3592                   No           No                   No                  No
## 3593                   No           No                   No                  No
## 3594                  Yes          Yes                   No                 Yes
## 3595                   No           No                   No                  No
## 3596                  Yes          Yes                   No                  No
## 3597                  Yes           No                  Yes                 Yes
## 3598                  Yes           No                  Yes                 Yes
## 3599                  Yes           No                   No                  No
## 3600                  Yes          Yes                  Yes                 Yes
## 3601                  Yes           No                  Yes                 Yes
## 3602                  Yes          Yes                  Yes                  No
## 3603                  Yes          Yes                  Yes                 Yes
## 3605                  Yes          Yes                  Yes                  No
## 3606                  Yes          Yes                   No                  No
## 3608                  Yes          Yes                  Yes                 Yes
## 3609                   No           No                   No                  No
## 3610                   No           No                   No                  No
## 3611                  Yes          Yes                  Yes                 Yes
## 3612                   No           No                   No                  No
## 3613                  Yes          Yes                   No                 Yes
## 3614                   No           No                   No                  No
## 3615                  Yes          Yes                  Yes                 Yes
## 3616                  Yes          Yes                  Yes                  No
## 3617                  Yes          Yes                  Yes                 Yes
## 3618                  Yes          Yes                  Yes                 Yes
## 3619                  Yes          Yes                   No                  No
## 3620                  Yes          Yes                   No                 Yes
## 3621                   No           No                   No                  No
## 3622                  Yes          Yes                   No                  No
## 3623                   No           No                   No                  No
## 3624                   No           No                   No                  No
## 3625                  Yes          Yes                  Yes                 Yes
## 3626                   No          Yes                  Yes                 Yes
## 3627                  Yes          Yes                   No                  No
## 3628                   No           No                   No                  No
## 3629                   No           No                   No                  No
## 3630                   No           No                   No                  No
## 3632                   No           No                   No                  No
## 3633                   No           No                   No                  No
## 3634                   No           No                   No                  No
## 3635                  Yes          Yes                  Yes                 Yes
## 3636                  Yes          Yes                   No                  No
## 3637                   No           No                   No                  No
## 3638                   No           No                   No                  No
## 3639                  Yes          Yes                  Yes                 Yes
## 3640                   No           No                   No                  No
## 3641                  Yes          Yes                  Yes                 Yes
## 3642                   No           No                   No                  No
## 3643                   No           No                   No                  No
## 3644                   No           No                   No                  No
## 3645                  Yes          Yes                  Yes                 Yes
## 3646                   No           No                   No                  No
## 3647                  Yes          Yes                  Yes                  No
## 3648                   No           No                   No                  No
## 3649                  Yes          Yes                  Yes                 Yes
## 3651                   No           No                   No                  No
## 3652                  Yes           No                  Yes                  No
## 3653                  Yes          Yes                  Yes                 Yes
## 3654                  Yes          Yes                   No                  No
## 3655                  Yes          Yes                  Yes                 Yes
## 3656                  Yes          Yes                  Yes                  No
## 3657                   No           No                   No                  No
## 3658                  Yes          Yes                  Yes                  No
## 3659                  Yes          Yes                  Yes                 Yes
## 3660                   No           No                   No                  No
## 3661                  Yes          Yes                  Yes                 Yes
## 3662                   No           No                   No                  No
## 3663                  Yes          Yes                  Yes                 Yes
## 3664                   No           No                   No                  No
## 3665                   No           No                   No                  No
## 3666                  Yes          Yes                  Yes                  No
## 3667                  Yes          Yes                  Yes                 Yes
## 3668                   No           No                   No                 Yes
## 3669                  Yes          Yes                  Yes                  No
## 3671                  Yes          Yes                  Yes                 Yes
## 3672                  Yes          Yes                  Yes                 Yes
## 3673                  Yes           No                   No                  No
## 3675                   No           No                   No                  No
## 3676                  Yes          Yes                  Yes                 Yes
## 3677                  Yes          Yes                  Yes                 Yes
## 3678                   No           No                   No                  No
## 3679                  Yes          Yes                  Yes                  No
## 3680                  Yes          Yes                  Yes                 Yes
## 3681                   No           No                   No                  No
## 3682                  Yes           No                  Yes                  No
## 3683                  Yes          Yes                  Yes                 Yes
## 3684                   No           No                   No                  No
## 3685                  Yes          Yes                  Yes                 Yes
## 3686                   No           No                   No                  No
## 3687                  Yes          Yes                  Yes                 Yes
## 3688                   No           No                   No                  No
## 3689                  Yes          Yes                   No                 Yes
## 3690                   No           No                   No                  No
## 3691                  Yes          Yes                  Yes                 Yes
## 3692                  Yes          Yes                  Yes                  No
## 3693                  Yes          Yes                  Yes                 Yes
## 3694                   No           No                   No                  No
## 3695                   No           No                   No                  No
## 3696                  Yes          Yes                  Yes                 Yes
## 3697                  Yes          Yes                   No                  No
## 3698                  Yes          Yes                  Yes                  No
## 3699                   No           No                   No                  No
## 3700                  Yes          Yes                  Yes                  No
## 3701                  Yes          Yes                  Yes                 Yes
## 3702                  Yes          Yes                  Yes                 Yes
## 3703                   No           No                   No                  No
## 3704                   No           No                   No                  No
## 3705                  Yes           No                   No                  No
## 3706                  Yes           No                  Yes                 Yes
## 3707                   No           No                   No                  No
## 3708                  Yes          Yes                  Yes                 Yes
## 3709                   No           No                   No                  No
## 3710                  Yes          Yes                   No                  No
## 3711                  Yes          Yes                  Yes                 Yes
## 3712                   No           No                   No                  No
## 3713                   No           No                   No                  No
## 3714                  Yes          Yes                  Yes                  No
## 3715                   No           No                   No                  No
## 3716                  Yes          Yes                  Yes                 Yes
## 3717                  Yes          Yes                  Yes                 Yes
## 3718                   No           No                   No                  No
## 3719                  Yes          Yes                  Yes                 Yes
## 3720                  Yes          Yes                   No                 Yes
## 3721                   No           No                   No                  No
## 3722                  Yes          Yes                  Yes                 Yes
## 3723                   No           No                   No                  No
## 3724                   No           No                   No                  No
## 3725                  Yes          Yes                  Yes                  No
## 3726                  Yes          Yes                  Yes                 Yes
## 3727                   No           No                   No                  No
## 3728                  Yes          Yes                   No                  No
## 3729                   No           No                   No                  No
## 3730                  Yes          Yes                  Yes                  No
## 3731                   No           No                   No                  No
## 3732                   No           No                   No                  No
## 3733                  Yes          Yes                  Yes                  No
## 3734                   No           No                   No                  No
## 3735                  Yes          Yes                  Yes                  No
## 3736                  Yes           No                  Yes                 Yes
## 3737                  Yes          Yes                  Yes                 Yes
## 3738                   No           No                   No                  No
## 3739                  Yes          Yes                   No                  No
## 3740                   No           No                   No                  No
## 3741                   No           No                   No                  No
## 3742                  Yes          Yes                  Yes                 Yes
## 3743                  Yes          Yes                  Yes                 Yes
## 3744                  Yes          Yes                  Yes                 Yes
## 3745                  Yes          Yes                  Yes                  No
## 3746                  Yes          Yes                   No                  No
## 3747                   No           No                   No                  No
## 3748                  Yes          Yes                  Yes                 Yes
## 3749                   No           No                   No                  No
## 3750                   No           No                   No                  No
## 3751                   No           No                   No                  No
## 3752                  Yes          Yes                  Yes                 Yes
## 3753                   No           No                   No                  No
## 3754                   No           No                   No                  No
## 3755                   No          Yes                  Yes                  No
## 3756                  Yes          Yes                  Yes                 Yes
## 3757                   No           No                   No                  No
## 3758                  Yes          Yes                  Yes                 Yes
## 3759                  Yes          Yes                  Yes                 Yes
## 3760                   No           No                   No                  No
## 3761                   No           No                   No                  No
## 3762                   No           No                   No                  No
## 3763                  Yes          Yes                  Yes                  No
## 3764                  Yes          Yes                  Yes                  No
## 3765                   No           No                   No                  No
## 3766                   No           No                   No                  No
## 3767                  Yes          Yes                  Yes                  No
## 3769                  Yes          Yes                  Yes                 Yes
## 3770                   No           No                   No                  No
## 3771                  Yes          Yes                   No                  No
## 3772                   No           No                   No                  No
## 3773                   No           No                   No                  No
## 3774                  Yes          Yes                  Yes                 Yes
## 3775                   No           No                   No                  No
## 3776                   No           No                   No                  No
## 3777                   No           No                   No                  No
## 3778                   No           No                   No                  No
## 3779                  Yes          Yes                  Yes                 Yes
## 3780                  Yes          Yes                  Yes                  No
## 3781                   No           No                   No                  No
## 3782                   No           No                   No                  No
## 3783                   No           No                   No                  No
## 3785                   No           No                   No                  No
## 3786                  Yes          Yes                  Yes                  No
## 3787                   No           No                   No                  No
## 3788                  Yes           No                   No                  No
## 3789                  Yes          Yes                  Yes                 Yes
## 3790                  Yes          Yes                   No                  No
## 3791                   No           No                   No                  No
## 3792                   No           No                   No                  No
## 3793                   No           No                   No                  No
## 3794                  Yes          Yes                  Yes                  No
## 3795                   No           No                   No                  No
## 3796                   No           No                   No                  No
## 3797                   No           No                   No                  No
## 3798                  Yes          Yes                  Yes                  No
## 3799                  Yes          Yes                  Yes                 Yes
## 3800                   No           No                   No                  No
## 3801                  Yes          Yes                  Yes                 Yes
## 3802                  Yes          Yes                  Yes                 Yes
## 3803                  Yes          Yes                  Yes                 Yes
## 3805                   No           No                   No                  No
## 3806                   No           No                   No                  No
## 3807                   No           No                   No                  No
## 3808                  Yes          Yes                   No                  No
## 3809                  Yes          Yes                  Yes                 Yes
## 3810                   No           No                   No                  No
## 3811                   No           No                   No                  No
## 3812                  Yes          Yes                   No                  No
## 3813                  Yes          Yes                   No                  No
## 3814                  Yes          Yes                  Yes                 Yes
## 3815                  Yes          Yes                   No                  No
## 3816                  Yes          Yes                  Yes                 Yes
## 3817                   No           No                   No                  No
## 3818                  Yes          Yes                  Yes                 Yes
## 3819                   No           No                   No                  No
## 3820                  Yes          Yes                  Yes                 Yes
## 3821                   No           No                   No                  No
## 3822                  Yes          Yes                  Yes                 Yes
## 3823                   No           No                   No                  No
## 3824                   No           No                   No                  No
## 3825                   No           No                   No                  No
## 3826                   No           No                   No                  No
## 3827                  Yes          Yes                  Yes                  No
## 3828                   No           No                   No                  No
## 3829                   No           No                   No                  No
## 3830                   No           No                   No                  No
## 3831                  Yes           No                   No                  No
## 3832                  Yes          Yes                  Yes                 Yes
## 3833                   No           No                   No                  No
## 3834                  Yes          Yes                  Yes                 Yes
## 3835                  Yes          Yes                  Yes                  No
## 3836                  Yes          Yes                  Yes                  No
## 3837                   No           No                   No                  No
## 3838                   No           No                   No                  No
## 3839                   No           No                   No                  No
## 3840                   No           No                   No                  No
## 3841                   No           No                   No                  No
## 3842                  Yes          Yes                  Yes                  No
## 3843                  Yes          Yes                  Yes                 Yes
## 3844                   No           No                   No                  No
## 3845                   No           No                   No                  No
## 3847                  Yes          Yes                  Yes                  No
## 3848                  Yes          Yes                  Yes                  No
## 3849                   No           No                   No                  No
## 3850                   No           No                   No                  No
## 3851                   No           No                   No                  No
## 3852                  Yes          Yes                  Yes                 Yes
## 3853                   No           No                   No                  No
## 3855                  Yes          Yes                   No                  No
## 3856                  Yes           No                   No                  No
## 3857                   No           No                   No                  No
## 3858                   No           No                   No                  No
## 3859                   No           No                   No                  No
## 3860                   No           No                   No                  No
## 3863                   No           No                   No                  No
## 3864                  Yes          Yes                  Yes                 Yes
## 3865                  Yes          Yes                  Yes                  No
## 3866                   No           No                   No                  No
## 3867                   No          Yes                  Yes                 Yes
## 3868                   No           No                   No                  No
## 3869                   No           No                   No                  No
## 3870                   No           No                   No                  No
## 3871                  Yes          Yes                  Yes                 Yes
## 3872                   No           No                   No                  No
## 3873                   No           No                   No                  No
## 3874                  Yes          Yes                  Yes                 Yes
## 3875                  Yes          Yes                   No                  No
## 3876                  Yes          Yes                  Yes                 Yes
## 3877                   No           No                   No                  No
## 3878                   No           No                   No                  No
## 3879                   No           No                   No                  No
## 3880                  Yes           No                  Yes                 Yes
## 3882                   No           No                   No                  No
## 3883                  Yes          Yes                  Yes                 Yes
## 3884                  Yes          Yes                  Yes                 Yes
## 3885                   No           No                   No                  No
## 3886                   No           No                   No                  No
## 3887                   No           No                   No                  No
## 3888                   No           No                   No                  No
## 3889                   No           No                   No                  No
## 3891                  Yes          Yes                  Yes                 Yes
## 3892                  Yes          Yes                  Yes                 Yes
## 3893                   No           No                   No                  No
## 3894                   No           No                   No                  No
## 3895                  Yes          Yes                  Yes                 Yes
## 3896                  Yes          Yes                  Yes                  No
## 3897                  Yes          Yes                  Yes                 Yes
## 3898                   No           No                   No                  No
## 3900                   No           No                   No                  No
## 3901                  Yes          Yes                   No                 Yes
## 3902                   No           No                   No                  No
## 3903                  Yes          Yes                  Yes                  No
## 3905                   No           No                   No                  No
## 3906                  Yes          Yes                  Yes                 Yes
## 3907                  Yes          Yes                   No                  No
## 3908                   No           No                   No                  No
## 3909                   No           No                   No                  No
## 3910                   No           No                   No                  No
## 3911                  Yes           No                   No                  No
## 3912                   No           No                   No                  No
## 3913                  Yes          Yes                   No                 Yes
## 3914                  Yes          Yes                   No                 Yes
## 3915                  Yes          Yes                  Yes                  No
## 3916                   No           No                   No                  No
## 3917                   No           No                   No                  No
## 3918                  Yes          Yes                  Yes                 Yes
## 3919                   No           No                   No                  No
## 3920                   No           No                   No                  No
## 3921                  Yes          Yes                   No                  No
## 3922                  Yes          Yes                  Yes                 Yes
## 3923                  Yes          Yes                  Yes                  No
## 3924                   No           No                   No                  No
## 3925                  Yes          Yes                  Yes                 Yes
## 3926                  Yes          Yes                  Yes                  No
## 3927                   No           No                   No                  No
## 3928                   No           No                   No                  No
## 3929                  Yes          Yes                  Yes                 Yes
## 3930                  Yes          Yes                  Yes                  No
## 3931                  Yes          Yes                  Yes                 Yes
## 3932                  Yes          Yes                   No                  No
## 3934                   No           No                   No                  No
## 3935                   No           No                   No                  No
## 3936                   No           No                   No                  No
## 3937                  Yes          Yes                  Yes                 Yes
## 3938                   No          Yes                  Yes                  No
## 3939                  Yes          Yes                  Yes                  No
## 3940                  Yes          Yes                  Yes                 Yes
## 3941                   No           No                   No                  No
## 3942                  Yes          Yes                  Yes                  No
## 3943                   No           No                   No                  No
## 3944                   No           No                   No                  No
## 3945                   No           No                   No                  No
## 3946                  Yes          Yes                  Yes                  No
## 3947                  Yes          Yes                  Yes                 Yes
## 3948                  Yes          Yes                  Yes                 Yes
## 3949                   No           No                   No                  No
## 3951                   No           No                   No                  No
## 3952                   No           No                   No                  No
## 3953                  Yes          Yes                  Yes                  No
## 3954                   No           No                   No                  No
## 3955                  Yes          Yes                   No                  No
## 3956                  Yes          Yes                  Yes                  No
## 3957                   No           No                   No                  No
## 3958                  Yes          Yes                   No                  No
## 3959                  Yes          Yes                  Yes                 Yes
## 3960                  Yes          Yes                  Yes                 Yes
## 3961                  Yes          Yes                  Yes                 Yes
## 3963                  Yes          Yes                  Yes                 Yes
## 3964                  Yes           No                   No                 Yes
## 3966                  Yes          Yes                   No                 Yes
## 3967                  Yes          Yes                  Yes                 Yes
## 3969                  Yes          Yes                  Yes                 Yes
## 3970                  Yes          Yes                  Yes                 Yes
## 3971                   No           No                   No                  No
## 3972                   No           No                   No                  No
## 3973                   No           No                   No                  No
## 3974                   No           No                   No                  No
## 3975                   No           No                   No                  No
## 3976                   No           No                   No                  No
## 3977                   No           No                   No                  No
## 3978                  Yes          Yes                  Yes                  No
## 3979                  Yes          Yes                  Yes                 Yes
## 3980                  Yes          Yes                  Yes                  No
## 3981                   No           No                   No                  No
## 3982                  Yes           No                  Yes                  No
## 3983                   No           No                   No                  No
## 3984                  Yes          Yes                  Yes                  No
## 3985                   No           No                   No                  No
## 3986                  Yes          Yes                  Yes                  No
## 3987                   No          Yes                   No                  No
## 3988                  Yes          Yes                  Yes                 Yes
## 3989                  Yes          Yes                  Yes                  No
## 3990                   No           No                   No                  No
## 3991                  Yes          Yes                  Yes                 Yes
## 3992                  Yes          Yes                  Yes                 Yes
## 3993                   No           No                   No                  No
## 3994                   No           No                   No                  No
## 3995                  Yes          Yes                  Yes                 Yes
## 3996                   No           No                   No                  No
## 3997                   No           No                   No                  No
## 3998                  Yes          Yes                  Yes                  No
## 3999                   No          Yes                  Yes                 Yes
## 4000                  Yes          Yes                  Yes                  No
## 4001                   No           No                   No                  No
## 4002                   No           No                   No                  No
## 4003                  Yes          Yes                  Yes                 Yes
## 4004                  Yes          Yes                  Yes                 Yes
## 4007                  Yes          Yes                  Yes                  No
## 4008                  Yes          Yes                  Yes                 Yes
## 4009                   No           No                   No                  No
## 4010                   No           No                   No                  No
## 4012                   No           No                   No                  No
## 4013                  Yes          Yes                  Yes                  No
## 4014                   No           No                   No                  No
## 4015                   No           No                   No                  No
## 4016                  Yes          Yes                   No                  No
## 4017                   No           No                   No                  No
## 4018                   No           No                   No                  No
## 4019                  Yes           No                   No                  No
## 4020                  Yes          Yes                  Yes                 Yes
## 4021                   No           No                   No                  No
## 4022                  Yes          Yes                  Yes                 Yes
## 4023                   No           No                   No                  No
## 4025                   No           No                   No                  No
## 4027                  Yes          Yes                  Yes                  No
## 4028                  Yes          Yes                  Yes                  No
## 4029                   No           No                   No                  No
## 4030                   No           No                   No                  No
## 4031                  Yes          Yes                  Yes                 Yes
## 4032                   No           No                   No                  No
## 4033                   No           No                   No                  No
## 4034                   No           No                   No                  No
## 4035                  Yes          Yes                  Yes                 Yes
## 4036                   No           No                   No                  No
## 4037                  Yes           No                   No                  No
## 4038                   No           No                   No                  No
## 4039                   No           No                   No                  No
## 4040                  Yes          Yes                  Yes                  No
## 4041                  Yes          Yes                  Yes                  No
## 4042                  Yes          Yes                  Yes                 Yes
## 4043                   No           No                   No                  No
## 4044                  Yes          Yes                   No                  No
## 4045                   No           No                   No                  No
## 4046                   No           No                   No                  No
## 4047                   No           No                   No                  No
## 4048                  Yes          Yes                  Yes                 Yes
## 4049                   No           No                   No                  No
## 4050                   No           No                   No                  No
## 4051                  Yes          Yes                   No                 Yes
## 4052                  Yes          Yes                   No                  No
## 4053                   No           No                   No                  No
## 4054                  Yes          Yes                  Yes                  No
## 4055                   No           No                   No                  No
## 4056                   No           No                   No                  No
## 4057                   No           No                   No                  No
## 4058                   No           No                   No                  No
## 4059                   No           No                   No                  No
## 4060                   No           No                   No                  No
## 4061                  Yes          Yes                  Yes                  No
## 4062                   No           No                   No                  No
## 4063                  Yes          Yes                  Yes                 Yes
## 4064                  Yes          Yes                  Yes                 Yes
## 4065                   No           No                   No                  No
## 4066                   No           No                   No                  No
## 4067                   No           No                   No                  No
## 4068                  Yes           No                  Yes                  No
## 4069                   No           No                   No                  No
## 4070                   No           No                   No                  No
## 4071                   No           No                   No                  No
## 4072                  Yes          Yes                  Yes                 Yes
## 4073                  Yes          Yes                  Yes                 Yes
## 4075                  Yes          Yes                  Yes                 Yes
## 4076                  Yes          Yes                  Yes                  No
## 4077                   No           No                   No                  No
## 4078                   No           No                   No                  No
## 4079                   No           No                   No                  No
## 4080                   No           No                   No                  No
## 4081                  Yes          Yes                  Yes                  No
## 4082                  Yes          Yes                  Yes                 Yes
## 4083                  Yes          Yes                  Yes                 Yes
## 4084                   No           No                   No                  No
## 4085                  Yes          Yes                  Yes                 Yes
## 4086                   No           No                   No                  No
## 4088                  Yes          Yes                  Yes                 Yes
## 4089                  Yes          Yes                  Yes                 Yes
## 4090                   No           No                   No                  No
## 4091                   No           No                   No                  No
## 4092                  Yes          Yes                   No                  No
## 4093                  Yes          Yes                  Yes                 Yes
## 4094                  Yes          Yes                  Yes                 Yes
## 4095                  Yes          Yes                  Yes                  No
## 4096                  Yes          Yes                  Yes                 Yes
## 4097                   No           No                   No                  No
## 4098                  Yes           No                  Yes                 Yes
## 4099                   No           No                   No                  No
## 4100                   No           No                   No                  No
## 4102                   No           No                   No                  No
## 4103                  Yes          Yes                  Yes                 Yes
## 4104                  Yes          Yes                  Yes                  No
## 4105                  Yes          Yes                  Yes                 Yes
## 4106                  Yes          Yes                  Yes                 Yes
## 4107                  Yes          Yes                  Yes                  No
## 4108                   No           No                   No                  No
## 4109                  Yes          Yes                   No                  No
## 4111                  Yes          Yes                   No                 Yes
## 4112                  Yes          Yes                  Yes                  No
## 4113                  Yes          Yes                  Yes                 Yes
## 4114                   No           No                   No                  No
## 4115                   No           No                   No                  No
## 4116                  Yes          Yes                  Yes                 Yes
## 4117                  Yes          Yes                  Yes                 Yes
## 4118                   No           No                   No                  No
## 4119                   No           No                   No                  No
## 4120                  Yes          Yes                  Yes                 Yes
## 4122                   No           No                   No                  No
## 4123                  Yes           No                  Yes                 Yes
## 4124                   No           No                   No                  No
## 4125                   No           No                   No                  No
## 4126                  Yes          Yes                  Yes                 Yes
## 4127                   No           No                   No                  No
## 4128                  Yes          Yes                  Yes                  No
## 4129                  Yes          Yes                   No                  No
## 4130                   No           No                   No                  No
## 4131                   No           No                   No                  No
## 4132                  Yes          Yes                  Yes                 Yes
## 4133                  Yes          Yes                  Yes                 Yes
## 4134                   No           No                  Yes                  No
## 4135                  Yes          Yes                  Yes                  No
## 4136                  Yes           No                  Yes                 Yes
## 4137                  Yes          Yes                  Yes                 Yes
## 4138                   No          Yes                   No                  No
## 4139                   No           No                   No                  No
## 4140                  Yes          Yes                  Yes                 Yes
## 4141                   No           No                   No                  No
## 4142                   No           No                   No                  No
## 4143                   No           No                   No                  No
## 4144                   No           No                   No                  No
## 4145                   No           No                   No                  No
## 4146                  Yes          Yes                  Yes                 Yes
## 4147                   No           No                   No                  No
## 4148                   No           No                   No                  No
## 4149                   No           No                   No                  No
## 4150                  Yes          Yes                  Yes                 Yes
## 4151                  Yes          Yes                  Yes                 Yes
## 4152                  Yes           No                  Yes                  No
## 4153                   No           No                   No                  No
## 4154                   No           No                   No                  No
## 4155                   No           No                   No                  No
## 4156                  Yes           No                  Yes                  No
## 4157                   No           No                   No                  No
## 4159                  Yes          Yes                  Yes                 Yes
## 4160                   No           No                   No                  No
## 4161                  Yes          Yes                  Yes                  No
## 4162                   No           No                   No                  No
## 4163                   No           No                   No                  No
## 4164                  Yes          Yes                  Yes                 Yes
## 4165                  Yes          Yes                  Yes                 Yes
## 4166                   No           No                   No                  No
## 4167                   No           No                   No                  No
## 4168                   No           No                   No                  No
## 4169                  Yes          Yes                  Yes                  No
## 4170                  Yes          Yes                  Yes                 Yes
## 4171                  Yes           No                  Yes                  No
## 4172                   No           No                   No                  No
## 4173                  Yes          Yes                  Yes                 Yes
## 4174                   No           No                   No                  No
## 4175                   No           No                   No                  No
## 4176                  Yes          Yes                  Yes                  No
## 4177                  Yes          Yes                  Yes                 Yes
## 4178                   No           No                   No                  No
## 4179                  Yes          Yes                  Yes                 Yes
## 4180                   No           No                   No                  No
## 4181                   No           No                   No                  No
## 4182                  Yes           No                  Yes                 Yes
## 4183                   No           No                   No                  No
## 4184                   No           No                   No                  No
## 4185                  Yes          Yes                  Yes                 Yes
## 4186                   No           No                   No                  No
## 4187                  Yes          Yes                  Yes                 Yes
## 4188                   No           No                   No                  No
## 4189                   No           No                   No                  No
## 4190                  Yes           No                  Yes                  No
## 4191                   No           No                   No                  No
## 4192                   No           No                   No                  No
## 4193                   No           No                   No                  No
## 4194                   No           No                   No                  No
## 4195                   No           No                   No                  No
## 4196                   No           No                   No                  No
## 4197                  Yes          Yes                  Yes                 Yes
## 4198                  Yes          Yes                  Yes                 Yes
## 4199                   No           No                   No                  No
## 4200                   No           No                   No                  No
## 4201                  Yes          Yes                  Yes                 Yes
## 4202                   No           No                   No                  No
## 4203                   No           No                   No                  No
## 4204                   No           No                   No                  No
## 4205                  Yes          Yes                  Yes                  No
## 4206                  Yes          Yes                   No                  No
## 4207                  Yes          Yes                  Yes                 Yes
## 4208                  Yes          Yes                  Yes                 Yes
## 4209                   No           No                   No                  No
## 4210                  Yes          Yes                   No                  No
## 4211                   No           No                   No                  No
## 4212                  Yes          Yes                  Yes                  No
## 4213                   No           No                   No                  No
## 4214                  Yes          Yes                  Yes                  No
## 4215                  Yes          Yes                  Yes                  No
## 4216                   No           No                   No                  No
## 4218                   No           No                   No                  No
## 4219                  Yes          Yes                  Yes                 Yes
## 4220                   No           No                   No                  No
## 4221                   No           No                   No                  No
## 4222                   No           No                   No                  No
## 4223                   No           No                   No                  No
## 4224                  Yes          Yes                  Yes                 Yes
## 4225                  Yes          Yes                  Yes                 Yes
## 4226                   No           No                   No                  No
## 4227                  Yes           No                   No                 Yes
## 4228                   No           No                   No                  No
## 4229                  Yes          Yes                   No                  No
## 4230                  Yes           No                  Yes                 Yes
## 4231                  Yes           No                  Yes                 Yes
## 4232                   No           No                   No                  No
## 4233                  Yes          Yes                  Yes                 Yes
## 4234                  Yes          Yes                  Yes                 Yes
## 4235                  Yes          Yes                  Yes                  No
## 4236                  Yes          Yes                  Yes                 Yes
## 4238                   No           No                   No                  No
## 4239                   No           No                   No                  No
## 4240                   No           No                   No                  No
## 4241                  Yes          Yes                  Yes                 Yes
## 4242                   No           No                   No                  No
## 4243                  Yes          Yes                  Yes                  No
## 4244                   No           No                   No                  No
## 4245                   No           No                   No                  No
## 4246                  Yes          Yes                  Yes                  No
## 4247                  Yes          Yes                  Yes                  No
## 4248                  Yes          Yes                  Yes                 Yes
## 4249                   No           No                   No                  No
## 4250                   No           No                   No                  No
## 4251                  Yes          Yes                  Yes                 Yes
## 4252                  Yes          Yes                   No                 Yes
## 4253                  Yes          Yes                  Yes                 Yes
## 4254                  Yes          Yes                  Yes                 Yes
## 4255                   No           No                   No                  No
## 4256                  Yes          Yes                  Yes                 Yes
## 4257                  Yes          Yes                  Yes                 Yes
## 4258                   No           No                   No                  No
## 4259                  Yes          Yes                  Yes                 Yes
## 4260                   No           No                   No                  No
## 4261                  Yes          Yes                  Yes                 Yes
## 4262                  Yes          Yes                  Yes                 Yes
## 4263                  Yes          Yes                  Yes                  No
## 4264                   No           No                   No                  No
## 4265                  Yes          Yes                  Yes                  No
## 4266                   No           No                   No                  No
## 4267                   No           No                   No                  No
## 4268                   No           No                   No                  No
## 4269                   No           No                   No                  No
## 4270                   No           No                   No                  No
## 4271                  Yes          Yes                  Yes                  No
## 4272                   No           No                   No                  No
## 4273                   No           No                   No                  No
## 4274                   No           No                   No                  No
## 4275                   No           No                   No                  No
## 4276                  Yes          Yes                   No                  No
## 4277                   No           No                   No                  No
## 4278                  Yes           No                  Yes                 Yes
## 4279                  Yes          Yes                  Yes                 Yes
## 4280                   No           No                   No                  No
## 4281                  Yes          Yes                  Yes                  No
## 4282                   No           No                   No                  No
## 4283                   No           No                   No                  No
## 4284                  Yes          Yes                  Yes                  No
## 4285                   No           No                   No                  No
## 4286                  Yes          Yes                  Yes                  No
## 4287                  Yes          Yes                  Yes                 Yes
## 4288                   No           No                   No                  No
## 4289                   No           No                   No                  No
## 4290                  Yes          Yes                  Yes                 Yes
## 4291                  Yes          Yes                  Yes                 Yes
## 4292                   No           No                   No                  No
## 4293                  Yes          Yes                  Yes                  No
## 4294                   No           No                   No                  No
## 4295                   No           No                   No                  No
## 4296                   No           No                   No                  No
## 4297                   No           No                   No                  No
## 4298                  Yes          Yes                   No                  No
## 4299                  Yes          Yes                  Yes                 Yes
## 4300                  Yes          Yes                  Yes                  No
## 4301                  Yes          Yes                  Yes                  No
## 4302                  Yes          Yes                  Yes                 Yes
## 4303                  Yes           No                  Yes                  No
## 4304                  Yes          Yes                  Yes                  No
## 4305                  Yes          Yes                  Yes                 Yes
## 4306                  Yes          Yes                  Yes                  No
## 4307                  Yes          Yes                  Yes                  No
## 4308                   No           No                   No                  No
## 4309                   No           No                   No                  No
## 4310                   No           No                   No                  No
## 4311                  Yes          Yes                  Yes                 Yes
## 4312                  Yes           No                  Yes                 Yes
## 4313                   No           No                   No                  No
## 4315                   No           No                   No                  No
## 4316                  Yes          Yes                   No                  No
## 4317                   No           No                   No                  No
## 4318                  Yes          Yes                  Yes                  No
## 4319                   No           No                   No                  No
## 4320                  Yes           No                   No                  No
## 4321                   No           No                   No                  No
## 4323                  Yes          Yes                  Yes                  No
## 4324                   No           No                   No                  No
## 4325                   No           No                   No                  No
## 4326                   No           No                   No                  No
## 4327                  Yes          Yes                  Yes                  No
## 4328                   No           No                   No                  No
## 4329                  Yes           No                   No                  No
## 4330                   No           No                   No                  No
## 4331                   No           No                   No                  No
## 4332                   No           No                   No                  No
## 4333                  Yes          Yes                  Yes                 Yes
## 4335                  Yes           No                   No                  No
## 4336                   No           No                   No                  No
## 4337                  Yes          Yes                  Yes                  No
## 4338                  Yes          Yes                  Yes                  No
## 4341                  Yes          Yes                  Yes                 Yes
## 4342                  Yes          Yes                   No                 Yes
## 4343                   No           No                   No                  No
## 4344                  Yes          Yes                  Yes                 Yes
## 4345                  Yes          Yes                  Yes                  No
## 4346                   No           No                   No                  No
## 4347                   No           No                   No                  No
## 4348                   No           No                   No                  No
## 4349                  Yes          Yes                  Yes                 Yes
## 4350                  Yes           No                  Yes                 Yes
## 4351                  Yes          Yes                  Yes                 Yes
## 4352                   No           No                   No                  No
## 4353                   No           No                   No                  No
## 4354                  Yes          Yes                  Yes                  No
## 4355                   No           No                   No                  No
## 4356                   No           No                   No                  No
## 4357                  Yes          Yes                  Yes                 Yes
## 4358                   No           No                   No                  No
## 4359                   No           No                   No                  No
## 4360                   No           No                   No                  No
## 4361                  Yes          Yes                  Yes                 Yes
## 4362                   No           No                   No                  No
## 4364                   No           No                   No                  No
## 4365                   No           No                   No                  No
## 4366                  Yes          Yes                  Yes                 Yes
## 4367                  Yes          Yes                   No                  No
## 4368                   No           No                   No                  No
## 4369                   No           No                   No                  No
## 4370                   No           No                   No                  No
## 4371                   No           No                   No                  No
## 4372                  Yes           No                  Yes                 Yes
## 4373                  Yes          Yes                  Yes                  No
## 4374                   No          Yes                  Yes                  No
## 4376                   No           No                   No                  No
## 4377                   No           No                   No                  No
## 4378                  Yes          Yes                  Yes                 Yes
## 4379                   No           No                   No                  No
## 4380                   No           No                   No                  No
## 4381                   No           No                   No                  No
## 4382                   No           No                   No                  No
## 4383                   No           No                   No                  No
## 4384                   No           No                   No                  No
## 4385                   No           No                   No                  No
## 4386                  Yes          Yes                  Yes                 Yes
## 4387                   No           No                   No                  No
## 4388                   No           No                   No                  No
## 4389                   No           No                   No                  No
## 4390                   No           No                   No                  No
## 4391                  Yes          Yes                   No                  No
## 4392                  Yes           No                   No                  No
## 4393                  Yes           No                  Yes                 Yes
## 4394                  Yes          Yes                   No                 Yes
## 4395                  Yes          Yes                   No                  No
## 4396                  Yes          Yes                  Yes                 Yes
## 4397                  Yes          Yes                   No                  No
## 4398                  Yes          Yes                  Yes                 Yes
## 4400                   No           No                   No                  No
## 4401                  Yes          Yes                  Yes                 Yes
## 4403                  Yes          Yes                  Yes                 Yes
## 4404                   No           No                   No                  No
## 4405                  Yes          Yes                  Yes                  No
## 4406                  Yes          Yes                  Yes                 Yes
## 4407                   No           No                   No                  No
## 4408                   No          Yes                  Yes                  No
## 4409                   No           No                   No                  No
## 4410                   No           No                   No                  No
## 4411                  Yes          Yes                  Yes                 Yes
## 4412                  Yes          Yes                  Yes                 Yes
## 4413                   No           No                   No                  No
## 4414                  Yes          Yes                  Yes                  No
## 4415                  Yes          Yes                  Yes                 Yes
## 4416                  Yes          Yes                  Yes                 Yes
## 4417                  Yes          Yes                  Yes                 Yes
## 4418                   No           No                   No                  No
## 4419                   No           No                   No                  No
## 4420                   No           No                   No                  No
## 4421                   No           No                   No                  No
## 4423                   No           No                   No                  No
## 4424                  Yes          Yes                  Yes                  No
## 4425                   No           No                   No                  No
## 4426                   No           No                   No                  No
## 4427                  Yes          Yes                  Yes                 Yes
## 4428                  Yes          Yes                  Yes                 Yes
## 4429                   No           No                   No                  No
## 4430                  Yes          Yes                  Yes                 Yes
## 4431                   No           No                   No                  No
## 4432                  Yes          Yes                  Yes                  No
## 4433                  Yes          Yes                  Yes                 Yes
## 4434                   No           No                   No                  No
## 4435                  Yes          Yes                  Yes                 Yes
## 4436                  Yes          Yes                   No                  No
## 4437                   No           No                   No                  No
## 4438                  Yes          Yes                  Yes                  No
## 4439                  Yes          Yes                   No                  No
## 4440                  Yes          Yes                  Yes                  No
## 4441                  Yes          Yes                  Yes                  No
## 4442                   No           No                   No                  No
## 4443                  Yes          Yes                  Yes                  No
## 4444                  Yes          Yes                  Yes                 Yes
## 4445                   No           No                   No                  No
## 4447                   No           No                   No                  No
## 4448                   No           No                   No                  No
## 4450                   No           No                   No                  No
## 4451                  Yes          Yes                  Yes                  No
## 4452                  Yes          Yes                  Yes                 Yes
## 4453                   No           No                   No                  No
## 4454                  Yes          Yes                   No                  No
## 4455                   No           No                   No                  No
## 4456                   No           No                   No                  No
## 4457                  Yes          Yes                   No                 Yes
## 4458                  Yes          Yes                  Yes                  No
## 4459                   No           No                   No                  No
## 4460                  Yes          Yes                  Yes                  No
## 4461                   No           No                   No                  No
## 4463                  Yes          Yes                  Yes                 Yes
## 4464                  Yes           No                   No                 Yes
## 4465                   No           No                   No                  No
## 4466                  Yes          Yes                   No                  No
## 4467                   No           No                   No                  No
## 4468                  Yes          Yes                  Yes                  No
## 4469                   No           No                   No                  No
## 4470                   No          Yes                  Yes                 Yes
## 4471                   No           No                   No                  No
## 4472                  Yes          Yes                  Yes                  No
## 4473                  Yes          Yes                  Yes                 Yes
## 4474                  Yes          Yes                  Yes                  No
## 4475                  Yes           No                   No                 Yes
## 4476                  Yes          Yes                  Yes                 Yes
## 4477                   No           No                   No                  No
## 4478                   No           No                   No                  No
## 4479                  Yes          Yes                  Yes                  No
## 4480                  Yes          Yes                  Yes                  No
## 4481                   No           No                   No                  No
## 4482                  Yes          Yes                   No                 Yes
## 4483                  Yes          Yes                  Yes                 Yes
## 4484                   No           No                   No                  No
## 4485                  Yes          Yes                  Yes                 Yes
## 4486                  Yes          Yes                   No                 Yes
## 4487                   No           No                   No                  No
## 4488                  Yes          Yes                  Yes                  No
## 4489                   No          Yes                   No                 Yes
## 4490                   No           No                   No                  No
## 4491                   No           No                   No                  No
## 4492                   No           No                   No                  No
## 4493                   No           No                   No                  No
## 4494                   No           No                   No                  No
## 4495                   No           No                   No                  No
## 4496                   No           No                   No                  No
## 4497                  Yes          Yes                  Yes                 Yes
## 4498                   No           No                   No                  No
## 4499                  Yes          Yes                  Yes                 Yes
## 4500                  Yes          Yes                  Yes                 Yes
## 4501                   No           No                   No                  No
## 4502                   No           No                   No                  No
## 4503                   No           No                   No                  No
## 4504                  Yes          Yes                  Yes                 Yes
## 4505                  Yes          Yes                  Yes                 Yes
## 4506                   No           No                   No                  No
## 4507                   No           No                   No                  No
## 4508                  Yes          Yes                  Yes                  No
## 4509                  Yes          Yes                  Yes                 Yes
## 4510                   No           No                   No                  No
## 4511                   No           No                   No                  No
## 4512                  Yes          Yes                  Yes                 Yes
## 4513                   No           No                   No                  No
## 4514                   No           No                   No                  No
## 4515                   No           No                   No                  No
## 4516                  Yes          Yes                  Yes                  No
## 4517                   No           No                   No                  No
## 4518                   No           No                   No                  No
## 4519                   No           No                   No                  No
## 4520                  Yes          Yes                  Yes                 Yes
## 4521                  Yes          Yes                  Yes                  No
## 4522                   No           No                   No                  No
## 4523                   No           No                   No                  No
## 4524                  Yes           No                  Yes                 Yes
## 4525                   No           No                   No                  No
## 4526                  Yes          Yes                  Yes                 Yes
## 4527                   No           No                   No                  No
## 4528                   No           No                   No                  No
## 4529                   No           No                   No                  No
## 4530                   No           No                   No                  No
## 4531                   No           No                   No                  No
## 4532                  Yes          Yes                  Yes                 Yes
## 4533                  Yes          Yes                   No                  No
## 4534                  Yes          Yes                  Yes                 Yes
## 4536                   No           No                   No                  No
## 4537                   No           No                   No                  No
## 4538                  Yes          Yes                   No                  No
## 4539                   No           No                   No                  No
## 4540                   No           No                   No                  No
## 4541                  Yes          Yes                  Yes                  No
## 4542                   No           No                   No                  No
## 4543                   No           No                   No                  No
## 4544                  Yes          Yes                  Yes                 Yes
## 4545                   No           No                   No                  No
## 4546                   No           No                   No                  No
## 4547                  Yes          Yes                  Yes                  No
## 4548                   No           No                   No                  No
## 4549                  Yes          Yes                  Yes                 Yes
## 4551                   No           No                   No                  No
## 4552                   No           No                   No                  No
## 4553                  Yes          Yes                  Yes                 Yes
## 4554                   No           No                   No                  No
## 4555                   No           No                   No                  No
## 4557                   No           No                   No                  No
## 4558                  Yes          Yes                   No                  No
## 4559                   No           No                   No                  No
## 4560                   No           No                   No                  No
## 4561                  Yes          Yes                  Yes                 Yes
## 4562                  Yes          Yes                   No                 Yes
## 4563                   No           No                   No                  No
## 4564                  Yes          Yes                  Yes                 Yes
## 4565                  Yes          Yes                  Yes                 Yes
## 4566                   No           No                   No                  No
## 4567                  Yes          Yes                  Yes                 Yes
## 4568                  Yes           No                  Yes                 Yes
## 4569                   No           No                   No                  No
## 4570                  Yes          Yes                  Yes                  No
## 4572                  Yes          Yes                  Yes                 Yes
## 4573                   No           No                   No                  No
## 4574                   No          Yes                  Yes                  No
## 4575                   No           No                   No                  No
## 4576                  Yes          Yes                   No                  No
## 4577                   No           No                   No                  No
## 4578                   No           No                   No                  No
## 4579                  Yes          Yes                  Yes                 Yes
## 4581                   No           No                   No                  No
## 4582                   No           No                   No                  No
## 4583                  Yes          Yes                  Yes                  No
## 4584                  Yes          Yes                   No                  No
## 4585                   No           No                   No                  No
## 4586                   No           No                   No                  No
## 4587                   No           No                   No                  No
## 4588                   No           No                   No                  No
## 4589                  Yes          Yes                   No                  No
## 4590                   No           No                   No                  No
## 4591                  Yes          Yes                  Yes                 Yes
## 4592                  Yes          Yes                   No                 Yes
## 4594                  Yes          Yes                   No                 Yes
## 4595                  Yes          Yes                   No                  No
## 4596                  Yes          Yes                   No                  No
## 4597                  Yes          Yes                  Yes                 Yes
## 4598                   No           No                   No                  No
## 4599                   No           No                   No                  No
## 4600                   No           No                   No                  No
## 4601                  Yes          Yes                  Yes                 Yes
## 4602                   No           No                   No                  No
## 4603                  Yes          Yes                  Yes                 Yes
## 4604                   No           No                   No                  No
## 4605                   No           No                   No                  No
## 4606                   No           No                   No                  No
## 4608                  Yes           No                  Yes                 Yes
## 4609                  Yes          Yes                  Yes                 Yes
## 4610                   No           No                   No                  No
## 4611                   No           No                   No                  No
## 4612                   No           No                   No                  No
## 4613                   No           No                   No                  No
## 4614                  Yes          Yes                  Yes                  No
## 4616                  Yes          Yes                   No                  No
## 4617                   No           No                   No                  No
## 4618                  Yes          Yes                  Yes                  No
## 4619                  Yes          Yes                  Yes                 Yes
## 4620                   No           No                   No                  No
## 4621                  Yes           No                  Yes                 Yes
## 4622                   No           No                   No                  No
## 4623                   No           No                   No                  No
## 4624                  Yes          Yes                  Yes                  No
## 4625                   No           No                   No                  No
## 4626                  Yes          Yes                  Yes                 Yes
## 4627                   No           No                   No                  No
## 4628                   No           No                   No                  No
## 4630                   No           No                   No                  No
## 4631                  Yes          Yes                  Yes                 Yes
## 4632                   No           No                   No                  No
## 4633                   No           No                   No                  No
## 4634                  Yes          Yes                  Yes                 Yes
## 4635                   No           No                   No                  No
## 4636                  Yes          Yes                   No                 Yes
## 4637                   No           No                   No                  No
## 4638                  Yes          Yes                  Yes                 Yes
## 4639                  Yes          Yes                  Yes                  No
## 4640                  Yes          Yes                  Yes                  No
## 4641                  Yes          Yes                  Yes                  No
## 4642                  Yes          Yes                  Yes                 Yes
## 4643                   No           No                   No                  No
## 4645                  Yes          Yes                  Yes                 Yes
## 4646                   No           No                   No                  No
## 4647                  Yes          Yes                  Yes                 Yes
## 4648                  Yes          Yes                  Yes                 Yes
## 4649                  Yes          Yes                  Yes                  No
## 4650                   No           No                   No                  No
## 4651                   No           No                   No                  No
## 4652                   No           No                   No                  No
## 4654                   No           No                   No                  No
## 4655                   No           No                   No                  No
## 4656                  Yes          Yes                  Yes                 Yes
## 4658                   No           No                   No                  No
## 4659                  Yes          Yes                  Yes                 Yes
## 4660                   No           No                   No                  No
## 4661                  Yes          Yes                  Yes                 Yes
## 4662                   No           No                   No                 Yes
## 4663                  Yes          Yes                   No                 Yes
## 4664                   No           No                   No                  No
## 4665                  Yes          Yes                  Yes                 Yes
## 4666                   No           No                   No                  No
## 4667                   No           No                   No                  No
## 4668                  Yes          Yes                  Yes                 Yes
## 4669                  Yes          Yes                  Yes                 Yes
## 4670                   No           No                   No                  No
## 4671                   No           No                   No                  No
## 4672                   No           No                   No                  No
## 4673                   No           No                   No                  No
## 4674                   No           No                   No                  No
## 4675                  Yes          Yes                  Yes                 Yes
## 4676                   No           No                   No                  No
## 4677                  Yes           No                   No                  No
## 4678                  Yes          Yes                  Yes                  No
## 4679                  Yes          Yes                  Yes                  No
## 4680                  Yes          Yes                  Yes                 Yes
## 4681                  Yes          Yes                  Yes                 Yes
## 4682                  Yes          Yes                  Yes                  No
## 4683                   No           No                   No                  No
## 4684                   No           No                   No                  No
## 4685                  Yes           No                   No                  No
## 4686                   No           No                   No                  No
## 4687                   No           No                   No                  No
## 4688                   No           No                   No                  No
## 4689                  Yes          Yes                  Yes                  No
## 4690                   No           No                   No                  No
## 4691                  Yes          Yes                  Yes                  No
## 4692                  Yes          Yes                  Yes                  No
## 4693                   No           No                   No                  No
## 4694                   No           No                   No                  No
## 4695                   No           No                   No                  No
## 4696                   No           No                   No                  No
## 4697                   No           No                   No                  No
## 4698                  Yes          Yes                   No                 Yes
## 4699                   No           No                   No                  No
## 4700                  Yes          Yes                  Yes                 Yes
## 4701                   No           No                   No                  No
## 4702                  Yes          Yes                  Yes                 Yes
## 4703                   No           No                   No                  No
## 4704                   No           No                   No                  No
## 4705                  Yes          Yes                  Yes                 Yes
## 4706                   No           No                   No                  No
## 4707                   No           No                   No                  No
## 4708                   No           No                   No                  No
## 4709                   No           No                   No                  No
## 4711                  Yes          Yes                  Yes                 Yes
## 4712                   No           No                   No                  No
## 4713                  Yes          Yes                  Yes                  No
## 4714                  Yes          Yes                  Yes                 Yes
## 4715                   No           No                   No                  No
## 4717                   No           No                   No                  No
## 4718                  Yes          Yes                  Yes                 Yes
## 4719                  Yes           No                  Yes                 Yes
## 4720                   No           No                   No                  No
## 4721                  Yes          Yes                  Yes                 Yes
## 4722                   No           No                   No                  No
## 4723                   No           No                   No                  No
## 4724                   No           No                   No                  No
## 4725                   No           No                   No                  No
## 4726                   No           No                   No                  No
## 4727                  Yes          Yes                  Yes                  No
## 4728                   No           No                   No                  No
## 4729                   No           No                   No                  No
## 4730                  Yes          Yes                  Yes                  No
## 4731                   No           No                   No                  No
## 4732                   No           No                   No                  No
## 4733                   No           No                   No                  No
## 4734                  Yes          Yes                  Yes                 Yes
## 4735                   No           No                   No                  No
## 4736                  Yes          Yes                  Yes                 Yes
## 4737                  Yes          Yes                  Yes                  No
## 4738                   No           No                   No                  No
## 4739                  Yes          Yes                  Yes                 Yes
## 4740                   No           No                   No                  No
## 4741                  Yes          Yes                   No                 Yes
## 4742                   No           No                   No                  No
## 4743                  Yes          Yes                  Yes                  No
## 4744                   No           No                   No                  No
## 4745                   No           No                   No                  No
## 4746                   No           No                   No                  No
## 4747                   No           No                   No                  No
## 4748                  Yes          Yes                  Yes                 Yes
## 4749                   No           No                   No                  No
## 4750                   No           No                   No                  No
## 4751                   No           No                   No                  No
## 4752                  Yes          Yes                  Yes                 Yes
## 4753                   No           No                   No                  No
## 4754                   No           No                   No                  No
## 4755                   No           No                   No                  No
## 4756                  Yes          Yes                   No                  No
## 4757                   No           No                   No                  No
## 4758                   No           No                   No                  No
## 4759                  Yes          Yes                  Yes                 Yes
## 4760                  Yes          Yes                   No                 Yes
## 4761                   No           No                   No                  No
## 4762                  Yes          Yes                  Yes                 Yes
## 4763                   No           No                   No                  No
## 4764                   No           No                   No                  No
## 4765                  Yes          Yes                  Yes                 Yes
## 4766                   No           No                   No                  No
## 4767                   No           No                   No                  No
## 4768                   No           No                   No                  No
## 4769                   No           No                   No                  No
## 4770                  Yes          Yes                  Yes                 Yes
## 4771                   No           No                   No                  No
## 4772                   No           No                   No                  No
## 4773                   No           No                   No                  No
## 4774                   No           No                   No                  No
## 4775                  Yes          Yes                  Yes                 Yes
## 4776                   No           No                   No                  No
## 4777                  Yes          Yes                  Yes                 Yes
## 4778                   No           No                   No                  No
## 4780                  Yes          Yes                  Yes                 Yes
## 4781                  Yes          Yes                  Yes                 Yes
## 4782                  Yes          Yes                  Yes                  No
## 4783                  Yes          Yes                   No                 Yes
## 4784                  Yes          Yes                  Yes                 Yes
## 4785                   No           No                   No                  No
## 4786                   No           No                   No                  No
## 4788                  Yes          Yes                  Yes                 Yes
## 4789                   No           No                   No                  No
## 4790                   No           No                   No                  No
## 4791                   No           No                   No                  No
## 4792                  Yes          Yes                  Yes                 Yes
## 4793                  Yes          Yes                  Yes                 Yes
## 4794                   No           No                   No                  No
## 4795                  Yes          Yes                  Yes                 Yes
## 4796                  Yes           No                  Yes                 Yes
## 4797                  Yes          Yes                  Yes                 Yes
## 4798                  Yes          Yes                  Yes                 Yes
## 4799                   No           No                   No                  No
## 4800                  Yes          Yes                  Yes                 Yes
## 4801                   No           No                   No                  No
## 4802                  Yes          Yes                   No                  No
## 4803                  Yes          Yes                  Yes                 Yes
## 4804                   No           No                   No                  No
## 4806                   No           No                   No                  No
## 4808                  Yes          Yes                  Yes                  No
## 4810                  Yes           No                  Yes                 Yes
## 4811                   No           No                   No                  No
## 4812                  Yes          Yes                  Yes                  No
## 4813                   No           No                   No                  No
## 4815                  Yes          Yes                  Yes                 Yes
## 4816                  Yes          Yes                  Yes                 Yes
## 4817                   No           No                   No                  No
## 4818                  Yes           No                   No                  No
## 4819                   No           No                   No                  No
## 4822                   No           No                   No                  No
## 4823                  Yes          Yes                  Yes                  No
## 4824                   No           No                   No                  No
## 4825                  Yes           No                   No                 Yes
## 4826                  Yes          Yes                  Yes                 Yes
## 4827                  Yes          Yes                   No                  No
## 4828                   No          Yes                   No                 Yes
## 4829                  Yes          Yes                  Yes                 Yes
## 4830                   No           No                   No                  No
## 4831                  Yes          Yes                  Yes                  No
## 4832                  Yes          Yes                  Yes                 Yes
## 4833                  Yes          Yes                  Yes                  No
## 4834                   No           No                   No                  No
## 4835                   No           No                   No                  No
## 4836                   No           No                   No                  No
## 4837                  Yes          Yes                  Yes                  No
## 4838                   No           No                   No                  No
## 4839                   No           No                   No                  No
## 4840                  Yes          Yes                  Yes                 Yes
## 4842                   No           No                   No                  No
## 4843                  Yes          Yes                   No                  No
## 4844                   No           No                   No                  No
## 4845                   No           No                   No                  No
## 4846                  Yes          Yes                  Yes                 Yes
## 4847                  Yes           No                   No                  No
## 4848                  Yes          Yes                   No                  No
## 4849                   No           No                   No                  No
## 4850                  Yes          Yes                   No                  No
## 4851                   No           No                   No                  No
## 4852                  Yes          Yes                  Yes                 Yes
## 4853                   No           No                   No                  No
## 4854                  Yes           No                  Yes                  No
## 4855                  Yes          Yes                  Yes                  No
## 4856                  Yes          Yes                  Yes                  No
## 4857                   No           No                   No                  No
## 4858                   No           No                   No                  No
## 4859                  Yes          Yes                  Yes                 Yes
## 4860                   No           No                   No                  No
## 4861                  Yes          Yes                   No                 Yes
## 4862                   No           No                   No                  No
## 4863                  Yes          Yes                  Yes                 Yes
## 4865                   No           No                   No                  No
## 4866                   No           No                   No                  No
## 4867                  Yes          Yes                  Yes                  No
## 4868                  Yes           No                  Yes                 Yes
## 4869                   No           No                   No                  No
## 4870                   No           No                   No                  No
## 4871                  Yes          Yes                  Yes                 Yes
## 4872                  Yes          Yes                  Yes                 Yes
## 4874                   No           No                   No                  No
## 4875                   No           No                   No                  No
## 4876                  Yes          Yes                   No                  No
## 4877                  Yes          Yes                  Yes                  No
## 4878                   No           No                   No                  No
## 4879                   No           No                   No                  No
## 4880                   No           No                   No                  No
## 4881                   No           No                   No                  No
## 4882                  Yes          Yes                  Yes                 Yes
## 4883                   No           No                   No                  No
## 4884                  Yes          Yes                  Yes                 Yes
## 4885                  Yes          Yes                  Yes                 Yes
## 4886                  Yes          Yes                  Yes                  No
## 4887                   No           No                   No                  No
## 4888                  Yes          Yes                  Yes                 Yes
## 4889                  Yes          Yes                  Yes                 Yes
## 4890                  Yes          Yes                  Yes                  No
## 4891                  Yes          Yes                   No                 Yes
## 4892                  Yes          Yes                  Yes                 Yes
## 4893                   No           No                   No                  No
## 4894                  Yes          Yes                  Yes                 Yes
## 4896                  Yes          Yes                  Yes                 Yes
## 4897                   No           No                   No                  No
## 4898                  Yes          Yes                  Yes                 Yes
## 4899                  Yes          Yes                  Yes                  No
## 4900                  Yes          Yes                  Yes                 Yes
## 4901                   No           No                   No                  No
## 4902                  Yes          Yes                  Yes                  No
## 4903                   No           No                   No                  No
## 4904                  Yes          Yes                   No                  No
## 4905                   No           No                   No                  No
## 4906                  Yes          Yes                  Yes                 Yes
## 4907                   No           No                   No                  No
## 4908                   No           No                   No                  No
## 4909                   No           No                   No                  No
## 4910                   No           No                   No                  No
## 4911                  Yes          Yes                  Yes                 Yes
## 4912                  Yes          Yes                  Yes                 Yes
## 4913                   No           No                   No                  No
## 4914                  Yes           No                   No                  No
## 4916                  Yes           No                  Yes                  No
## 4917                   No           No                   No                  No
## 4918                  Yes          Yes                  Yes                  No
## 4919                   No           No                   No                  No
## 4920                   No           No                   No                  No
## 4921                   No           No                   No                  No
## 4922                  Yes          Yes                  Yes                  No
## 4923                  Yes           No                  Yes                 Yes
## 4924                  Yes          Yes                  Yes                 Yes
## 4925                   No           No                   No                  No
## 4926                   No           No                   No                  No
## 4927                   No           No                   No                  No
## 4928                   No           No                   No                  No
## 4929                   No           No                   No                  No
## 4930                  Yes          Yes                  Yes                 Yes
## 4931                  Yes           No                   No                  No
## 4932                   No           No                   No                  No
## 4933                   No           No                   No                  No
## 4934                   No           No                  Yes                 Yes
## 4936                  Yes          Yes                  Yes                 Yes
## 4937                  Yes          Yes                  Yes                 Yes
## 4938                   No          Yes                  Yes                  No
## 4939                   No           No                   No                  No
## 4940                   No           No                   No                  No
## 4941                  Yes          Yes                  Yes                 Yes
## 4942                  Yes          Yes                  Yes                  No
## 4944                  Yes          Yes                  Yes                 Yes
## 4945                   No           No                   No                  No
## 4946                  Yes          Yes                  Yes                  No
## 4947                   No           No                   No                  No
## 4948                   No           No                   No                  No
## 4949                   No           No                   No                  No
## 4950                  Yes          Yes                  Yes                 Yes
## 4951                  Yes          Yes                  Yes                 Yes
## 4952                   No           No                   No                  No
## 4953                  Yes          Yes                  Yes                  No
## 4954                  Yes          Yes                   No                 Yes
## 4956                   No           No                   No                  No
## 4957                  Yes          Yes                  Yes                 Yes
## 4959                  Yes          Yes                  Yes                  No
## 4960                   No           No                   No                  No
## 4961                   No           No                   No                  No
## 4962                   No           No                   No                 Yes
## 4963                  Yes          Yes                  Yes                  No
## 4964                   No           No                   No                  No
## 4965                   No           No                   No                  No
## 4966                  Yes          Yes                  Yes                  No
## 4967                  Yes          Yes                  Yes                 Yes
## 4968                   No          Yes                   No                  No
## 4969                   No           No                   No                  No
## 4970                  Yes          Yes                  Yes                 Yes
## 4972                  Yes          Yes                  Yes                  No
## 4973                   No           No                   No                  No
## 4974                  Yes          Yes                   No                 Yes
## 4975                   No           No                   No                  No
## 4976                   No           No                   No                  No
## 4977                  Yes          Yes                   No                  No
## 4978                   No           No                   No                  No
## 4979                   No           No                   No                  No
## 4980                  Yes          Yes                  Yes                 Yes
## 4981                  Yes          Yes                  Yes                  No
## 4982                  Yes          Yes                  Yes                 Yes
## 4983                   No           No                   No                  No
## 4984                  Yes          Yes                  Yes                 Yes
## 4985                  Yes          Yes                  Yes                 Yes
## 4986                   No           No                   No                  No
## 4987                   No           No                   No                  No
## 4988                  Yes          Yes                  Yes                  No
## 4989                  Yes          Yes                   No                  No
## 4990                  Yes           No                   No                  No
## 4991                  Yes          Yes                  Yes                 Yes
## 4993                   No           No                   No                  No
## 4994                   No           No                   No                  No
## 4995                  Yes          Yes                  Yes                  No
## 4996                   No           No                   No                  No
## 4997                  Yes          Yes                  Yes                  No
## 4998                   No           No                   No                  No
## 4999                  Yes          Yes                   No                  No
## 5000                  Yes          Yes                  Yes                 Yes
## 5001                   No           No                   No                  No
## 5002                   No           No                   No                  No
## 5003                  Yes          Yes                  Yes                 Yes
## 5004                   No           No                   No                  No
## 5005                   No           No                   No                  No
## 5006                   No           No                   No                  No
## 5007                   No           No                   No                  No
## 5008                   No           No                   No                  No
## 5009                  Yes          Yes                  Yes                  No
## 5010                  Yes           No                   No                  No
## 5011                  Yes          Yes                  Yes                 Yes
## 5012                  Yes          Yes                  Yes                 Yes
## 5013                  Yes          Yes                  Yes                 Yes
## 5014                  Yes          Yes                  Yes                 Yes
## 5017                  Yes          Yes                   No                 Yes
## 5018                   No           No                   No                  No
## 5019                  Yes          Yes                   No                  No
## 5021                   No           No                   No                  No
## 5022                   No           No                   No                  No
## 5023                   No           No                   No                  No
## 5024                   No           No                   No                  No
## 5025                   No           No                   No                  No
## 5026                   No           No                   No                  No
## 5027                  Yes          Yes                  Yes                  No
## 5028                  Yes          Yes                  Yes                  No
## 5029                   No           No                   No                  No
## 5030                   No           No                   No                  No
## 5031                  Yes          Yes                  Yes                 Yes
## 5032                   No           No                   No                  No
## 5033                   No           No                   No                  No
## 5034                   No           No                   No                  No
## 5035                   No           No                   No                  No
## 5036                   No           No                   No                  No
## 5037                   No           No                   No                  No
## 5038                   No           No                   No                  No
## 5039                  Yes          Yes                  Yes                 Yes
## 5040                  Yes          Yes                  Yes                  No
## 5041                  Yes          Yes                  Yes                 Yes
## 5042                  Yes          Yes                   No                  No
## 5043                  Yes          Yes                   No                  No
## 5044                  Yes          Yes                  Yes                  No
## 5045                   No           No                   No                  No
## 5046                   No           No                   No                  No
## 5047                  Yes          Yes                  Yes                 Yes
## 5048                   No           No                   No                  No
## 5049                   No           No                   No                  No
## 5050                  Yes          Yes                  Yes                  No
## 5051                   No           No                   No                  No
## 5052                   No           No                   No                  No
## 5053                   No           No                   No                  No
## 5054                  Yes          Yes                  Yes                  No
## 5055                   No           No                   No                  No
## 5056                  Yes          Yes                  Yes                 Yes
## 5057                  Yes          Yes                  Yes                  No
## 5058                   No           No                   No                  No
## 5059                  Yes          Yes                  Yes                 Yes
## 5060                   No           No                   No                  No
## 5061                   No           No                   No                  No
## 5062                  Yes          Yes                  Yes                 Yes
## 5063                   No           No                   No                  No
## 5064                   No           No                   No                  No
## 5065                  Yes          Yes                  Yes                 Yes
## 5066                   No           No                   No                  No
## 5067                   No           No                   No                  No
## 5068                   No           No                   No                  No
## 5070                  Yes          Yes                  Yes                 Yes
## 5071                   No           No                  Yes                  No
## 5072                   No           No                   No                  No
## 5073                   No           No                   No                  No
## 5074                   No           No                   No                  No
## 5075                   No           No                   No                  No
## 5076                   No           No                   No                  No
## 5077                  Yes          Yes                  Yes                 Yes
## 5078                  Yes           No                  Yes                 Yes
## 5079                   No           No                   No                  No
## 5080                  Yes          Yes                  Yes                 Yes
## 5081                   No           No                   No                  No
## 5082                  Yes          Yes                  Yes                  No
## 5083                  Yes          Yes                  Yes                  No
## 5085                  Yes          Yes                  Yes                 Yes
## 5086                   No           No                   No                  No
## 5087                   No           No                   No                  No
## 5088                  Yes          Yes                  Yes                 Yes
## 5089                   No           No                   No                  No
## 5090                  Yes           No                  Yes                 Yes
## 5091                   No           No                   No                  No
## 5092                  Yes          Yes                  Yes                 Yes
## 5093                  Yes          Yes                   No                  No
## 5094                   No           No                   No                  No
## 5095                  Yes          Yes                   No                  No
## 5096                  Yes          Yes                  Yes                  No
## 5097                   No           No                   No                  No
## 5098                  Yes          Yes                  Yes                 Yes
## 5099                  Yes          Yes                  Yes                 Yes
## 5100                  Yes          Yes                  Yes                 Yes
## 5101                   No           No                   No                  No
##      package_guided_tour package_insurance night_mainland night_zanzibar
## 1                     No                No              7              4
## 2                    Yes               Yes              7              0
## 3                     No                No              0              6
## 4                     No                No              3              4
## 5                     No                No              6              0
## 6                     No                No             23              0
## 7                    Yes               Yes              0             14
## 8                     No                No              6              0
## 9                     No                No              4              0
## 10                    No                No              2              0
## 11                    No                No             91             14
## 12                    No                No              2              0
## 13                   Yes                No              6              4
## 14                    No                No              2              0
## 16                    No                No             13              0
## 17                    No               Yes              0              7
## 18                    No                No              6              0
## 19                    No                No              9              5
## 20                    No                No             15              6
## 21                    No                No             60              0
## 22                    No                No              5              0
## 23                    No                No             44              5
## 24                    No                No             10              7
## 25                    No                No              1              5
## 26                    No                No              9              0
## 27                    No               Yes              0             15
## 28                    No                No              6              3
## 29                    No                No             16              5
## 30                    No                No              2              0
## 31                    No                No             15              0
## 32                   Yes                No              6              0
## 33                    No                No             10              0
## 34                    No                No              3              0
## 35                   Yes                No             14              4
## 36                   Yes                No             10              0
## 37                   Yes                No              7              5
## 38                    No               Yes             10              0
## 39                    No                No             12              3
## 40                   Yes                No              7              7
## 41                    No                No             31              0
## 43                    No                No              0              7
## 44                   Yes                No              7              7
## 45                   Yes                No              7              3
## 46                   Yes                No             12              0
## 47                   Yes                No             14              8
## 48                    No                No              3              0
## 49                    No                No              2              0
## 50                    No                No              4              0
## 51                    No                No              4              0
## 52                    No                No              0              6
## 53                    No               Yes              0              7
## 54                    No                No              5              0
## 55                    No                No              8              0
## 56                    No                No              8              5
## 57                   Yes                No             14              3
## 58                    No                No              2              2
## 59                   Yes                No              7              5
## 60                    No               Yes              9             41
## 61                   Yes                No              7              7
## 62                    No                No              6              0
## 63                    No               Yes              0              7
## 64                    No                No              7             10
## 65                    No                No              0              9
## 66                    No                No              9              0
## 67                    No                No             22              0
## 68                    No                No              7              0
## 69                    No                No              0             10
## 70                   Yes                No              9              0
## 71                    No                No             30              0
## 72                    No               Yes              0             18
## 74                    No                No              3              0
## 75                    No                No             10              0
## 76                    No                No              2              0
## 77                   Yes               Yes              6              0
## 78                    No                No              7              0
## 79                    No                No              2              0
## 80                    No                No              6              1
## 81                    No                No             14              0
## 82                   Yes                No              9              7
## 83                    No                No              1              0
## 84                   Yes               Yes              3              0
## 85                   Yes               Yes              9              0
## 86                   Yes                No              0             11
## 87                    No                No              3              8
## 88                   Yes                No              8              4
## 89                    No                No              1              0
## 90                   Yes               Yes             13              0
## 92                    No                No              3              0
## 93                    No                No              2              0
## 94                   Yes                No              9              3
## 96                   Yes               Yes              0              7
## 97                   Yes                No             13              3
## 98                    No                No             25              5
## 99                   Yes               Yes             12              0
## 100                   No               Yes              0             17
## 101                   No                No             18              5
## 102                   No                No              0              7
## 103                   No                No              3              0
## 104                   No                No             19              0
## 105                   No                No              4              0
## 106                  Yes                No             12              0
## 107                   No                No              5              0
## 109                   No                No              0             14
## 110                   No                No              6              0
## 112                   No                No              4              0
## 113                   No                No              4              0
## 114                  Yes               Yes             14              0
## 115                  Yes                No             23              0
## 116                  Yes                No              7              0
## 117                  Yes                No              8              0
## 118                   No                No              1              0
## 119                   No                No              6              0
## 120                   No                No              2              0
## 121                  Yes                No             12              0
## 122                   No                No              0              7
## 123                   No                No              0              7
## 124                   No                No              4              0
## 125                  Yes                No             11              3
## 126                   No                No              0              7
## 127                   No                No             85              5
## 128                  Yes                No              7              0
## 129                   No                No              0             14
## 130                  Yes               Yes             17              4
## 131                   No                No             11              6
## 132                   No                No              0              6
## 133                  Yes                No              6              0
## 134                   No                No              6              0
## 135                  Yes                No              9              0
## 136                   No                No              0              7
## 137                  Yes               Yes             12              0
## 138                   No                No             19              0
## 139                   No                No              3              8
## 140                   No                No              0              5
## 141                   No                No              3              2
## 142                  Yes               Yes             10              0
## 143                   No                No              0             10
## 144                  Yes                No              7              5
## 145                   No                No             13              0
## 146                  Yes               Yes              7              0
## 147                  Yes                No              5              0
## 148                  Yes                No             11              0
## 149                   No                No              2              0
## 150                   No                No              2              0
## 151                  Yes                No             11              4
## 152                   No                No             21              0
## 153                  Yes               Yes              7              5
## 155                   No                No              0             15
## 156                   No                No              9              0
## 157                   No                No              4              5
## 159                   No               Yes              0              7
## 160                   No                No              6              6
## 161                   No                No              3              0
## 162                  Yes                No              7              6
## 163                  Yes               Yes              0              9
## 164                   No                No              6              0
## 165                   No                No             19              0
## 166                  Yes                No              7              0
## 167                   No                No             26              4
## 168                  Yes               Yes             10              0
## 169                   No                No             23              0
## 170                  Yes                No              3              0
## 171                   No                No              7              6
## 172                   No                No              0             30
## 173                   No                No              0              3
## 174                   No                No              7              9
## 175                   No                No             24              0
## 176                  Yes                No              5              0
## 177                   No                No              1              0
## 178                   No                No              6              0
## 179                  Yes                No             22              3
## 180                   No                No             20             10
## 181                   No                No             20              0
## 182                  Yes                No             12              0
## 183                   No                No              5             11
## 185                  Yes               Yes             10              0
## 186                  Yes                No             13              0
## 187                   No                No              5              0
## 188                  Yes                No              4              0
## 189                   No                No              2              0
## 190                  Yes                No              4              3
## 191                  Yes               Yes              7              0
## 192                   No                No              7              0
## 193                  Yes               Yes             14              0
## 194                   No                No             30              0
## 195                   No                No             15              7
## 196                   No                No              3              0
## 197                   No                No              0              7
## 198                  Yes               Yes              6              0
## 199                   No                No              2              0
## 201                   No                No              0              4
## 202                   No                No              3              0
## 203                   No                No             14              0
## 204                   No                No              0              7
## 205                   No                No              0              7
## 206                   No                No             10              5
## 207                   No                No             10              0
## 208                   No                No              5              0
## 209                   No                No              5              3
## 210                   No                No              1              6
## 211                   No                No              7              0
## 212                   No               Yes             23              0
## 215                  Yes               Yes              0              7
## 216                   No               Yes              3              0
## 217                  Yes                No             10              0
## 218                   No                No              5              2
## 219                   No                No             30              0
## 220                   No                No             12              0
## 221                  Yes                No              7              0
## 222                  Yes                No              4              0
## 223                   No                No              7              7
## 224                  Yes                No             18              0
## 225                   No                No             28              0
## 226                   No                No              0              5
## 227                   No                No              7              0
## 228                  Yes               Yes             13              0
## 229                  Yes                No             13              5
## 231                   No                No              0              7
## 232                   No                No              0              7
## 233                   No                No             10              5
## 234                   No                No             42              0
## 235                  Yes                No             11              3
## 236                   No                No             22              4
## 238                   No                No              0              4
## 239                  Yes                No              9              3
## 240                  Yes                No             12              0
## 242                   No                No             12              0
## 244                   No                No             30              0
## 245                  Yes                No              1              5
## 246                   No                No              1              9
## 247                   No                No              3              0
## 248                  Yes                No             12              0
## 249                  Yes                No             10             23
## 250                   No                No             10              5
## 251                   No                No             13              6
## 252                  Yes                No             13              0
## 253                   No                No             10              0
## 254                  Yes                No             14              0
## 255                   No                No             16              0
## 256                  Yes               Yes              3              0
## 257                  Yes                No              6              0
## 258                  Yes               Yes              7              0
## 259                   No                No             19              0
## 260                   No                No             10              0
## 262                  Yes                No             10              4
## 263                   No                No              2              0
## 264                  Yes               Yes              0              7
## 265                  Yes                No              3              0
## 266                   No                No             14              0
## 267                   No                No              6              0
## 269                  Yes                No              6              0
## 270                   No                No              4              0
## 271                   No                No             10              0
## 272                   No                No             13              0
## 273                   No                No             11              0
## 274                   No                No             36              0
## 275                   No                No              6              0
## 277                  Yes                No             70              6
## 278                   No               Yes             64              0
## 279                   No                No              7              0
## 280                  Yes                No              7              0
## 282                   No                No              6              0
## 283                   No                No              4              7
## 284                   No                No              1              0
## 286                   No                No              8             10
## 287                  Yes                No              7              0
## 288                   No                No             17              3
## 289                   No                No              0              7
## 290                  Yes                No              0             14
## 291                  Yes                No              9              0
## 292                   No                No              1              0
## 293                   No                No              6              0
## 294                   No                No              0              7
## 295                   No                No              5              2
## 296                  Yes                No              9              0
## 297                   No                No             12              0
## 298                  Yes               Yes              4              0
## 299                   No                No             14              0
## 300                   No                No              0              8
## 301                   No                No              4              4
## 302                   No                No              2              0
## 303                  Yes               Yes              7             10
## 304                   No               Yes              0              7
## 305                   No                No              4              0
## 306                   No                No             50              0
## 307                   No                No              8              5
## 309                   No                No              4              0
## 310                   No                No             15              0
## 311                   No                No              2              0
## 312                   No                No              9              0
## 313                  Yes               Yes              9              0
## 314                   No                No              5              6
## 315                   No                No              6              7
## 316                  Yes                No             17              0
## 317                  Yes                No             13              0
## 318                  Yes               Yes              7              0
## 319                   No                No             19              0
## 321                  Yes                No             11              0
## 322                   No                No             14              0
## 323                  Yes               Yes              9              2
## 324                   No                No             21              0
## 325                   No                No              4              0
## 326                   No                No              5              0
## 327                  Yes               Yes             12              3
## 328                  Yes               Yes              3              0
## 330                  Yes                No             15              0
## 332                   No                No              2              0
## 333                   No                No             11              3
## 334                   No                No              0              7
## 335                   No               Yes              0              3
## 336                   No                No              2              0
## 337                   No                No              7              7
## 338                  Yes                No              5              6
## 339                   No                No              0             21
## 340                   No                No              9              0
## 341                   No                No              7              1
## 342                   No                No              0              6
## 343                  Yes               Yes              7              6
## 344                   No                No              3              0
## 345                  Yes               Yes              6              3
## 346                  Yes               Yes             10              8
## 347                  Yes                No              7              0
## 348                   No                No             20              7
## 349                   No                No              4              0
## 350                  Yes                No              8              6
## 351                   No                No             26              0
## 352                   No                No              0              7
## 353                   No                No              3              0
## 354                   No                No              0             11
## 355                   No                No              1              0
## 356                   No                No              0             10
## 357                   No                No             41             11
## 358                   No                No             16              0
## 359                   No               Yes              3              0
## 360                  Yes                No             11             14
## 361                   No               Yes              0             10
## 362                   No                No             10              0
## 363                  Yes                No              3              0
## 364                   No                No             10              0
## 365                   No                No              0              7
## 366                   No                No              5              0
## 367                   No                No             14              0
## 368                   No                No             11              0
## 369                   No                No              4              2
## 370                  Yes                No             15              0
## 371                  Yes                No              3              0
## 372                  Yes                No             12              0
## 373                   No                No             21              0
## 374                   No                No              6              0
## 375                   No                No              7              0
## 376                  Yes               Yes              7              0
## 377                   No                No              6              6
## 378                   No                No             10              3
## 379                   No                No              2              0
## 380                   No                No              2              0
## 381                   No               Yes              0              4
## 382                   No                No              6              0
## 383                   No                No             15              6
## 384                  Yes                No              4              2
## 385                   No                No              3              0
## 386                  Yes                No             12              0
## 388                   No                No              3              0
## 390                   No                No             31              3
## 391                  Yes                No             13              0
## 392                  Yes               Yes              8              0
## 393                   No                No              4              0
## 394                  Yes                No              4              0
## 395                   No                No              3              0
## 396                  Yes                No              0              7
## 397                   No                No              0              7
## 398                  Yes                No             10              0
## 399                   No                No              2              0
## 400                   No                No              9              0
## 401                  Yes                No              6              0
## 402                  Yes                No             15              5
## 403                  Yes                No             14              0
## 404                  Yes                No             12              4
## 405                   No                No             90              0
## 406                  Yes               Yes              4              0
## 407                   No                No             11              0
## 408                   No                No              4              2
## 409                   No                No             65              0
## 410                  Yes                No              6              0
## 412                   No                No             10              0
## 413                   No                No             14              0
## 414                  Yes                No             13              0
## 415                  Yes                No             21              0
## 417                   No                No              0             14
## 419                   No                No              7              0
## 420                   No                No              6              0
## 421                   No                No              1              0
## 422                  Yes               Yes              0              9
## 423                   No                No              1              0
## 424                  Yes                No              7              8
## 425                   No                No              9              0
## 426                  Yes               Yes              6              0
## 427                  Yes                No             21              0
## 428                  Yes               Yes              6              4
## 429                   No                No             11              4
## 430                  Yes                No             10              6
## 431                   No                No              3              0
## 432                   No                No             15              0
## 433                   No                No              6              3
## 434                  Yes               Yes              9              0
## 435                   No                No              2              0
## 436                   No                No              7              3
## 437                   No                No              4              0
## 438                  Yes                No              7              0
## 439                   No                No              0              7
## 440                  Yes               Yes              9              0
## 441                  Yes                No             14              0
## 442                   No                No              2              0
## 443                  Yes                No              8              0
## 444                  Yes                No              7              4
## 446                   No                No              2              0
## 448                  Yes               Yes             10              3
## 449                   No               Yes              0              7
## 450                   No                No             23              4
## 451                   No                No             60              0
## 452                  Yes               Yes              4              0
## 453                  Yes               Yes              4              0
## 454                   No                No              9              0
## 456                   No                No              2              0
## 457                   No                No              3              0
## 458                  Yes                No             16              4
## 459                   No                No              3              0
## 460                   No                No             83              0
## 461                   No               Yes              0              3
## 462                   No                No              6              0
## 463                   No                No              0              7
## 464                   No                No              4              0
## 465                   No                No              0              7
## 466                  Yes               Yes             10              9
## 467                   No                No             33              0
## 468                   No                No             15              5
## 469                  Yes                No              5              0
## 470                   No                No             14              0
## 471                  Yes                No              6              7
## 472                   No                No             35              5
## 473                   No                No              8              0
## 474                  Yes                No              4              3
## 475                  Yes                No              2              0
## 476                   No                No             10              0
## 477                   No                No             18              3
## 478                   No                No              2              0
## 479                  Yes               Yes             10              3
## 480                   No                No             23              0
## 481                   No                No              2              0
## 482                  Yes               Yes              5              0
## 483                   No               Yes              0             13
## 484                   No               Yes              0              5
## 485                   No                No              3              0
## 486                   No                No             10              0
## 487                   No                No             32              4
## 488                   No                No              1             13
## 489                  Yes                No              7              0
## 490                   No                No              0             15
## 491                  Yes                No              5              3
## 492                  Yes                No              7              2
## 493                  Yes               Yes              7              0
## 494                   No                No              0              7
## 495                   No                No              3              0
## 496                   No                No             30              0
## 497                   No                No              7              0
## 498                   No                No              2              0
## 499                  Yes               Yes              0              4
## 500                   No                No             13              6
## 501                   No                No              3              0
## 502                   No                No              0              4
## 503                   No                No              5              5
## 504                   No                No              0              7
## 505                   No                No              6              1
## 506                   No                No             60              0
## 507                   No                No              1              0
## 508                   No                No             10              0
## 510                   No                No              5              0
## 511                   No                No              2              0
## 512                   No                No              6              0
## 513                   No                No              2              0
## 514                   No                No              3              0
## 515                  Yes               Yes             13              0
## 516                  Yes               Yes             10              0
## 517                   No                No             11              0
## 518                  Yes                No             11              0
## 519                   No                No              2              0
## 520                   No                No              6              0
## 521                  Yes               Yes             10              0
## 522                   No                No             60              0
## 523                   No                No              6              0
## 524                   No                No             44              0
## 525                  Yes               Yes              7              5
## 526                   No                No              0              7
## 527                  Yes                No              6              3
## 528                   No                No              7              7
## 529                   No                No              7              4
## 530                   No                No              2              0
## 531                   No                No              3              2
## 532                  Yes                No              8              0
## 533                   No                No              5              0
## 534                  Yes               Yes              8              3
## 535                  Yes                No             13              0
## 536                   No                No              1              7
## 537                   No                No              7              0
## 538                   No                No              2              0
## 539                  Yes               Yes             15              0
## 540                   No                No              0              9
## 541                  Yes                No             10              2
## 542                  Yes                No              7              7
## 544                  Yes                No              3              0
## 545                   No                No              5              0
## 546                   No                No              4              0
## 547                  Yes                No             10              5
## 548                  Yes               Yes             14              0
## 549                  Yes                No              7              3
## 550                   No                No              9              0
## 551                  Yes               Yes              4              4
## 552                   No                No              7              5
## 553                   No                No              7              8
## 554                  Yes                No              4              0
## 555                   No                No             32              0
## 556                   No                No             42              0
## 557                   No                No              0              7
## 558                   No                No              1              0
## 559                   No                No             17              0
## 560                   No                No              4              0
## 561                   No                No              2              0
## 562                  Yes                No              9              0
## 563                   No                No              0              7
## 564                  Yes                No             14              5
## 565                   No                No              5              2
## 566                  Yes               Yes              5              3
## 567                  Yes               Yes              0              8
## 568                   No                No             22              0
## 570                   No                No              0              7
## 571                  Yes                No              7              3
## 572                   No                No              6              0
## 573                   No                No              5              0
## 574                  Yes                No              9              6
## 575                   No               Yes              0              7
## 576                   No                No              3              0
## 577                   No                No              1              0
## 578                   No                No             18              0
## 579                  Yes               Yes             10              0
## 580                   No                No              5              0
## 581                   No                No              0              8
## 582                  Yes               Yes              7              0
## 583                   No                No              8              2
## 584                  Yes                No              9              3
## 585                   No                No              0             13
## 586                   No                No              9              0
## 587                   No                No              2              0
## 588                   No                No             20              0
## 589                   No                No              0              7
## 590                   No                No              2              0
## 591                  Yes                No             12              5
## 592                  Yes               Yes              9              0
## 593                  Yes                No              4              0
## 594                  Yes                No              8              0
## 595                  Yes               Yes              5              7
## 596                   No                No              3              7
## 597                   No                No              1              0
## 598                   No                No             11              0
## 600                  Yes                No             11              0
## 601                   No                No              2              0
## 602                   No                No              3              4
## 603                   No                No              3              2
## 604                  Yes                No              6              0
## 605                  Yes               Yes             12              0
## 606                   No                No              7              0
## 607                  Yes                No             15              0
## 608                   No                No              2              0
## 609                  Yes                No              5              0
## 610                  Yes                No             12              4
## 612                   No                No              1              0
## 613                  Yes               Yes              4             10
## 614                   No                No             16              0
## 615                   No               Yes              7              0
## 616                   No                No              2              0
## 617                   No                No              1              0
## 618                  Yes               Yes              8              4
## 620                   No                No             12              0
## 622                  Yes                No             14              0
## 623                  Yes               Yes              0             14
## 624                  Yes                No              7              0
## 625                   No                No              8              0
## 626                   No                No              1              7
## 627                   No                No              5              0
## 628                   No                No             12              3
## 629                   No                No             10              0
## 630                   No                No              3              0
## 631                  Yes               Yes              2              0
## 632                  Yes               Yes             12              0
## 633                   No                No              4              0
## 634                  Yes               Yes             11              0
## 635                  Yes               Yes              4              0
## 636                   No                No              6              0
## 637                   No                No              9              0
## 638                  Yes                No             14              0
## 639                  Yes               Yes             12              0
## 640                   No                No              2              0
## 641                  Yes                No              6              0
## 642                  Yes               Yes              0              7
## 643                   No                No             21              0
## 644                  Yes               Yes              6              7
## 645                   No                No              5              0
## 646                   No                No             46              2
## 647                   No                No              4              0
## 648                   No                No              2              0
## 649                  Yes                No              6              0
## 650                   No                No            140              3
## 651                   No                No              0             10
## 652                   No                No             12              0
## 653                  Yes                No              5              0
## 655                  Yes                No              1             13
## 657                   No               Yes              0             14
## 658                  Yes                No              5              0
## 659                   No                No              2              0
## 660                   No                No              1              0
## 661                  Yes                No              8              0
## 662                   No                No             14             14
## 663                  Yes               Yes              6              3
## 664                   No                No             14              0
## 665                   No                No             12              0
## 666                  Yes               Yes             11              2
## 667                  Yes               Yes              4              0
## 668                   No               Yes              0              9
## 669                  Yes               Yes              7              0
## 670                   No                No              0             60
## 671                   No                No             44              6
## 672                   No                No             40              5
## 673                   No                No              4              0
## 674                   No                No             10              0
## 675                   No                No              6              3
## 676                   No               Yes             13              7
## 677                   No                No             16              0
## 679                  Yes                No             14              0
## 680                   No                No              4              9
## 681                   No                No              0             25
## 682                  Yes                No              7              3
## 683                   No                No              8              0
## 684                  Yes               Yes              9              3
## 685                   No                No             13              4
## 687                   No               Yes              0              4
## 688                   No                No             11              5
## 689                   No                No              9              0
## 690                   No                No              4              7
## 691                   No                No              3              0
## 692                   No                No              1              7
## 693                   No                No              2              0
## 694                   No                No              7              0
## 696                   No                No              2              0
## 698                   No                No              0              9
## 699                  Yes                No             15              0
## 700                   No                No              8              4
## 701                   No                No              5              0
## 702                  Yes                No             10              0
## 703                  Yes                No              6              0
## 704                   No                No              7              5
## 706                   No                No              4              0
## 707                  Yes                No             12              0
## 708                  Yes               Yes              6              0
## 709                   No                No              2              0
## 710                   No                No             14              0
## 711                   No                No             16              0
## 712                   No                No             10              5
## 713                   No                No              6              4
## 714                   No                No              7              7
## 715                   No                No              0              4
## 716                   No                No              2              0
## 718                   No                No             34              4
## 719                   No                No             13              3
## 720                   No                No              9              6
## 721                   No                No              5              0
## 722                   No                No              2              0
## 723                   No                No              5              0
## 724                   No                No              6              0
## 725                  Yes                No              8              6
## 727                  Yes                No              4              0
## 728                  Yes                No              0              7
## 729                   No                No              2              0
## 730                   No                No              0              7
## 731                   No                No             69              8
## 732                   No                No              3              0
## 733                  Yes               Yes             10              0
## 734                  Yes                No              8              0
## 735                  Yes                No             14              0
## 736                   No                No              2              0
## 737                  Yes                No             11              3
## 738                   No                No              4              0
## 739                   No                No              5              0
## 740                   No                No              7              0
## 741                   No                No             13              0
## 742                   No                No             14              7
## 743                  Yes                No             14              8
## 744                   No                No              7              7
## 745                  Yes               Yes              5              0
## 746                   No                No              7              0
## 747                   No                No              6              0
## 748                   No               Yes              0              8
## 749                  Yes               Yes              4              0
## 750                   No                No              6              0
## 752                   No                No              3              0
## 753                   No                No              0              3
## 754                  Yes               Yes              4              0
## 755                   No                No              5              0
## 756                   No                No              3              0
## 758                  Yes               Yes              0              3
## 759                   No                No             10              0
## 761                  Yes                No             14              0
## 762                  Yes                No              8              0
## 763                   No                No              9              0
## 764                   No                No             15              0
## 765                   No                No              7             21
## 766                  Yes               Yes              3              0
## 767                  Yes                No              9              0
## 769                   No               Yes              0              7
## 770                   No                No              7              0
## 771                   No                No              4              0
## 772                   No                No             59              0
## 773                  Yes                No              4              0
## 774                   No                No             24              0
## 775                  Yes               Yes              5              8
## 776                  Yes               Yes             10              0
## 777                  Yes               Yes             12              0
## 778                  Yes                No             11              0
## 779                   No                No              3              0
## 780                   No                No             11              0
## 781                   No                No              4              5
## 782                  Yes                No             10              7
## 783                   No                No              0              3
## 784                   No                No             33              0
## 785                   No                No             24              0
## 786                  Yes                No              7              0
## 787                   No                No              0              6
## 788                  Yes                No              3              0
## 789                  Yes               Yes              4              4
## 790                   No                No              7              0
## 791                   No                No              0              4
## 792                   No                No             13              5
## 793                   No               Yes             16              0
## 795                  Yes               Yes              5              0
## 796                   No                No              0              7
## 797                  Yes                No              8              0
## 798                   No                No              6              0
## 799                   No                No              3              0
## 800                  Yes                No             10              0
## 801                   No                No              3              0
## 802                   No               Yes              0              7
## 803                   No                No             12              0
## 804                  Yes                No             10              0
## 805                  Yes                No             11              4
## 806                  Yes                No             10              5
## 808                  Yes                No              7              0
## 809                   No                No              0              5
## 810                   No                No             20              8
## 811                   No                No              2              0
## 812                   No                No              0              5
## 813                   No                No              6              0
## 814                   No                No              4              0
## 815                   No               Yes              0             15
## 816                   No                No              2              0
## 817                   No                No              6              0
## 818                   No               Yes              0              7
## 820                   No                No              1              0
## 821                   No                No              2              4
## 822                   No                No             14              0
## 823                   No                No              1              4
## 824                   No                No             26              0
## 825                   No                No             23              7
## 826                   No               Yes              0              7
## 827                   No                No              4              0
## 828                   No                No              4             12
## 829                  Yes                No              5              5
## 830                  Yes               Yes             16              0
## 831                   No                No              0              8
## 832                   No                No              2              0
## 833                  Yes                No              0              8
## 834                   No                No              0              5
## 835                   No                No              4              0
## 836                   No                No              0              1
## 837                   No                No              0              5
## 838                   No                No             15              0
## 839                  Yes               Yes              8              0
## 840                   No               Yes              0             14
## 841                   No                No              8              0
## 842                  Yes                No              3              0
## 843                  Yes               Yes              6              8
## 844                   No                No             14              0
## 845                   No                No              0             14
## 846                   No                No              0             10
## 847                   No                No              4             10
## 848                   No                No              2              0
## 849                  Yes                No             14              0
## 851                   No                No             12              0
## 852                   No                No              2              0
## 853                  Yes               Yes              0              7
## 854                   No                No             11              0
## 855                   No                No              0              2
## 856                   No                No              4              0
## 857                   No                No              2              0
## 858                  Yes               Yes              5              0
## 859                   No                No              0             35
## 860                   No                No              1              0
## 861                  Yes               Yes             10              0
## 862                  Yes                No             21              0
## 863                  Yes                No              7              7
## 864                   No                No              5              0
## 865                  Yes               Yes              0             14
## 866                  Yes                No             10              0
## 867                  Yes                No              7              0
## 869                   No                No             55              5
## 870                   No                No              4              0
## 871                   No                No              0              7
## 872                   No                No              2              0
## 873                   No                No              4              0
## 874                  Yes                No              7              3
## 875                  Yes                No              4              4
## 876                  Yes               Yes              4              5
## 877                   No                No             17              0
## 878                   No                No             21              0
## 880                  Yes                No             10              0
## 881                  Yes                No              0              9
## 882                   No                No              9              4
## 883                   No                No              5              0
## 884                   No                No              1              0
## 885                   No                No             90              0
## 886                   No                No             12              0
## 887                   No                No              7              0
## 888                  Yes                No             10              7
## 889                  Yes                No              5              0
## 891                   No                No              0              6
## 892                   No                No             70              0
## 893                   No                No             11              6
## 894                   No                No              8              0
## 895                  Yes                No              9              0
## 896                   No                No              5              5
## 898                   No                No              3              0
## 900                   No                No              2              0
## 901                   No                No              2              0
## 904                   No                No             10              5
## 905                   No                No              6              0
## 906                  Yes               Yes             12              0
## 907                  Yes                No              0              7
## 908                  Yes                No              7              0
## 909                   No                No              3              0
## 910                   No                No              4              0
## 911                  Yes                No             11              0
## 913                   No                No             15              0
## 914                   No                No              5              0
## 915                   No                No              9              0
## 916                  Yes                No              4              0
## 917                   No                No              4              0
## 918                   No                No              0              7
## 919                  Yes                No             14              0
## 920                   No                No              5              0
## 921                   No                No              3              0
## 922                   No                No              3              0
## 923                   No                No              0             11
## 924                   No                No              8              0
## 925                   No                No             30              0
## 926                   No                No              3              0
## 927                   No                No              6              4
## 928                   No                No              9              0
## 929                  Yes                No              6              0
## 930                   No               Yes              0              7
## 931                  Yes                No              2              0
## 932                   No                No             13              3
## 933                   No                No              0              3
## 934                  Yes                No              8              3
## 935                   No                No              3              0
## 937                   No                No              4              0
## 938                   No                No              0              4
## 939                  Yes                No              9              5
## 940                   No               Yes              0              7
## 941                  Yes               Yes              5              0
## 942                   No                No             60              0
## 943                   No                No              0              7
## 944                  Yes               Yes              6              0
## 945                  Yes                No              8              4
## 946                   No                No              1             12
## 947                  Yes               Yes             10              0
## 948                   No                No             10              0
## 949                   No                No             37              0
## 950                   No                No              1              6
## 951                  Yes               Yes             15              0
## 952                   No                No             10              0
## 953                   No                No              2              0
## 955                  Yes                No             13              0
## 956                   No                No              9              4
## 957                  Yes                No              9              0
## 958                  Yes                No             17              5
## 959                   No                No              0              9
## 960                   No                No             12             14
## 961                   No                No              9              0
## 962                  Yes                No             14              0
## 963                  Yes               Yes              0              7
## 964                  Yes                No             15              0
## 966                   No                No              5              0
## 967                   No                No              0              7
## 968                   No                No              2              0
## 971                  Yes                No             14             14
## 972                  Yes                No              3              0
## 973                  Yes                No              0              7
## 975                   No                No             28              4
## 976                  Yes               Yes              0              9
## 977                   No                No              4              0
## 978                   No                No              2              0
## 979                   No                No              5              0
## 980                   No                No              9              0
## 981                   No                No              6              0
## 982                   No                No              4              3
## 983                   No                No              0             14
## 984                   No                No             21              0
## 985                   No                No             30              0
## 986                   No                No              3              0
## 987                  Yes                No              5              0
## 988                  Yes                No              9              4
## 989                   No                No              3              1
## 991                   No                No              5              0
## 992                   No                No             90              0
## 993                   No                No             14              4
## 994                   No                No             99              0
## 995                   No                No              3              0
## 996                  Yes               Yes             17              0
## 997                   No                No              4              0
## 998                   No                No             15              6
## 999                   No                No              6              5
## 1000                  No                No             23              1
## 1001                 Yes                No              8              0
## 1002                 Yes                No             23              0
## 1003                  No                No             12              0
## 1005                 Yes                No              4              0
## 1006                  No                No              0             16
## 1007                 Yes               Yes              5              3
## 1008                  No                No             10              0
## 1009                  No                No             13              0
## 1010                  No                No             10              7
## 1011                  No                No              8              0
## 1012                 Yes                No              4              0
## 1013                 Yes               Yes              4              5
## 1014                  No                No              5              4
## 1015                  No                No              4              0
## 1016                  No                No             20              0
## 1017                 Yes                No              7              7
## 1018                  No                No              0             10
## 1019                  No                No            100              0
## 1020                  No                No              9              0
## 1021                  No                No              3              0
## 1022                  No               Yes              0             21
## 1023                  No                No             18              0
## 1024                  No                No              0              7
## 1025                 Yes               Yes              2              0
## 1026                  No                No              5              0
## 1027                  No                No              2              2
## 1028                  No                No              2              0
## 1029                  No                No              6              3
## 1030                 Yes                No              7              0
## 1031                 Yes               Yes              7              7
## 1032                 Yes               Yes              6              1
## 1033                  No                No              9              5
## 1034                  No                No              4              0
## 1035                 Yes                No              5              0
## 1036                  No                No             16              0
## 1037                  No                No             19              0
## 1038                 Yes               Yes             11              3
## 1039                  No                No             10              9
## 1041                  No                No              0              3
## 1042                  No                No              6              5
## 1043                  No                No              3              0
## 1044                  No                No              7              0
## 1045                  No                No             58              0
## 1046                 Yes               Yes             16              0
## 1047                  No                No             24              0
## 1048                  No                No              2              0
## 1049                 Yes                No              7              7
## 1050                  No                No              3              0
## 1051                  No                No              7              2
## 1052                 Yes               Yes              0              7
## 1053                 Yes               Yes             12              0
## 1055                  No                No              4              0
## 1056                 Yes                No             12              0
## 1057                  No                No             11              0
## 1058                  No                No              2             21
## 1059                 Yes                No              8              0
## 1060                  No                No             55              6
## 1061                 Yes                No             12              0
## 1062                 Yes                No              6              0
## 1063                  No                No              7              9
## 1065                 Yes               Yes              5              0
## 1066                  No                No              3              0
## 1067                  No                No              6              0
## 1068                 Yes               Yes              5              4
## 1069                  No                No              8              0
## 1070                 Yes               Yes             12              5
## 1071                 Yes                No              4              0
## 1072                  No                No              7              0
## 1073                  No                No              2              0
## 1074                  No                No              1              0
## 1075                  No                No             10              0
## 1077                  No                No              7              0
## 1078                  No                No              5              3
## 1079                  No                No             24              4
## 1080                  No                No              0             10
## 1081                  No                No              2              0
## 1082                  No                No              9              0
## 1083                 Yes                No              9              5
## 1084                  No                No              4              0
## 1086                  No                No              5              0
## 1087                  No                No             50             10
## 1088                  No                No              3              0
## 1089                 Yes                No             14              0
## 1090                 Yes                No              8              3
## 1091                  No                No             33              0
## 1092                  No                No              2              0
## 1093                  No                No              0              7
## 1094                  No                No             16              0
## 1095                 Yes                No              3              0
## 1096                  No                No              2              0
## 1097                  No                No             79              0
## 1098                 Yes               Yes              5              4
## 1099                  No                No              2              0
## 1100                  No                No              7              0
## 1101                 Yes               Yes              4              0
## 1102                  No                No              3              2
## 1103                  No                No             10              0
## 1104                  No                No              2              0
## 1105                 Yes                No              7              0
## 1106                  No                No             15             10
## 1107                  No                No             19              2
## 1108                 Yes                No             14              0
## 1109                  No               Yes              0              9
## 1110                  No                No             18              0
## 1111                  No               Yes              0             14
## 1112                  No                No              8              0
## 1113                  No                No              4              0
## 1114                  No                No             61              0
## 1116                  No                No              8              3
## 1118                  No                No             14              6
## 1119                  No               Yes              6              0
## 1120                  No                No              1              0
## 1123                  No                No              0              7
## 1124                  No                No              1              0
## 1125                  No                No             18              0
## 1126                  No                No              9              7
## 1127                  No                No              0              2
## 1128                 Yes                No              9              0
## 1129                  No                No             17              3
## 1130                  No               Yes             30              0
## 1131                 Yes                No              5              7
## 1132                  No               Yes              0              7
## 1133                  No                No              2              0
## 1135                  No                No             22              0
## 1136                  No                No              3              0
## 1137                 Yes                No             13             12
## 1138                 Yes               Yes             10              0
## 1139                  No                No              0              7
## 1140                 Yes                No              8              0
## 1141                 Yes                No              8              4
## 1142                  No                No             12              0
## 1143                  No                No              9              0
## 1144                  No                No              6              4
## 1145                  No                No              2              0
## 1146                  No                No              2              0
## 1147                  No               Yes              0              8
## 1148                 Yes                No              6              0
## 1149                  No                No             13             21
## 1150                 Yes                No              8              0
## 1151                  No                No             14              0
## 1152                  No                No              2              0
## 1153                 Yes                No              7              0
## 1154                 Yes               Yes              5              3
## 1155                  No                No              4              6
## 1156                  No                No              2              0
## 1157                 Yes                No             12              3
## 1158                  No                No             81              9
## 1159                  No                No             22              2
## 1160                  No                No              0              3
## 1161                  No                No              3              0
## 1163                  No                No              1              0
## 1164                  No                No              5              0
## 1165                  No                No             30              0
## 1166                 Yes               Yes              0             10
## 1167                  No                No              7              7
## 1168                 Yes                No             11              0
## 1169                 Yes                No              4              3
## 1170                  No                No              1              0
## 1172                  No                No             16              0
## 1173                  No               Yes              9              3
## 1174                 Yes                No             12              0
## 1175                 Yes                No             12              0
## 1176                  No                No              0              7
## 1177                  No                No             89              0
## 1178                  No               Yes              0              7
## 1179                 Yes                No             21              0
## 1180                 Yes               Yes              9              0
## 1181                  No                No             15              6
## 1182                  No                No             60              0
## 1183                 Yes                No              1              2
## 1184                  No                No              1              7
## 1185                  No                No              2              0
## 1186                  No                No             10              9
## 1187                  No                No              2              0
## 1188                 Yes               Yes             12              8
## 1189                  No                No              5              0
## 1190                  No                No             21              0
## 1191                 Yes                No              9              5
## 1192                  No                No              1              0
## 1193                 Yes                No              4              0
## 1194                  No                No              4              0
## 1195                 Yes                No              4             10
## 1196                  No                No              7              0
## 1197                  No                No              0              7
## 1198                  No                No              5              5
## 1199                 Yes               Yes              5              0
## 1200                  No               Yes             19              0
## 1201                 Yes                No              7              5
## 1202                  No                No              2              0
## 1203                 Yes               Yes              0             11
## 1205                  No                No              4              0
## 1206                  No                No              3              0
## 1207                  No                No              6              3
## 1208                  No                No             11              3
## 1209                 Yes                No              7              0
## 1210                  No                No             12              7
## 1211                 Yes                No              7              0
## 1212                 Yes                No              9              0
## 1213                  No                No              2              0
## 1214                 Yes               Yes              7              0
## 1215                  No                No             14              0
## 1216                 Yes                No             16              0
## 1217                  No                No             22              0
## 1218                  No               Yes              0              7
## 1219                  No                No             21              0
## 1220                 Yes                No             10              0
## 1221                  No                No              0              4
## 1222                 Yes                No              9              0
## 1223                  No                No              4              0
## 1224                  No                No              6              0
## 1225                  No                No              0             11
## 1227                 Yes                No              5              0
## 1228                  No                No              1              0
## 1229                  No                No              0              7
## 1232                  No                No              2              0
## 1233                 Yes               Yes              7              0
## 1234                 Yes               Yes             45              0
## 1235                  No                No              2              0
## 1237                  No                No              0              7
## 1238                  No                No              1              0
## 1239                  No                No              5              8
## 1240                  No                No              2              0
## 1241                  No                No              3              0
## 1242                  No                No             33              0
## 1243                  No                No             24              4
## 1244                  No                No              1              0
## 1245                  No                No             10              3
## 1246                  No                No             20              1
## 1247                  No                No             13              0
## 1248                  No                No              7              4
## 1249                  No                No             13              0
## 1250                  No               Yes              8              0
## 1251                 Yes                No              7              0
## 1252                  No                No              2              0
## 1253                  No                No              4              0
## 1254                 Yes               Yes             12              0
## 1255                  No                No              1             18
## 1256                  No                No              0             14
## 1257                  No                No              7              0
## 1258                 Yes               Yes              6              0
## 1259                  No                No              2             10
## 1260                  No                No              8              8
## 1261                  No               Yes              3              0
## 1262                  No                No              7              4
## 1263                 Yes                No              8              2
## 1264                  No                No              9              0
## 1265                  No                No              1              0
## 1266                 Yes                No              4              0
## 1267                  No                No              0              7
## 1268                 Yes                No              6              0
## 1269                  No                No             28              4
## 1270                  No                No             13              0
## 1271                 Yes                No              9              0
## 1272                  No                No              2              0
## 1274                 Yes                No              9              0
## 1275                  No                No              3              0
## 1276                 Yes                No              8              0
## 1277                  No                No              8              0
## 1278                  No                No              7              0
## 1279                  No                No              3              0
## 1280                 Yes                No              6              0
## 1281                  No                No             28              4
## 1282                 Yes                No              7              0
## 1283                  No                No              5              0
## 1284                  No               Yes              7              0
## 1286                  No                No              3              0
## 1287                  No                No              0             14
## 1288                 Yes                No             13              0
## 1289                  No                No              0              4
## 1290                 Yes                No              0              5
## 1291                 Yes                No              9              3
## 1292                  No                No              5              0
## 1293                 Yes               Yes             13              0
## 1294                  No                No             40              0
## 1295                 Yes                No             11              0
## 1296                 Yes               Yes              7              4
## 1297                  No                No             12              0
## 1298                  No                No              0              7
## 1299                 Yes                No              6              0
## 1300                  No                No             45              0
## 1301                  No                No              0             11
## 1302                  No                No              7              0
## 1303                  No                No              3              0
## 1304                  No                No              3              0
## 1305                  No                No              2              0
## 1306                  No                No             14              0
## 1307                 Yes                No             12              0
## 1308                  No                No              4              0
## 1309                  No                No             17              4
## 1310                  No                No              0              7
## 1311                 Yes                No              6              3
## 1312                  No                No             24              7
## 1313                 Yes               Yes              6              0
## 1314                  No                No              3              0
## 1315                  No                No              5              2
## 1316                  No                No              4              0
## 1317                  No                No              5              0
## 1318                  No                No              4              0
## 1320                  No                No              4              0
## 1321                 Yes                No              5              3
## 1322                  No                No              7              0
## 1323                 Yes                No              6              2
## 1324                  No                No             60              0
## 1325                  No                No              2              0
## 1326                  No                No              5              0
## 1327                  No                No             19              0
## 1328                  No                No              7             13
## 1329                 Yes                No              0              7
## 1330                  No                No             14             14
## 1331                 Yes                No              5              0
## 1332                 Yes               Yes              6              4
## 1333                 Yes                No              6              7
## 1334                  No                No              6              0
## 1335                 Yes                No              9              5
## 1336                  No                No             60              0
## 1337                  No                No              8              0
## 1338                 Yes                No              0              7
## 1339                  No               Yes              0              7
## 1340                  No                No             10              0
## 1341                 Yes               Yes             10              0
## 1342                 Yes               Yes              7              0
## 1343                 Yes               Yes             10              0
## 1344                  No                No             13              0
## 1345                 Yes               Yes              6              0
## 1346                  No                No              0              7
## 1347                  No                No              6              7
## 1348                  No                No              3              0
## 1349                  No                No             10              0
## 1350                 Yes                No              5              0
## 1351                  No                No              9              0
## 1352                  No                No              4              0
## 1353                  No                No             10              0
## 1354                  No                No              0              7
## 1355                  No                No              4              0
## 1356                 Yes               Yes             50              6
## 1357                 Yes               Yes              6              0
## 1359                  No                No              2              0
## 1361                  No                No              9              0
## 1362                  No                No              5              0
## 1363                  No                No             21              0
## 1365                  No                No              1              4
## 1366                  No               Yes              0              7
## 1367                 Yes               Yes              3              0
## 1368                 Yes                No             10              0
## 1369                  No                No             15              0
## 1371                 Yes               Yes             12              0
## 1372                  No                No             35              7
## 1373                  No                No              0              6
## 1374                  No                No              0              7
## 1376                  No                No              7              0
## 1377                 Yes               Yes             40              3
## 1378                 Yes               Yes              8              3
## 1379                  No               Yes              0             14
## 1380                  No                No              2              0
## 1381                  No                No             13              3
## 1383                  No                No              0              4
## 1384                  No                No              0             15
## 1385                  No                No             16              0
## 1386                  No                No              3              0
## 1387                  No               Yes             12              0
## 1388                  No                No             21              0
## 1389                  No                No              0              7
## 1390                  No                No             16              0
## 1391                  No                No              6              0
## 1392                  No                No              5              0
## 1393                 Yes                No             11              0
## 1394                  No                No              4              0
## 1395                  No                No              2              0
## 1396                 Yes               Yes             14              6
## 1397                  No                No              1              0
## 1398                 Yes               Yes              6              2
## 1399                  No                No              5              0
## 1400                  No                No              2              5
## 1401                 Yes                No              8              0
## 1402                  No                No             15              2
## 1403                  No                No              2              0
## 1404                  No                No             16              0
## 1405                 Yes                No              0              7
## 1406                 Yes                No              4              0
## 1407                  No                No             13              0
## 1408                  No                No              5              5
## 1409                  No                No              0              7
## 1410                  No                No              4             11
## 1411                  No                No             21              0
## 1412                 Yes                No             10              5
## 1413                  No                No              2              0
## 1414                 Yes                No              5              0
## 1415                  No                No              0              7
## 1416                  No                No              3              0
## 1417                  No                No              3              0
## 1418                  No                No              8              0
## 1419                  No                No              0              3
## 1420                 Yes               Yes              7              0
## 1421                 Yes                No             11              0
## 1422                  No                No             14              5
## 1423                 Yes                No              8              4
## 1425                 Yes               Yes             15              0
## 1426                  No                No              6              0
## 1427                  No                No              8              0
## 1428                  No                No              9              0
## 1429                  No                No              2              0
## 1430                  No                No              0              4
## 1431                  No                No              5              0
## 1432                 Yes                No              0             10
## 1433                 Yes                No             12              0
## 1434                  No                No              4              0
## 1435                  No                No             10              0
## 1437                  No                No             12              5
## 1438                 Yes                No              4              0
## 1439                 Yes                No              7              5
## 1440                  No                No             14              0
## 1441                 Yes                No              7              0
## 1442                  No                No              5              0
## 1443                 Yes                No              4              4
## 1444                  No                No             15              5
## 1445                  No                No             30              0
## 1446                 Yes               Yes              4              6
## 1447                  No               Yes              4              0
## 1448                  No                No              5              0
## 1449                  No                No              7              3
## 1450                 Yes               Yes              5              0
## 1451                 Yes               Yes              6              4
## 1452                 Yes                No             18              3
## 1453                 Yes                No              7              0
## 1454                 Yes                No              7              0
## 1455                  No                No              9             11
## 1456                  No                No             38              2
## 1457                 Yes                No             10              0
## 1458                  No                No             20             10
## 1459                 Yes               Yes              0              7
## 1460                  No                No              3              0
## 1461                  No                No              6              0
## 1464                  No                No              0              4
## 1465                 Yes                No              9              0
## 1466                  No                No             25              4
## 1467                  No                No              1              0
## 1468                 Yes                No              0              7
## 1469                 Yes                No              5              0
## 1470                  No                No              2              0
## 1471                 Yes               Yes              6              5
## 1472                 Yes                No              7              0
## 1473                  No                No             10              4
## 1474                 Yes                No              4              0
## 1476                 Yes                No             11              0
## 1477                 Yes                No              6              0
## 1478                  No                No              7              0
## 1479                 Yes                No              0              5
## 1480                  No                No              3              0
## 1481                 Yes                No              4              0
## 1482                 Yes                No              9              0
## 1483                 Yes                No              6              0
## 1484                  No                No              5              0
## 1485                  No                No              6              0
## 1486                  No                No             15              0
## 1487                 Yes               Yes              9             14
## 1488                  No                No              3              0
## 1489                 Yes                No              6              7
## 1490                  No                No              2              0
## 1491                 Yes                No             11              0
## 1492                 Yes                No             22              0
## 1493                  No                No              2              0
## 1494                  No                No             14              0
## 1495                  No                No             10             50
## 1496                  No                No              7              0
## 1497                 Yes                No              5              0
## 1498                  No                No              4              0
## 1499                  No                No              2              0
## 1500                  No                No             10             10
## 1501                 Yes                No              8              0
## 1502                  No                No              7              3
## 1503                 Yes                No              3              0
## 1504                  No                No              2              0
## 1505                  No                No             29              2
## 1506                  No                No              8              0
## 1507                  No                No              8              6
## 1509                  No                No              4              0
## 1510                 Yes                No              4              0
## 1511                  No                No              6              6
## 1512                 Yes                No              5              0
## 1514                  No                No              2              0
## 1515                  No                No              8              8
## 1516                  No                No             15              0
## 1517                  No                No              7              0
## 1518                 Yes               Yes             10              4
## 1519                 Yes                No             15              0
## 1520                  No                No              4              0
## 1521                 Yes                No              4              0
## 1522                  No                No              0             13
## 1524                  No                No              1              0
## 1525                  No                No             14              0
## 1526                  No                No              9              0
## 1527                  No                No             90              0
## 1528                 Yes               Yes              7              5
## 1529                 Yes               Yes              6              6
## 1530                  No                No             13              0
## 1531                  No                No             10              0
## 1532                  No                No              4              0
## 1533                  No                No             19              0
## 1534                 Yes               Yes             14              7
## 1535                  No                No              2              3
## 1536                  No                No             21              0
## 1537                  No               Yes             11              0
## 1538                  No                No              2              0
## 1539                 Yes                No              9              0
## 1540                  No                No              7              0
## 1541                  No                No              4              0
## 1542                  No                No             14              0
## 1543                 Yes                No             12              0
## 1544                 Yes               Yes              7              3
## 1545                 Yes                No              9              0
## 1546                  No                No             12              0
## 1547                 Yes               Yes              7              0
## 1548                 Yes                No              6              0
## 1549                  No                No              4              4
## 1550                 Yes                No              5              0
## 1551                  No                No              2              0
## 1552                  No                No             17              5
## 1553                  No                No              0             10
## 1554                  No                No              2              6
## 1555                  No                No              4              0
## 1556                  No                No              0              3
## 1557                  No                No              2              0
## 1558                  No                No              9              4
## 1559                  No                No              7              0
## 1560                  No                No             23              2
## 1561                 Yes               Yes              3              0
## 1562                  No                No             21              0
## 1563                  No                No              6              0
## 1564                  No                No              2              0
## 1565                  No                No             25              6
## 1566                 Yes                No              8              0
## 1567                  No                No             49              7
## 1568                 Yes                No              7              7
## 1569                 Yes                No             10              5
## 1570                  No                No              0              8
## 1571                  No                No              3              1
## 1572                 Yes                No              7              0
## 1573                  No               Yes              3              0
## 1574                 Yes                No              7              0
## 1575                  No                No             70              4
## 1576                 Yes                No              0              3
## 1578                  No                No              2              0
## 1579                 Yes                No              7              3
## 1580                 Yes                No              6              0
## 1581                  No                No              5              0
## 1582                  No                No              1              0
## 1583                  No                No              0              7
## 1585                  No                No             20              9
## 1586                  No                No              8              0
## 1587                 Yes                No              7              3
## 1588                 Yes               Yes              4              0
## 1589                  No                No              0              7
## 1590                 Yes                No              7              0
## 1591                  No                No              2              0
## 1592                 Yes                No             12              0
## 1593                  No                No              2              0
## 1594                  No                No             14              0
## 1595                 Yes                No              9              2
## 1596                  No                No             26             10
## 1597                  No                No             11              3
## 1598                 Yes                No              4              0
## 1599                  No                No              8              0
## 1600                  No                No              5              0
## 1601                  No                No              3              0
## 1602                 Yes                No              7              0
## 1603                  No                No              2              0
## 1605                  No                No             14              0
## 1606                 Yes                No              7              0
## 1607                  No                No              2              0
## 1608                 Yes                No              0              7
## 1609                 Yes                No             14              0
## 1610                  No                No              4              0
## 1611                  No                No             12              0
## 1612                  No                No             10              0
## 1613                  No                No             10              0
## 1614                  No                No             10              0
## 1615                  No                No              2              0
## 1616                 Yes                No              8              5
## 1617                  No                No             40              0
## 1618                 Yes                No              5              0
## 1619                  No                No              2              0
## 1620                  No                No              0             14
## 1621                  No                No              2              0
## 1622                  No                No              3              0
## 1623                  No                No             19              0
## 1624                 Yes                No             18              0
## 1625                  No                No             14              0
## 1626                  No                No            366              0
## 1627                 Yes               Yes              6              6
## 1628                  No                No              5              0
## 1629                  No                No             10              0
## 1630                  No                No             19              0
## 1631                  No                No              6              4
## 1632                 Yes               Yes              5              5
## 1633                  No                No             10              0
## 1634                  No                No              7              0
## 1635                  No                No              0              7
## 1636                 Yes                No              5              0
## 1637                  No                No              2              0
## 1638                 Yes                No              7              0
## 1639                  No                No              0              9
## 1640                  No                No              6              0
## 1641                  No                No              8              0
## 1642                 Yes                No             10              0
## 1643                  No                No              0              7
## 1644                 Yes                No              7              4
## 1645                 Yes               Yes             10              0
## 1646                  No                No              7              0
## 1647                  No                No             38              0
## 1648                 Yes               Yes             10              0
## 1649                 Yes               Yes             10              5
## 1650                 Yes               Yes             14              0
## 1651                  No                No              2              0
## 1652                 Yes                No             11              0
## 1653                 Yes                No              0              4
## 1655                  No                No             10             11
## 1656                  No                No             31              0
## 1657                  No                No              5              0
## 1658                 Yes               Yes              6              0
## 1659                  No                No              1             15
## 1660                 Yes               Yes              7              0
## 1661                  No                No             14              5
## 1662                 Yes                No              6              0
## 1663                 Yes               Yes             12              0
## 1664                  No                No              5              0
## 1665                  No                No              0              7
## 1666                  No                No              8              6
## 1669                 Yes               Yes              8              3
## 1670                  No                No              9              0
## 1671                  No                No              3              0
## 1672                  No                No              9              9
## 1673                 Yes                No              9              3
## 1674                  No                No              6              0
## 1675                 Yes                No             11              0
## 1676                  No                No              7              0
## 1677                  No               Yes              0              7
## 1678                  No                No              0              8
## 1679                  No                No              2              0
## 1680                  No                No             10              3
## 1682                  No                No              5              0
## 1683                 Yes                No              7              0
## 1684                  No                No              2              0
## 1685                  No                No              2              0
## 1686                  No                No              4              0
## 1687                 Yes                No              3              7
## 1688                 Yes                No              9              5
## 1689                  No                No              0             24
## 1690                  No                No              0              7
## 1691                 Yes               Yes             10              3
## 1692                  No                No             17              4
## 1693                  No                No             14              2
## 1694                  No                No              3              0
## 1695                 Yes                No             14              0
## 1696                  No                No              5              0
## 1697                 Yes                No              5              0
## 1698                 Yes                No              5              0
## 1700                  No                No              6              0
## 1701                  No                No              7              0
## 1702                 Yes               Yes              2              5
## 1703                  No                No              7              6
## 1704                  No                No              0              7
## 1705                  No                No              3              0
## 1706                 Yes                No              7              3
## 1707                  No                No              0              6
## 1708                 Yes               Yes              8              3
## 1709                  No                No              5              0
## 1710                 Yes                No              9              0
## 1711                  No                No             18              1
## 1712                  No                No              6              0
## 1713                  No                No             10              0
## 1714                  No                No              0             19
## 1715                  No                No             14              0
## 1716                  No                No              3              0
## 1717                  No                No              7              7
## 1718                 Yes                No              8              0
## 1719                 Yes                No              3              0
## 1721                  No                No              6             10
## 1722                  No                No              4              0
## 1724                  No                No              5              6
## 1725                  No                No             13              0
## 1726                 Yes                No              7              0
## 1727                  No                No              2              0
## 1728                 Yes               Yes              7              3
## 1729                  No                No             21             21
## 1730                  No                No             21              0
## 1731                 Yes                No             13              2
## 1732                 Yes               Yes              9              0
## 1733                  No                No              4              3
## 1734                  No                No              9              5
## 1735                 Yes               Yes             12              0
## 1736                  No                No              1              0
## 1737                  No                No              3             11
## 1738                 Yes                No              8              4
## 1739                 Yes               Yes              3             15
## 1740                  No                No              4              0
## 1741                  No                No              2              0
## 1742                  No                No              3              0
## 1743                  No                No              3              1
## 1744                  No                No              7              0
## 1745                  No                No              4             13
## 1746                  No                No              5              0
## 1747                  No                No              5              0
## 1749                 Yes                No              5              3
## 1750                  No                No              1              0
## 1751                 Yes                No             11              7
## 1752                  No                No              3              0
## 1753                  No                No              5              7
## 1754                 Yes                No             12              0
## 1755                  No                No             12             12
## 1756                  No                No             14              0
## 1757                  No                No             10              0
## 1758                  No                No             21              0
## 1759                  No                No              6              0
## 1761                 Yes               Yes              7              2
## 1762                  No                No              3              0
## 1763                  No                No              3              0
## 1764                  No                No              0              4
## 1765                 Yes                No              9              0
## 1766                 Yes                No              9              0
## 1769                 Yes                No             14              0
## 1770                  No                No              6              5
## 1771                 Yes                No             18              0
## 1773                 Yes               Yes             16              2
## 1774                  No                No              4              0
## 1775                  No                No             11              3
## 1776                  No                No              2              0
## 1778                 Yes               Yes              9              0
## 1779                 Yes               Yes             16              0
## 1780                  No                No             13              3
## 1781                  No                No             16              5
## 1782                 Yes               Yes              0              7
## 1783                 Yes                No              5              0
## 1784                  No                No              5              0
## 1785                 Yes                No             20              0
## 1786                  No                No             21             16
## 1787                 Yes               Yes              9              5
## 1788                 Yes               Yes              9              0
## 1789                  No                No              7              0
## 1790                  No                No             50             11
## 1791                  No                No              2              0
## 1792                  No                No              1              0
## 1793                 Yes               Yes              0              7
## 1794                 Yes                No              8              6
## 1795                  No                No              2              0
## 1796                 Yes               Yes              4              4
## 1797                  No                No             11              4
## 1798                 Yes                No             10              0
## 1799                  No                No              0             14
## 1800                  No                No             60              0
## 1801                 Yes               Yes              9              0
## 1802                  No                No              7              0
## 1803                 Yes               Yes              5              0
## 1804                 Yes               Yes             18              0
## 1805                  No                No              1              0
## 1806                  No                No             14              0
## 1807                  No                No             12              0
## 1808                 Yes                No              9              0
## 1809                  No                No              0              2
## 1810                  No                No              0              7
## 1811                  No               Yes              0              7
## 1812                 Yes                No             10              5
## 1813                  No                No              3              7
## 1814                  No                No              1              0
## 1815                  No                No              4              0
## 1816                  No                No             30              0
## 1817                  No                No              3              0
## 1818                  No                No              4              0
## 1819                  No                No              0              6
## 1820                  No                No              0              7
## 1821                 Yes                No             10              0
## 1822                 Yes                No              7              0
## 1823                 Yes                No              7              0
## 1824                  No               Yes             21              0
## 1825                  No                No              3              0
## 1826                  No                No             15              0
## 1827                  No                No              0             12
## 1828                 Yes               Yes             30              3
## 1829                  No                No             47              0
## 1830                 Yes                No              9              0
## 1831                  No                No             11              0
## 1832                 Yes                No             19              7
## 1833                 Yes                No              7              7
## 1834                  No                No              4              0
## 1835                 Yes                No              8              0
## 1836                  No                No              3              0
## 1837                  No                No              4              0
## 1838                  No                No              2              0
## 1839                  No                No             21              0
## 1840                 Yes                No             15              0
## 1841                  No                No              8              6
## 1842                  No                No             15              0
## 1843                  No                No              8              5
## 1844                  No                No             15              5
## 1845                  No                No              2              0
## 1846                  No                No              2              0
## 1847                 Yes               Yes              6              5
## 1848                  No                No             10              0
## 1849                  No                No              4              0
## 1850                  No                No              0              7
## 1851                  No                No              4              0
## 1852                  No                No             18              6
## 1853                 Yes                No             12              6
## 1854                  No                No             24              0
## 1855                 Yes               Yes              4              0
## 1856                 Yes                No              7              0
## 1857                 Yes               Yes             14              0
## 1858                  No                No              0              7
## 1859                  No                No             10              0
## 1860                 Yes                No              8              7
## 1861                 Yes                No              4              0
## 1862                 Yes                No             10              0
## 1863                 Yes               Yes              5              4
## 1864                  No                No             14              0
## 1865                  No                No              5              0
## 1866                  No                No              4              0
## 1868                  No                No              0              7
## 1869                  No                No              0             13
## 1870                  No                No              5              0
## 1871                 Yes                No              5              0
## 1872                  No                No              5              3
## 1873                 Yes                No              6              0
## 1874                  No                No             14             14
## 1875                 Yes                No              3              0
## 1876                 Yes                No              6              5
## 1877                  No                No             13              0
## 1878                 Yes                No              3              0
## 1879                 Yes                No              0              7
## 1880                  No                No             21              0
## 1881                  No                No             20              0
## 1882                  No                No              2              0
## 1883                  No                No              0              4
## 1884                  No                No             17              4
## 1885                 Yes               Yes              8              8
## 1886                  No                No              2              0
## 1887                  No                No              2              0
## 1888                 Yes               Yes              6              0
## 1889                  No                No             20              0
## 1890                  No                No              3              0
## 1891                  No                No              4              0
## 1892                 Yes                No              9              0
## 1893                  No                No              7              0
## 1894                 Yes               Yes             14              0
## 1895                  No                No              5              0
## 1896                  No                No             55              0
## 1897                 Yes               Yes              8              7
## 1898                  No                No              4              4
## 1899                  No                No             23              0
## 1900                  No                No             20              0
## 1901                  No                No              0              6
## 1902                  No                No              6              0
## 1903                  No                No              0             21
## 1904                  No                No             13              0
## 1906                  No                No              7              0
## 1907                  No                No             15              3
## 1908                  No                No              3              0
## 1909                 Yes                No              7              7
## 1910                  No                No              0              7
## 1911                  No                No              8              5
## 1912                  No                No              4              0
## 1913                  No                No              4              0
## 1914                  No                No              3              0
## 1915                 Yes               Yes             21              4
## 1916                  No                No             48              0
## 1917                 Yes               Yes              8              0
## 1918                  No                No              2              0
## 1919                  No                No              4              3
## 1920                  No               Yes              5              0
## 1921                  No                No             20              5
## 1922                  No                No             10             10
## 1923                 Yes               Yes              4              0
## 1924                  No                No              2              0
## 1926                  No                No             20              0
## 1927                  No                No              8              0
## 1928                  No                No              0              2
## 1929                  No                No              2              7
## 1930                  No                No              5              4
## 1931                  No               Yes              0              7
## 1932                  No                No              2              0
## 1933                  No                No              0             18
## 1934                 Yes                No             14              0
## 1935                 Yes                No             17              0
## 1936                  No               Yes             14              0
## 1937                  No                No              7              4
## 1938                 Yes               Yes              8              4
## 1939                  No                No              2              0
## 1941                 Yes               Yes              0              7
## 1943                 Yes                No              7              0
## 1944                  No                No              8             10
## 1945                  No                No              8              0
## 1946                  No                No              5              0
## 1947                 Yes               Yes             14              0
## 1948                  No                No              2              0
## 1949                 Yes                No              5              0
## 1950                  No                No              3              9
## 1951                  No                No              1              0
## 1952                  No                No             11              3
## 1953                  No                No              6              0
## 1954                  No                No              3              2
## 1955                 Yes                No              7              3
## 1956                  No                No             11              3
## 1957                  No               Yes              4              2
## 1958                  No                No              0             60
## 1959                  No                No              5              0
## 1960                  No                No              3              0
## 1961                  No                No              0              5
## 1962                  No                No              3              0
## 1963                  No                No              2              0
## 1964                  No                No              8              0
## 1965                 Yes                No              8              0
## 1966                  No                No              2              9
## 1967                 Yes               Yes              0              7
## 1968                  No                No             20              0
## 1969                 Yes               Yes              5              0
## 1970                  No                No              6              0
## 1971                  No                No             58              0
## 1972                  No                No             12              0
## 1973                  No                No              2              0
## 1974                  No                No              1              0
## 1975                  No                No              6              4
## 1977                  No                No              2              0
## 1979                  No                No              0             14
## 1980                  No                No              1              0
## 1981                  No                No              0             30
## 1982                  No                No              2              0
## 1983                  No                No              3              0
## 1984                  No                No              7              0
## 1985                  No                No              2              3
## 1986                 Yes                No              6              0
## 1987                  No                No              0              7
## 1988                  No                No              6              0
## 1989                 Yes                No             17              0
## 1990                 Yes               Yes              6              0
## 1991                 Yes                No              6              0
## 1992                  No                No              0              4
## 1993                  No                No              4              0
## 1994                 Yes                No              5              0
## 1995                  No                No             26              0
## 1996                  No                No             12              0
## 1997                  No                No              5              0
## 1998                 Yes                No              8              0
## 1999                  No                No              7              6
## 2000                 Yes                No             13              0
## 2001                 Yes                No              3              0
## 2002                  No                No             14              0
## 2003                  No                No             60              0
## 2004                  No                No              2              5
## 2005                 Yes               Yes              0              3
## 2006                  No                No              5              0
## 2007                 Yes                No              5              0
## 2008                  No                No              6              0
## 2009                  No                No             31              0
## 2010                  No                No              0              4
## 2011                  No                No             42              7
## 2013                 Yes                No              6              0
## 2015                  No                No             10              0
## 2016                  No                No              5             13
## 2017                  No                No              5              0
## 2018                  No                No             45              0
## 2019                 Yes                No              6              0
## 2020                  No                No              7              0
## 2021                 Yes                No              8              5
## 2022                  No                No              0              7
## 2023                 Yes                No              2              0
## 2024                  No                No              8              0
## 2025                 Yes               Yes              8              7
## 2026                  No                No              9              0
## 2027                  No                No              1              0
## 2028                  No                No              0             14
## 2029                  No                No              4              0
## 2030                  No                No              4              0
## 2031                  No               Yes              2              0
## 2032                  No                No              1              0
## 2033                  No                No              4              4
## 2034                  No                No              7              0
## 2035                  No                No              4             10
## 2036                 Yes               Yes              9              4
## 2038                  No                No             38              9
## 2039                 Yes               Yes              7              7
## 2040                  No                No              7              6
## 2041                  No                No              3              1
## 2042                 Yes               Yes              8              4
## 2043                  No                No              5              0
## 2044                 Yes                No              6              0
## 2045                  No                No             12              0
## 2046                  No                No             60              0
## 2047                  No                No             13             11
## 2048                 Yes                No              3              0
## 2049                 Yes               Yes              6              0
## 2050                  No                No              9              0
## 2052                 Yes                No             12              0
## 2053                  No                No              6              3
## 2055                 Yes               Yes             22              0
## 2056                  No                No              1              0
## 2057                  No                No              0             14
## 2058                 Yes                No             16              6
## 2059                 Yes                No             19              3
## 2061                  No                No              4              0
## 2062                 Yes                No             11              3
## 2063                 Yes               Yes             14              0
## 2064                  No                No              2              0
## 2065                  No                No              5              0
## 2067                  No               Yes              0              5
## 2068                  No                No              2              0
## 2069                  No                No              4              0
## 2071                  No                No              3              0
## 2072                  No                No              0              9
## 2073                 Yes               Yes             10              0
## 2074                  No                No              4              0
## 2075                  No                No              4              4
## 2076                 Yes                No              0              7
## 2077                 Yes                No              8              0
## 2078                  No                No             15              0
## 2079                 Yes               Yes              0              7
## 2080                 Yes                No              5              0
## 2081                  No                No             10              0
## 2082                  No                No              2              0
## 2083                 Yes                No              7              0
## 2084                 Yes               Yes              2              3
## 2085                 Yes               Yes              0              5
## 2086                 Yes                No              9              0
## 2087                  No                No              4              0
## 2088                  No                No              2              0
## 2089                  No                No              4              0
## 2090                 Yes                No             14              0
## 2092                  No                No              4              0
## 2094                  No                No              3              0
## 2095                  No                No              4              0
## 2096                  No                No             65              3
## 2098                 Yes               Yes              9              0
## 2099                  No                No              6              9
## 2100                 Yes                No              4              0
## 2101                  No                No             14              0
## 2102                  No                No              7              0
## 2103                  No                No              2              0
## 2104                 Yes                No             10              6
## 2105                  No                No             10              0
## 2106                  No                No              2              0
## 2107                  No                No             12              0
## 2108                 Yes                No              6              0
## 2109                  No                No             14              0
## 2110                  No                No             11              0
## 2111                  No                No              2              0
## 2112                  No                No              7              0
## 2113                 Yes                No             19              0
## 2114                  No                No             60              0
## 2115                  No                No              4              0
## 2116                 Yes                No              9              0
## 2117                 Yes               Yes              6              0
## 2119                 Yes               Yes             10              0
## 2120                 Yes               Yes             10              0
## 2121                  No                No              7              0
## 2122                  No                No              0              7
## 2123                  No                No             10              0
## 2126                  No               Yes              0              9
## 2127                 Yes                No              4              0
## 2128                 Yes               Yes              5              0
## 2129                  No                No             30              0
## 2130                  No                No            145              0
## 2131                 Yes                No             10              0
## 2132                  No                No              2              0
## 2133                 Yes               Yes              0              4
## 2134                  No                No             11              0
## 2135                  No                No              1              0
## 2136                 Yes               Yes             14              4
## 2137                 Yes                No             14              0
## 2138                  No                No              7              0
## 2140                  No                No              3             22
## 2141                  No               Yes              0              7
## 2142                  No                No              5              5
## 2143                  No                No             14              3
## 2144                  No                No              4              0
## 2145                  No                No             15              4
## 2146                 Yes                No              0             20
## 2147                  No                No              8              0
## 2148                 Yes                No              6              6
## 2149                  No                No              9              0
## 2150                 Yes               Yes              6              0
## 2151                  No               Yes              0              7
## 2152                  No                No              9              0
## 2154                  No                No             10              0
## 2155                 Yes                No             16              5
## 2157                 Yes               Yes              7              0
## 2158                  No                No             10              0
## 2160                 Yes                No             12              2
## 2161                 Yes               Yes              9              0
## 2163                 Yes                No              3              0
## 2164                  No                No             17              3
## 2165                  No                No              5              0
## 2166                 Yes                No              8              0
## 2167                  No                No              4              0
## 2169                 Yes               Yes             15              0
## 2170                 Yes                No             11              3
## 2171                  No                No             52              0
## 2172                  No                No              3              3
## 2174                 Yes                No             15              0
## 2175                 Yes                No             13              0
## 2176                 Yes                No             14              7
## 2177                  No                No             13              3
## 2178                  No                No              4              0
## 2179                  No                No              5              0
## 2180                 Yes                No              7              0
## 2181                  No                No              2              0
## 2182                  No                No             21              1
## 2183                  No                No              0             14
## 2184                 Yes                No              5              0
## 2185                  No                No              3              0
## 2186                  No                No              4              0
## 2187                  No                No              0             12
## 2188                 Yes                No             14              8
## 2189                  No                No              5              0
## 2190                 Yes               Yes              4              4
## 2192                 Yes                No             10              0
## 2193                  No                No              7             13
## 2194                  No                No              7              7
## 2195                  No                No              7              0
## 2196                  No                No             10              5
## 2197                  No                No              4              0
## 2198                  No               Yes              0             13
## 2199                  No                No              0              5
## 2200                  No                No              3              0
## 2201                  No                No              8              0
## 2202                  No                No              2              0
## 2203                 Yes                No             15              4
## 2204                  No                No              3              0
## 2205                  No                No              4              0
## 2206                 Yes                No              6              0
## 2207                 Yes                No              7              3
## 2208                  No                No             37              6
## 2209                  No                No              0              7
## 2210                  No                No              3              0
## 2211                  No                No              2              0
## 2212                  No                No              6              0
## 2213                 Yes                No             17              6
## 2214                  No                No              0              8
## 2215                 Yes                No              4              9
## 2216                  No                No              0              3
## 2217                 Yes                No              4              3
## 2218                  No                No              3              0
## 2219                 Yes               Yes             35              0
## 2220                 Yes                No              4              0
## 2221                  No                No              0              4
## 2222                  No                No             20              0
## 2223                  No                No              5              0
## 2224                 Yes               Yes              2              0
## 2225                  No                No              4              0
## 2226                  No                No              4              0
## 2227                  No                No             10              4
## 2228                 Yes                No              8              5
## 2229                  No                No              7              4
## 2230                  No                No              6              0
## 2232                  No                No              6              4
## 2233                  No                No             18              6
## 2234                 Yes                No              7              0
## 2235                  No                No              2              0
## 2236                  No                No              2              0
## 2237                  No                No              2              0
## 2239                  No                No             90              0
## 2240                 Yes                No              7              0
## 2241                  No                No              8              2
## 2242                  No                No              5              0
## 2243                  No                No             45              0
## 2244                  No                No             10              7
## 2245                  No                No              3              0
## 2246                 Yes               Yes             14              0
## 2247                  No                No              2              0
## 2248                  No                No             10              4
## 2249                  No                No              1              0
## 2250                  No                No              6              4
## 2252                  No                No             20              0
## 2253                  No                No            180              0
## 2254                  No                No              7              0
## 2255                  No                No             18              3
## 2256                  No               Yes              0              7
## 2257                  No                No              1              0
## 2258                 Yes               Yes              0              7
## 2260                 Yes                No              7              0
## 2261                  No                No             10              0
## 2262                  No                No              5              0
## 2263                 Yes               Yes              9              0
## 2264                  No                No              7              0
## 2265                  No                No              3              0
## 2266                  No                No              6              0
## 2267                  No                No              9              4
## 2268                 Yes               Yes             14              4
## 2269                 Yes                No              9              0
## 2270                  No                No             45              0
## 2271                  No                No              5              6
## 2272                 Yes               Yes              7              2
## 2273                  No                No              4              0
## 2274                 Yes                No             12              5
## 2275                  No                No              2              5
## 2276                 Yes               Yes              0              4
## 2277                  No                No              0              2
## 2278                  No                No              7              0
## 2279                  No                No             11              0
## 2280                  No                No              4              0
## 2281                  No                No              6              0
## 2282                  No                No              3              0
## 2283                 Yes               Yes             17              4
## 2284                  No                No              7              0
## 2285                  No                No             12              0
## 2286                 Yes               Yes              4              4
## 2287                  No                No             16              0
## 2288                  No                No              5              0
## 2289                  No                No              2              0
## 2290                  No                No             12              3
## 2291                  No                No              7              0
## 2292                 Yes               Yes              7              0
## 2293                 Yes               Yes              0              9
## 2294                  No                No              6              0
## 2295                  No                No              7              0
## 2297                 Yes                No              7              0
## 2298                 Yes                No             10              0
## 2299                  No                No              1              0
## 2300                 Yes                No              7              0
## 2301                  No                No             14              0
## 2302                 Yes                No              9              0
## 2303                  No                No              7              0
## 2304                  No                No             10              0
## 2305                 Yes               Yes              4              3
## 2306                  No               Yes              0              7
## 2307                 Yes                No              6              0
## 2308                  No                No              4              5
## 2309                 Yes                No             12              3
## 2310                 Yes               Yes              0              7
## 2311                 Yes               Yes              0              6
## 2312                  No                No              7             14
## 2313                  No                No              0              5
## 2314                 Yes               Yes              9              3
## 2315                  No                No              0              7
## 2316                  No                No             10              0
## 2317                 Yes                No              7              3
## 2318                 Yes                No              6              0
## 2319                 Yes               Yes              6              8
## 2321                  No                No             12              6
## 2322                 Yes                No             10              6
## 2323                  No                No             10              0
## 2324                  No                No              4              0
## 2325                  No                No              3              0
## 2326                  No               Yes              0              7
## 2327                  No                No             11              3
## 2328                  No                No             12              0
## 2329                  No                No              0              4
## 2330                 Yes               Yes              7              0
## 2331                  No                No              8              6
## 2332                  No               Yes              0              7
## 2333                 Yes               Yes             10              0
## 2334                  No                No              7              2
## 2336                  No                No              0              7
## 2337                 Yes                No              4              0
## 2338                 Yes                No              0              7
## 2339                  No                No             92              0
## 2340                 Yes                No             11              0
## 2341                  No                No              9              0
## 2342                 Yes                No              6              6
## 2343                  No                No             20             20
## 2344                  No                No              0              7
## 2345                  No                No              0             15
## 2346                  No                No             15              0
## 2347                  No                No              8              0
## 2348                 Yes               Yes             14              0
## 2349                  No                No              5              3
## 2350                  No                No              2              0
## 2351                  No                No              2              0
## 2352                  No               Yes              0              7
## 2354                  No                No              3              0
## 2355                 Yes                No              8              3
## 2356                  No                No              3              0
## 2357                  No                No              0             60
## 2358                  No                No              6              0
## 2359                  No                No              7              3
## 2360                  No                No              0              7
## 2361                  No                No              4              0
## 2362                 Yes                No             26              0
## 2363                 Yes                No             13              0
## 2364                  No                No             11              3
## 2365                 Yes               Yes             10              0
## 2366                 Yes                No              0             14
## 2367                  No                No              2              0
## 2368                 Yes                No              7              0
## 2369                  No                No              2              0
## 2370                  No                No              8              0
## 2371                  No                No              3              4
## 2372                 Yes                No              7              0
## 2373                  No                No              8              0
## 2374                  No                No              3              0
## 2375                  No                No              0              7
## 2376                  No                No              6              0
## 2377                 Yes                No             13              0
## 2378                 Yes                No              3              0
## 2379                  No                No             42              3
## 2380                 Yes                No              8              0
## 2381                 Yes                No             10              8
## 2382                  No                No             10              0
## 2383                  No                No              3              0
## 2384                  No                No             20              0
## 2385                  No                No              2              0
## 2386                 Yes                No              7              3
## 2387                  No                No             35              0
## 2388                 Yes                No              7              0
## 2389                 Yes                No              5              4
## 2390                 Yes                No              9              5
## 2391                  No                No              2              0
## 2392                 Yes                No              7              0
## 2393                  No                No             11              0
## 2394                  No                No              3              0
## 2395                 Yes                No             14              0
## 2396                  No                No             59              0
## 2397                 Yes               Yes              5              0
## 2398                  No                No              3              2
## 2399                  No                No             12              0
## 2401                  No                No              4              0
## 2402                  No                No              5              0
## 2403                  No                No             12              0
## 2404                 Yes               Yes              7              0
## 2405                  No                No              7              0
## 2406                 Yes               Yes             14              0
## 2407                  No                No              0              7
## 2408                  No                No              9              9
## 2409                 Yes                No             14              5
## 2410                 Yes                No              8              4
## 2411                  No                No             28              0
## 2412                  No                No             60              5
## 2413                 Yes                No              6              3
## 2414                 Yes               Yes              0              7
## 2417                  No                No             15              0
## 2418                  No                No              3              0
## 2419                 Yes               Yes              0             11
## 2420                 Yes               Yes              4              0
## 2421                  No                No              5              2
## 2422                  No                No              2              0
## 2424                  No                No              7              2
## 2425                  No                No             11              0
## 2426                 Yes                No              6              0
## 2427                  No                No              0              7
## 2428                  No                No             12              0
## 2430                  No                No              2              0
## 2431                  No                No              3              0
## 2432                  No               Yes              0             18
## 2433                  No                No             61              9
## 2435                 Yes                No              6              7
## 2436                 Yes                No              4              0
## 2437                  No                No              5              0
## 2438                  No                No              0              7
## 2439                  No                No              8              0
## 2440                  No                No              8              3
## 2441                 Yes                No             14              0
## 2442                 Yes                No              7              0
## 2443                 Yes                No             15              4
## 2444                  No                No              0              9
## 2445                  No                No              1              0
## 2446                 Yes                No             21              0
## 2447                 Yes                No             14              0
## 2448                  No                No              3              0
## 2449                  No                No              2              0
## 2450                  No                No              9              0
## 2451                  No                No             10              0
## 2452                 Yes                No              0              7
## 2453                 Yes                No              7              1
## 2454                 Yes               Yes              8              0
## 2455                  No                No             18              5
## 2456                  No                No              7              0
## 2457                 Yes               Yes              0              7
## 2458                  No                No              6              0
## 2459                  No                No              4              0
## 2460                  No                No             17              0
## 2461                 Yes                No              8              0
## 2462                  No                No             16              6
## 2463                  No                No              2              0
## 2464                  No                No              8              0
## 2465                 Yes               Yes             49             10
## 2467                  No                No              4              0
## 2468                  No                No              7              0
## 2469                 Yes                No              5              0
## 2470                  No                No              3              0
## 2471                  No                No              1              0
## 2472                 Yes               Yes              0             20
## 2473                 Yes                No              6              0
## 2474                 Yes                No             10              7
## 2475                 Yes               Yes             11              0
## 2477                  No                No              7              0
## 2478                  No                No             14              0
## 2479                 Yes                No             10              0
## 2480                 Yes               Yes              4              0
## 2481                  No                No              0              7
## 2482                  No                No              7              0
## 2483                  No                No              4              0
## 2484                  No                No             11              0
## 2485                 Yes                No              2              0
## 2486                  No                No             30              0
## 2487                  No                No             14              0
## 2488                  No                No              0              7
## 2489                  No                No              5              0
## 2490                  No                No              2              0
## 2491                  No                No             35              0
## 2492                  No                No              3              0
## 2493                  No                No              0              7
## 2494                  No                No             40              0
## 2495                  No                No              7              0
## 2497                  No                No              5              0
## 2498                 Yes               Yes             10              0
## 2499                 Yes                No              6              6
## 2500                  No                No              2              0
## 2502                  No                No              0              6
## 2503                  No               Yes              0              7
## 2504                 Yes                No              6              3
## 2506                 Yes                No             11              0
## 2507                 Yes                No              8              3
## 2508                 Yes                No              0              9
## 2509                  No                No              2              0
## 2510                  No                No              0              7
## 2511                  No                No              2              0
## 2512                  No                No             20              0
## 2513                  No                No              0              7
## 2514                  No                No              0              5
## 2515                  No                No              6              0
## 2516                  No                No             39             10
## 2517                  No                No              3              0
## 2518                  No                No              0              7
## 2519                  No               Yes              0              7
## 2520                 Yes               Yes             13              0
## 2521                  No                No             16             10
## 2522                 Yes                No              7              7
## 2523                  No                No             28              0
## 2524                  No                No             30              2
## 2525                  No                No             21              0
## 2526                 Yes               Yes              6              5
## 2527                  No                No              3              0
## 2528                 Yes                No             10              0
## 2529                 Yes               Yes              7              6
## 2530                  No                No              2              0
## 2531                  No               Yes              0             15
## 2532                 Yes                No             11              0
## 2533                  No                No              3              0
## 2534                 Yes                No              2              0
## 2535                  No                No             13              7
## 2536                 Yes               Yes              0              7
## 2537                  No                No              0              7
## 2538                  No                No              0             12
## 2539                  No                No              3              0
## 2540                  No                No             11              7
## 2541                  No                No              1              0
## 2542                  No                No              2              0
## 2543                  No                No             30              0
## 2544                 Yes                No              2              0
## 2545                  No                No              0              7
## 2546                  No                No              2              0
## 2547                 Yes                No             10              0
## 2548                  No                No             12              0
## 2549                  No                No              7              0
## 2550                  No                No              7              0
## 2551                  No                No             11              0
## 2552                  No                No              7              4
## 2553                  No                No             29              0
## 2554                 Yes               Yes              0             10
## 2555                  No                No             11              0
## 2556                  No                No              7              6
## 2557                  No                No              2              0
## 2558                 Yes                No              0              7
## 2559                  No                No              3              0
## 2560                 Yes                No              9              1
## 2561                  No                No              6              0
## 2562                  No                No              2              0
## 2563                  No                No             20              0
## 2564                  No                No              8              6
## 2566                  No                No             15              9
## 2567                 Yes                No             12              0
## 2568                  No                No              7              7
## 2569                  No                No              5              0
## 2570                  No                No              4              0
## 2571                  No                No             21              3
## 2572                  No                No              1              0
## 2573                  No                No             13              3
## 2574                  No                No              2              0
## 2576                  No                No              4              0
## 2577                  No                No            122              5
## 2578                  No                No              1              0
## 2579                  No                No              2              0
## 2580                  No                No              0             13
## 2581                 Yes                No             70              0
## 2582                  No                No             35              0
## 2583                  No                No              0              7
## 2584                  No                No             16              0
## 2585                 Yes               Yes             15              0
## 2586                 Yes               Yes              7              0
## 2587                  No                No             13              0
## 2588                 Yes               Yes              0              7
## 2589                  No                No              5              0
## 2590                  No                No              2              0
## 2591                  No                No              2              0
## 2592                 Yes               Yes             11              3
## 2593                 Yes                No             12              0
## 2594                  No                No              4              0
## 2595                 Yes                No              8              0
## 2596                  No                No              2              0
## 2597                 Yes                No              7              3
## 2598                  No                No              4              0
## 2599                  No                No              2              6
## 2600                 Yes               Yes              7              0
## 2601                  No                No              9              0
## 2602                  No                No              0             15
## 2603                  No                No             37              5
## 2604                  No                No             25              0
## 2605                  No                No              3              0
## 2606                 Yes                No              9              0
## 2607                 Yes               Yes             14              4
## 2609                  No                No            150              0
## 2610                 Yes               Yes             15              0
## 2611                  No                No              4              0
## 2612                 Yes                No             14              0
## 2613                 Yes               Yes              0             14
## 2614                 Yes                No              6              0
## 2615                 Yes                No             17              4
## 2616                  No                No              0              7
## 2617                  No                No              1              0
## 2618                  No                No             24              0
## 2620                  No                No              8              5
## 2621                  No                No             10              2
## 2623                 Yes               Yes              4              0
## 2624                  No                No              7              0
## 2625                  No                No              4              0
## 2626                  No                No             14              0
## 2627                  No                No              4              8
## 2628                  No                No              8              3
## 2629                 Yes                No              8              0
## 2630                 Yes                No             10              0
## 2631                  No                No              0              7
## 2632                  No                No              3              0
## 2633                  No                No              7              0
## 2635                  No                No             10              0
## 2636                 Yes                No              2              0
## 2637                  No                No              7              0
## 2638                  No                No             14              3
## 2639                  No                No             10              0
## 2640                 Yes               Yes              6              0
## 2641                 Yes                No              5              5
## 2642                 Yes               Yes             12              0
## 2643                  No                No              1              0
## 2645                  No                No              7              0
## 2646                  No                No             12              7
## 2647                  No                No             11              0
## 2648                  No                No             11              4
## 2649                  No                No              0             10
## 2650                 Yes               Yes              8              9
## 2651                 Yes               Yes             11              0
## 2652                 Yes                No              5              0
## 2653                 Yes                No             10             14
## 2654                 Yes                No              7              0
## 2655                  No                No              5              2
## 2656                  No                No             10              5
## 2657                  No                No             12              0
## 2658                 Yes                No             12              5
## 2659                 Yes               Yes              5              7
## 2660                  No                No             21              7
## 2661                  No                No              0              4
## 2662                  No                No             11              6
## 2663                  No                No             10              0
## 2664                  No                No              2              0
## 2665                 Yes               Yes             17              0
## 2666                 Yes               Yes             14              7
## 2667                  No                No             24              0
## 2668                  No                No              6              0
## 2669                  No                No              4              0
## 2671                  No                No              3              0
## 2672                  No                No              7              0
## 2674                  No                No              4              6
## 2675                 Yes                No             12              0
## 2676                  No                No             10              0
## 2677                  No                No             20              0
## 2678                 Yes                No              4              0
## 2679                  No                No              8              0
## 2680                  No                No              3              2
## 2681                  No                No             14              0
## 2682                  No                No             79              0
## 2683                  No                No              2              0
## 2684                  No                No             14              0
## 2685                  No               Yes              6              0
## 2686                  No                No              3              0
## 2687                  No                No              6              0
## 2688                  No                No             26              0
## 2689                  No                No              0             10
## 2690                 Yes               Yes              4              2
## 2691                  No                No              4              0
## 2692                 Yes                No             14              3
## 2693                 Yes                No              4              0
## 2694                  No                No              1              0
## 2695                  No                No              1              0
## 2696                  No                No              0              8
## 2697                  No                No              8              0
## 2698                  No                No             10             23
## 2699                  No                No              3              0
## 2700                 Yes                No              9              0
## 2701                  No                No              5              0
## 2702                  No                No             35              0
## 2703                  No                No             11              2
## 2704                 Yes               Yes              4              0
## 2705                  No                No             54              0
## 2706                 Yes                No              8              0
## 2707                 Yes                No             11              0
## 2708                 Yes                No             14              0
## 2709                 Yes               Yes              0              7
## 2711                  No                No             30              0
## 2712                  No                No              3              5
## 2713                 Yes               Yes              4              0
## 2714                 Yes               Yes             11              3
## 2715                  No                No              2              0
## 2716                  No                No              2              0
## 2717                 Yes                No              6              0
## 2718                  No                No              0              7
## 2719                  No                No              2              0
## 2720                  No                No             36              6
## 2721                  No                No              9              5
## 2723                  No                No              8              0
## 2724                  No                No             13              0
## 2725                 Yes               Yes              6              6
## 2726                 Yes               Yes             10              0
## 2727                 Yes               Yes              0              5
## 2728                  No                No              9              0
## 2729                  No                No             10              0
## 2730                  No                No              2              0
## 2731                 Yes                No              6              4
## 2732                 Yes                No              3              9
## 2733                  No                No             14              0
## 2734                  No                No              4              6
## 2735                  No                No             21              0
## 2737                  No                No              0              7
## 2738                  No                No              0              7
## 2739                  No                No              7              5
## 2741                 Yes                No             14              0
## 2742                  No                No             60              0
## 2743                  No                No              8              4
## 2744                  No                No             12              3
## 2745                 Yes                No              6              0
## 2746                  No                No              7              0
## 2748                 Yes                No              5              6
## 2749                  No                No              7              0
## 2750                  No                No              0             10
## 2751                  No                No              1             27
## 2752                 Yes               Yes              3              0
## 2753                  No                No              8              4
## 2754                  No                No              4              0
## 2755                 Yes                No              3              0
## 2757                 Yes                No              6             10
## 2758                 Yes               Yes             14              6
## 2759                  No                No              5              0
## 2760                  No                No             10              5
## 2761                 Yes                No              4              3
## 2762                  No                No              6              0
## 2763                  No                No             30              0
## 2764                  No                No             30              0
## 2765                  No                No              0             21
## 2766                  No                No             10              0
## 2767                 Yes                No             10              0
## 2768                 Yes                No             15              0
## 2769                 Yes               Yes             18              3
## 2770                 Yes                No             10              4
## 2771                 Yes                No              6              4
## 2772                  No                No             10              0
## 2773                  No                No              0              1
## 2774                  No                No              3              0
## 2775                  No                No              7              0
## 2776                  No                No             10              5
## 2778                 Yes               Yes              5              0
## 2779                 Yes                No              8              0
## 2780                 Yes                No              7              0
## 2781                  No                No             30              8
## 2782                  No                No              5              0
## 2783                  No                No              1              6
## 2784                  No                No              0              6
## 2785                  No                No              9              3
## 2787                 Yes                No              6              0
## 2788                 Yes                No              7              0
## 2789                  No                No              2              0
## 2790                  No                No              4              4
## 2791                  No                No             15              6
## 2792                 Yes                No              7              0
## 2793                  No                No              0              7
## 2794                 Yes                No             13              0
## 2795                  No                No              7              0
## 2796                  No                No             10              4
## 2797                 Yes               Yes              5              4
## 2798                  No                No              2              0
## 2799                  No                No              4              0
## 2801                  No               Yes              0              4
## 2802                  No                No              7              4
## 2803                  No                No              9              7
## 2804                  No                No              0              7
## 2805                  No                No              1              0
## 2806                  No                No             10              4
## 2807                  No                No              0              4
## 2808                  No                No              5              3
## 2809                  No                No              5              4
## 2810                 Yes                No              7              7
## 2811                  No                No             10              5
## 2812                  No                No             19              2
## 2814                  No                No             50             10
## 2815                  No                No             56              0
## 2816                 Yes               Yes              6              6
## 2817                  No                No             10              0
## 2818                  No                No              2              0
## 2819                  No                No              5              0
## 2820                  No                No              2              0
## 2821                  No                No             12              0
## 2822                  No                No              0              7
## 2823                 Yes               Yes              7              0
## 2825                  No                No              7              0
## 2826                  No                No              2              0
## 2827                 Yes                No             14              0
## 2829                 Yes                No             12              5
## 2830                 Yes                No             46              4
## 2831                  No                No              0              7
## 2832                  No                No              1              0
## 2834                  No                No             35              5
## 2835                 Yes                No             10              0
## 2836                  No                No             10              0
## 2837                  No                No             22              0
## 2838                 Yes                No              3              0
## 2839                 Yes               Yes              8              5
## 2840                 Yes               Yes             11              0
## 2841                  No                No              4              5
## 2842                 Yes               Yes              5              0
## 2843                  No                No              1              0
## 2844                 Yes                No              8              0
## 2845                 Yes                No              8              0
## 2846                 Yes               Yes              7              3
## 2847                 Yes                No              9              0
## 2848                 Yes               Yes             34              0
## 2849                 Yes                No             13              4
## 2850                  No                No             12              0
## 2851                 Yes                No             15              4
## 2852                  No                No             23              0
## 2853                 Yes                No             10              0
## 2855                 Yes               Yes              7              0
## 2856                  No                No              4             14
## 2857                  No                No              0             10
## 2858                  No                No              4              3
## 2859                  No                No             12              0
## 2860                  No                No              9              1
## 2861                 Yes                No              6              0
## 2862                  No                No             13              3
## 2863                  No                No              2              0
## 2865                 Yes               Yes              4              6
## 2866                  No                No              0              6
## 2867                  No                No             21              0
## 2869                  No                No             39              2
## 2870                  No                No              0             14
## 2871                 Yes               Yes             10              0
## 2872                  No                No              0             13
## 2873                  No                No              4              4
## 2874                  No                No              7              0
## 2875                 Yes               Yes              0              7
## 2876                  No                No             21              4
## 2877                  No                No             12              3
## 2878                  No                No              5              0
## 2879                  No               Yes              0              7
## 2880                 Yes                No              0              7
## 2881                  No                No              2              0
## 2882                 Yes                No             21              0
## 2883                 Yes               Yes              4              6
## 2884                 Yes                No             13              0
## 2885                  No                No              7              0
## 2886                  No                No              6              2
## 2887                  No                No             14              0
## 2888                  No                No              6              0
## 2889                  No                No              0             14
## 2890                  No                No             11              0
## 2891                 Yes                No             12              0
## 2892                 Yes               Yes             11              4
## 2893                  No                No              6              0
## 2894                  No               Yes              0              7
## 2895                  No                No              4              0
## 2896                  No                No             17              6
## 2898                  No                No              3              0
## 2900                 Yes               Yes             12              0
## 2901                  No                No             21              7
## 2902                  No                No             31              0
## 2903                 Yes               Yes             12              0
## 2904                  No                No             60              0
## 2905                 Yes               Yes              9              4
## 2906                  No                No              9              4
## 2907                  No                No              7              0
## 2908                  No                No              2              0
## 2909                  No                No             19              0
## 2910                  No                No             13              0
## 2911                  No               Yes              0              7
## 2912                  No                No              8              0
## 2913                  No                No              4              0
## 2914                 Yes                No             13              0
## 2915                 Yes                No              0              8
## 2917                  No                No              9              7
## 2918                  No                No              7              0
## 2919                 Yes                No             15              0
## 2921                 Yes               Yes             16              5
## 2922                  No                No              4              0
## 2923                 Yes                No              4              6
## 2924                  No                No             42              0
## 2925                  No                No             13              0
## 2926                  No                No              7              0
## 2927                  No                No              0              7
## 2928                 Yes                No             10              0
## 2929                  No                No              3              0
## 2930                 Yes               Yes              6              7
## 2932                 Yes                No             14              0
## 2934                  No                No              4              0
## 2935                 Yes               Yes              7              3
## 2936                  No                No              6              6
## 2937                  No                No              5              0
## 2938                  No                No              4              0
## 2939                 Yes                No             15              0
## 2940                  No                No              1              7
## 2941                  No                No             16              0
## 2942                  No                No              7              0
## 2943                 Yes               Yes             14              0
## 2944                 Yes                No             15              6
## 2945                 Yes                No              2              0
## 2946                 Yes                No              7              0
## 2947                 Yes               Yes              6              6
## 2948                 Yes                No              2              5
## 2949                  No                No              3              0
## 2950                  No                No              0             11
## 2951                  No               Yes              5              7
## 2952                 Yes               Yes              3              0
## 2953                  No               Yes              0              7
## 2954                  No                No              8              6
## 2955                  No                No             30              0
## 2956                 Yes               Yes              0             14
## 2957                 Yes               Yes              6              0
## 2958                  No                No              7              7
## 2959                  No                No             10              4
## 2960                  No                No              1              2
## 2961                  No                No             10              6
## 2962                  No                No              0              9
## 2963                 Yes                No              3              0
## 2964                  No                No             42              0
## 2965                  No               Yes              0              7
## 2966                  No                No             24             14
## 2967                  No                No              6              0
## 2968                  No               Yes              0              7
## 2969                  No                No             20              0
## 2971                 Yes                No             11              0
## 2972                  No                No              5              0
## 2973                  No                No              5              0
## 2974                 Yes                No              6              6
## 2975                  No                No              7              0
## 2976                  No                No             45              0
## 2977                  No                No            180              5
## 2978                 Yes                No              8              0
## 2979                  No                No              7              0
## 2980                  No                No              0             11
## 2981                  No                No              6              0
## 2982                  No                No              3              0
## 2983                  No                No             14              0
## 2984                  No                No             34              0
## 2985                  No                No              3              0
## 2986                  No                No              0              4
## 2987                  No                No              0              8
## 2988                  No                No              9              0
## 2989                 Yes                No             16              2
## 2990                  No                No              7              0
## 2991                  No                No              2              0
## 2993                  No                No             27              0
## 2994                 Yes                No              9              0
## 2995                 Yes                No              6              0
## 2996                  No                No             39              7
## 2997                  No               Yes              7              7
## 2998                  No                No             10              0
## 2999                 Yes               Yes              8              0
## 3000                  No                No              7              7
## 3001                  No                No             20              0
## 3002                  No                No              1              0
## 3003                  No                No              6              0
## 3004                 Yes                No              5              0
## 3005                 Yes                No             16              0
## 3006                  No                No             28              2
## 3007                  No                No             27              3
## 3008                  No                No              0             14
## 3010                  No                No              7              0
## 3011                 Yes                No              5              0
## 3012                 Yes                No             10              3
## 3013                 Yes                No              7              0
## 3014                 Yes                No              7              0
## 3015                 Yes                No              8              4
## 3016                  No                No             21              0
## 3017                  No                No              5              0
## 3018                 Yes               Yes             12              0
## 3019                 Yes                No              5              0
## 3020                 Yes                No             15              0
## 3021                  No                No              1              0
## 3022                  No                No              2              0
## 3023                  No                No              2              0
## 3024                  No                No             28              2
## 3025                 Yes                No             10              0
## 3026                  No                No              7              0
## 3027                  No                No              8              0
## 3028                  No                No              1              0
## 3029                 Yes                No             10              3
## 3030                 Yes               Yes             10              0
## 3031                  No                No              5             14
## 3032                  No                No              4              0
## 3033                  No                No              1              0
## 3034                  No               Yes              0              7
## 3035                 Yes                No             10              5
## 3036                  No                No              0              8
## 3037                  No                No              8              4
## 3038                  No                No              3              0
## 3040                  No                No              7              0
## 3041                  No                No             21              0
## 3042                  No               Yes              0              7
## 3043                  No                No             12              0
## 3044                  No                No              2              0
## 3045                 Yes               Yes              7              0
## 3046                  No                No              2              0
## 3047                  No                No              2              0
## 3048                  No                No              2              0
## 3049                 Yes               Yes              7              0
## 3050                  No                No              0             10
## 3051                 Yes               Yes              6              0
## 3052                 Yes               Yes              0             11
## 3054                 Yes                No              8              4
## 3055                  No                No              0              7
## 3057                  No                No              7              4
## 3058                  No                No             12              0
## 3059                  No                No              0              5
## 3060                  No                No              7              0
## 3061                  No                No             13             10
## 3063                  No                No             13              0
## 3064                 Yes               Yes              8              0
## 3065                  No                No              0              4
## 3066                  No                No             20              0
## 3067                  No                No              4              0
## 3068                 Yes                No              0              5
## 3069                 Yes               Yes             10              0
## 3070                  No                No             18              0
## 3071                  No                No              6              0
## 3072                  No                No              4              7
## 3073                  No                No             13              0
## 3075                 Yes                No              7              0
## 3076                 Yes                No              3              7
## 3078                  No                No              8              0
## 3079                 Yes               Yes              7              0
## 3080                 Yes               Yes             10              4
## 3081                  No                No              2              0
## 3082                  No                No             11              0
## 3083                 Yes               Yes             14              0
## 3084                 Yes                No              6              0
## 3085                 Yes                No              5              4
## 3086                 Yes               Yes              7              4
## 3087                 Yes                No              8              0
## 3088                  No                No              3              0
## 3089                  No                No              9              6
## 3090                  No                No              6              0
## 3091                  No                No              6              9
## 3092                  No                No              8              1
## 3093                  No               Yes              7              5
## 3094                  No                No             10              0
## 3095                  No                No              7              0
## 3096                  No               Yes             10              0
## 3097                  No                No              5              0
## 3098                  No                No              7              7
## 3099                 Yes                No              9              3
## 3100                 Yes                No              9              0
## 3101                 Yes                No              0              7
## 3102                  No                No             40              6
## 3103                  No                No             16              0
## 3104                  No                No             14              4
## 3105                  No                No              4              0
## 3107                 Yes               Yes              7              0
## 3108                  No                No              4              0
## 3109                  No                No              3              0
## 3110                  No                No              4              6
## 3111                 Yes                No             10              0
## 3112                  No               Yes             60              0
## 3113                  No                No             17              5
## 3114                  No                No             10              0
## 3115                  No                No              1              0
## 3116                  No                No              4              0
## 3117                  No                No             15              0
## 3118                 Yes                No              6              0
## 3119                  No                No             23              3
## 3120                  No                No              2              0
## 3121                  No                No              2              0
## 3122                  No                No              5              0
## 3123                  No                No              1              0
## 3124                  No                No              8              0
## 3126                 Yes                No              0              5
## 3127                  No                No              7              0
## 3128                 Yes               Yes              3              7
## 3129                 Yes                No             24              0
## 3130                 Yes               Yes             15              0
## 3131                 Yes                No              7              3
## 3132                  No                No              2              2
## 3133                  No                No             14              5
## 3134                  No                No             15              0
## 3135                  No                No             16              5
## 3136                  No                No              3              0
## 3137                  No                No             12              4
## 3138                  No                No             10              0
## 3139                  No                No              7              0
## 3140                  No                No              4              0
## 3141                 Yes               Yes             13              0
## 3142                  No                No              0              7
## 3143                  No                No              0              4
## 3144                  No                No              0             14
## 3145                 Yes                No              6              0
## 3146                  No                No             12              5
## 3148                  No                No              0             15
## 3149                 Yes                No              2              0
## 3150                  No                No              0              7
## 3151                  No                No              1              0
## 3152                  No                No              5              0
## 3153                 Yes               Yes              6              4
## 3154                 Yes                No              8              0
## 3155                 Yes               Yes              6              5
## 3156                  No                No              5              0
## 3157                  No                No              2              8
## 3161                  No                No             12              2
## 3162                  No                No              3              9
## 3163                 Yes                No             10              4
## 3164                  No                No              9              0
## 3166                  No                No              3              0
## 3168                 Yes                No             14              0
## 3169                  No                No              4              3
## 3170                 Yes                No             17              6
## 3172                  No                No              6              0
## 3173                  No                No              2              0
## 3175                  No                No              1              6
## 3176                 Yes               Yes              5              0
## 3178                  No                No              1              0
## 3179                  No                No             15              0
## 3180                 Yes                No             15              0
## 3182                  No               Yes              8              5
## 3183                  No                No              4              0
## 3184                  No                No              0              7
## 3185                  No                No             14              5
## 3186                 Yes                No              8              0
## 3187                  No                No              4              0
## 3188                 Yes                No              5              0
## 3189                 Yes                No              7              6
## 3190                  No                No              9              0
## 3191                  No                No              6              1
## 3192                 Yes               Yes             12              0
## 3193                 Yes                No              4              0
## 3194                  No                No              4              0
## 3197                 Yes               Yes              4              0
## 3198                  No                No            180              0
## 3199                 Yes                No             10              5
## 3200                  No                No              5              0
## 3201                 Yes               Yes             12              0
## 3202                  No                No              5              5
## 3203                  No                No              6              0
## 3204                  No                No             10              0
## 3205                 Yes               Yes              6              0
## 3206                 Yes                No              7              7
## 3207                 Yes                No             16              0
## 3208                 Yes                No              4             21
## 3209                 Yes               Yes              5              0
## 3210                  No                No              3              0
## 3211                 Yes               Yes              4              0
## 3212                 Yes                No              6              0
## 3213                 Yes                No             16              6
## 3214                 Yes                No             14              0
## 3215                 Yes               Yes              6              0
## 3216                 Yes                No              7              0
## 3218                 Yes                No             10              0
## 3219                  No                No              0              7
## 3220                  No                No              3              0
## 3221                  No                No              3              4
## 3222                  No                No              6              0
## 3223                  No                No             22              0
## 3224                  No                No              3              0
## 3225                  No                No             16              0
## 3226                 Yes                No             12              4
## 3227                  No                No              2              0
## 3228                  No               Yes              0             10
## 3229                  No                No              7              0
## 3230                  No                No             18             18
## 3231                  No                No              4              0
## 3232                 Yes                No              4              0
## 3234                 Yes                No             11              0
## 3235                  No                No              0              7
## 3236                  No                No              9              0
## 3237                  No                No              5              7
## 3238                  No                No              1             16
## 3239                  No                No              0              7
## 3240                  No                No              6              6
## 3241                  No               Yes              6              7
## 3242                  No                No              0              5
## 3243                  No                No             10              0
## 3245                  No                No              8              7
## 3246                 Yes               Yes              8              6
## 3248                  No                No              3              0
## 3249                 Yes                No             10              0
## 3251                  No                No              4              0
## 3252                  No                No              0              6
## 3253                  No                No              0             11
## 3254                  No                No              1             19
## 3255                  No                No              0              3
## 3256                 Yes                No              0              8
## 3258                  No                No              3              0
## 3259                  No                No              7              5
## 3260                 Yes                No              9              5
## 3262                 Yes                No             11              0
## 3263                  No                No             21              0
## 3264                  No                No             14              7
## 3265                  No                No              2              0
## 3266                  No                No              0              7
## 3267                  No                No              3              0
## 3268                  No               Yes             12              8
## 3269                  No                No              7              7
## 3270                 Yes                No             10              0
## 3271                  No                No              9              0
## 3272                 Yes               Yes             10              0
## 3273                 Yes                No              5              2
## 3274                  No                No             12              6
## 3275                  No                No             60              0
## 3276                  No                No             40              3
## 3277                  No                No              5              6
## 3278                  No                No              2              0
## 3279                 Yes                No             15              0
## 3280                  No                No              2              0
## 3281                  No                No              0              4
## 3282                  No                No              3              0
## 3283                  No                No              1              0
## 3284                  No                No             26              4
## 3285                  No                No             12              5
## 3287                  No                No              9              0
## 3288                 Yes               Yes              5              0
## 3289                  No                No              7              5
## 3290                  No                No             10              6
## 3291                 Yes                No              3              0
## 3292                  No                No              7              0
## 3293                  No                No             22              0
## 3294                  No                No              7              8
## 3295                  No                No             10              4
## 3296                 Yes                No             19              0
## 3297                  No                No              1              0
## 3298                  No                No              5              0
## 3299                 Yes               Yes             11              4
## 3300                 Yes                No             12              0
## 3301                 Yes               Yes             10              0
## 3303                 Yes                No             10              0
## 3304                  No                No              0              7
## 3305                  No                No             20              5
## 3306                  No                No             28              3
## 3307                  No                No             72              3
## 3308                 Yes                No             16              0
## 3309                  No                No             12              0
## 3310                 Yes                No             15              0
## 3311                 Yes               Yes             16              0
## 3312                  No               Yes              4              7
## 3313                  No                No              0              7
## 3314                 Yes               Yes             13              0
## 3315                  No                No              4              0
## 3316                 Yes                No             13              4
## 3317                 Yes                No              6              7
## 3318                 Yes                No              6              3
## 3320                  No                No             19              0
## 3321                 Yes                No              7              0
## 3322                  No                No             10              8
## 3323                  No                No              3              5
## 3324                  No                No             28              0
## 3325                 Yes                No             10              0
## 3326                  No                No              8              6
## 3327                  No                No              9              0
## 3328                  No                No              6              0
## 3329                 Yes                No              7              0
## 3330                 Yes               Yes             15              5
## 3331                 Yes                No              6              0
## 3332                  No                No              3              0
## 3333                 Yes                No              8              0
## 3334                  No                No             14              0
## 3335                 Yes                No             10              2
## 3336                  No                No             30              0
## 3337                 Yes                No             11              0
## 3338                  No                No             10              3
## 3339                  No                No              4              0
## 3340                  No               Yes              0              7
## 3341                  No                No             21              0
## 3342                 Yes                No             10              0
## 3343                 Yes                No             16              7
## 3344                  No                No             10              3
## 3345                  No                No             31              4
## 3346                  No               Yes              0              9
## 3347                  No                No            270              5
## 3349                  No                No             60              0
## 3350                 Yes                No              5              3
## 3351                  No                No             10             20
## 3352                  No                No             11              0
## 3353                 Yes                No              5              0
## 3354                  No                No              5              0
## 3355                  No               Yes              0             14
## 3356                  No                No              5             10
## 3357                  No                No              2              0
## 3358                  No                No              0              7
## 3359                  No                No             25              0
## 3360                  No                No              3              0
## 3361                  No                No             10              0
## 3362                 Yes               Yes              0             12
## 3363                 Yes                No             16              4
## 3365                  No                No              4              0
## 3366                  No                No              6              0
## 3367                  No                No              8             13
## 3368                  No               Yes              0              8
## 3369                  No                No              6             12
## 3370                  No               Yes              1             17
## 3372                  No                No              0              7
## 3373                  No                No              3              0
## 3374                 Yes                No              9              0
## 3375                  No                No              7              0
## 3376                  No                No              6              0
## 3377                  No                No              5              0
## 3378                 Yes                No             14              0
## 3379                 Yes                No             14              8
## 3380                  No                No              8              0
## 3381                  No                No             30              0
## 3382                  No                No             11              0
## 3383                  No                No              2              0
## 3384                  No                No             60              0
## 3385                  No                No              1              0
## 3386                  No                No             10              7
## 3387                  No                No              3              0
## 3388                 Yes                No              7              0
## 3389                  No                No              1              0
## 3390                  No                No             23              7
## 3391                 Yes               Yes             10              0
## 3392                  No                No             10             11
## 3393                  No                No              1              0
## 3394                 Yes               Yes              3              0
## 3395                  No                No              7              0
## 3396                 Yes                No             15              0
## 3397                  No                No              0              7
## 3398                 Yes               Yes              6              9
## 3399                  No                No              0             90
## 3400                 Yes                No              9              0
## 3402                  No                No              0             19
## 3404                  No                No              0             40
## 3405                 Yes                No             13              0
## 3406                  No                No              8              1
## 3407                 Yes                No              9              0
## 3408                  No                No              2              0
## 3409                  No                No              4              0
## 3410                 Yes                No              7              0
## 3411                  No                No              6              0
## 3412                  No                No             17              0
## 3413                  No                No              2              0
## 3414                  No                No              8              1
## 3415                  No                No             10              0
## 3416                 Yes                No              6              0
## 3417                 Yes                No             10              0
## 3418                 Yes                No              7              7
## 3419                  No                No             12              0
## 3420                  No                No             14              7
## 3421                  No                No              0              7
## 3422                  No                No              1              0
## 3423                  No                No             29              0
## 3424                 Yes                No              7              0
## 3425                 Yes               Yes              3              0
## 3426                  No                No             10              5
## 3427                  No                No              7              0
## 3428                  No                No             28              7
## 3429                  No                No             16             25
## 3430                 Yes               Yes             14              5
## 3431                 Yes               Yes              7              6
## 3432                  No                No              4              0
## 3433                  No                No             65              0
## 3434                  No               Yes              0              7
## 3436                 Yes               Yes              0              7
## 3437                 Yes               Yes              0              8
## 3438                  No               Yes              0              7
## 3439                 Yes               Yes             20              0
## 3440                 Yes               Yes              0              7
## 3441                 Yes                No              8              0
## 3442                  No                No              4              0
## 3443                  No                No              8              0
## 3444                  No                No              7              0
## 3445                 Yes                No             10              3
## 3446                  No               Yes             13              3
## 3447                  No                No              3              3
## 3448                 Yes                No             13              0
## 3449                  No                No              7              4
## 3450                  No                No              0              7
## 3451                  No                No             11              0
## 3452                 Yes               Yes             15              0
## 3453                  No                No              0              4
## 3454                  No                No              3              0
## 3455                 Yes               Yes             15              0
## 3456                  No                No              3              0
## 3457                 Yes                No             19              5
## 3458                 Yes                No             12              0
## 3459                 Yes               Yes             11              0
## 3460                 Yes                No              5              0
## 3461                  No                No              7              5
## 3462                  No                No              5              0
## 3463                 Yes               Yes              0              6
## 3464                  No                No              5              0
## 3465                  No                No              0             14
## 3466                  No                No              2              8
## 3467                 Yes                No              5              6
## 3468                  No                No              0              8
## 3469                  No               Yes             60              4
## 3470                 Yes               Yes              7              5
## 3471                  No                No              5              0
## 3472                  No                No              0             10
## 3473                 Yes                No              7              0
## 3474                  No                No             12             21
## 3476                  No                No              8              0
## 3477                  No                No             10              0
## 3478                  No                No              5              0
## 3479                  No                No              4              0
## 3480                  No                No              3              0
## 3481                  No                No              3              0
## 3482                  No                No             11              6
## 3484                  No                No              1              0
## 3485                  No                No              2              0
## 3486                  No                No              0             14
## 3487                  No                No             21              0
## 3488                  No                No             15              0
## 3489                  No                No              7              0
## 3490                  No                No              3              0
## 3491                  No                No             10              0
## 3492                  No                No             20              0
## 3493                  No                No              0              8
## 3494                  No                No              1              0
## 3495                  No                No              1              4
## 3496                  No               Yes              0              8
## 3497                  No                No              1              0
## 3498                  No                No             14              0
## 3499                  No                No             12              0
## 3500                  No                No              5              0
## 3501                  No                No              2              0
## 3502                  No                No              0              7
## 3503                 Yes                No              5              5
## 3504                  No                No             23              0
## 3505                 Yes               Yes             10              0
## 3506                  No                No              6              7
## 3508                 Yes               Yes             10              0
## 3509                  No                No              7              0
## 3510                 Yes                No              4              0
## 3511                  No                No              8              0
## 3512                  No                No              0              8
## 3513                  No                No             14              0
## 3514                 Yes                No              3              0
## 3515                  No                No             10              3
## 3516                  No                No             15              2
## 3517                  No                No              3              3
## 3518                  No                No              5              9
## 3519                 Yes                No             16              0
## 3520                  No                No             20              0
## 3521                  No                No              1              0
## 3522                  No                No             10              0
## 3523                 Yes                No              9              4
## 3524                 Yes                No             11              9
## 3525                 Yes                No             12              0
## 3526                  No                No              0             11
## 3527                  No                No              2              0
## 3528                  No                No             15              0
## 3530                  No                No             42              0
## 3531                  No                No              5              1
## 3532                  No                No             14              0
## 3533                  No                No             10              3
## 3535                 Yes               Yes              9              0
## 3536                  No                No              4              0
## 3537                  No                No              0             14
## 3538                  No                No              0              8
## 3539                 Yes               Yes              5              0
## 3540                  No                No              9              0
## 3541                 Yes                No             11              4
## 3542                  No                No              0             14
## 3543                 Yes               Yes              0              7
## 3545                  No                No             27              0
## 3546                  No                No              3              0
## 3547                  No                No              9              4
## 3548                  No                No              7              0
## 3549                  No               Yes             14              0
## 3550                  No                No              1              3
## 3551                  No                No             18              0
## 3552                  No               Yes             15              0
## 3553                 Yes               Yes              6              0
## 3554                 Yes               Yes             13              5
## 3555                  No                No              0              7
## 3556                  No                No              4              0
## 3557                 Yes                No              9              4
## 3558                  No                No              0              7
## 3559                  No                No              5              0
## 3560                  No                No             15              3
## 3561                 Yes               Yes              8              4
## 3562                  No                No             10              1
## 3563                 Yes                No              4              0
## 3564                 Yes                No              6              3
## 3566                  No                No              4              2
## 3567                 Yes                No              7              5
## 3568                  No                No              5              5
## 3570                  No               Yes              0              8
## 3573                 Yes                No              7              0
## 3574                 Yes                No              6             12
## 3576                 Yes                No              7              5
## 3577                  No                No              4              0
## 3578                  No                No             56              0
## 3579                  No                No             17              0
## 3580                  No                No              4              0
## 3581                  No                No              1              7
## 3582                 Yes               Yes              6              0
## 3583                 Yes                No             11              0
## 3584                 Yes                No              7              0
## 3585                 Yes                No              9              0
## 3586                  No                No              3              0
## 3587                  No                No              0             15
## 3588                  No                No             11             10
## 3589                 Yes               Yes              8              3
## 3591                  No               Yes              7              4
## 3592                  No                No              6             10
## 3593                  No                No              4              0
## 3594                  No                No              0             14
## 3595                  No                No             10             10
## 3596                  No                No              0              7
## 3597                  No               Yes             13              6
## 3598                  No                No              0              5
## 3599                  No                No              5              0
## 3600                 Yes               Yes              4              3
## 3601                 Yes                No              0             10
## 3602                 Yes                No              8              0
## 3603                 Yes               Yes              7              3
## 3605                  No               Yes              0             13
## 3606                  No                No             20              0
## 3608                 Yes                No              6              4
## 3609                  No                No              4              0
## 3610                  No                No             12              0
## 3611                 Yes                No              7              0
## 3612                  No                No              4              0
## 3613                 Yes                No              3              0
## 3614                  No                No             12             10
## 3615                 Yes               Yes              7              0
## 3616                  No                No             12              0
## 3617                 Yes               Yes             11              0
## 3618                 Yes                No              6              0
## 3619                  No                No             10              0
## 3620                 Yes                No              0              2
## 3621                  No                No              4              0
## 3622                 Yes                No             21              0
## 3623                  No                No              1              0
## 3624                  No                No             53              2
## 3625                 Yes               Yes             10              0
## 3626                 Yes               Yes              7              7
## 3627                  No                No              0              8
## 3628                  No                No              7              0
## 3629                  No                No             25              5
## 3630                  No                No             21              0
## 3632                  No                No              3              0
## 3633                  No                No              4              0
## 3634                  No                No              5              0
## 3635                 Yes                No              8              6
## 3636                 Yes                No              9              0
## 3637                  No                No             11              4
## 3638                  No                No              2              0
## 3639                 Yes                No             10              0
## 3640                  No                No              0             14
## 3641                 Yes                No             14              0
## 3642                  No                No              4              0
## 3643                  No                No              2              0
## 3644                  No                No              2              0
## 3645                  No               Yes              4              0
## 3646                  No                No             30              0
## 3647                  No                No              0              7
## 3648                  No                No              0              6
## 3649                 Yes               Yes              6              0
## 3651                  No                No              5              5
## 3652                  No                No              7              0
## 3653                 Yes               Yes              0              7
## 3654                 Yes                No              7              0
## 3655                 Yes                No              4              3
## 3656                 Yes                No              8              0
## 3657                  No                No             92              0
## 3658                  No                No              5              0
## 3659                 Yes                No             14              0
## 3660                  No                No             25              0
## 3661                  No                No              0              6
## 3662                  No                No              0              6
## 3663                  No                No             13              0
## 3664                  No                No              2              0
## 3665                  No                No              5              2
## 3666                  No                No              0              4
## 3667                 Yes               Yes             10              0
## 3668                  No                No              6              0
## 3669                  No                No              6              4
## 3671                 Yes                No              5              0
## 3672                 Yes               Yes             10              0
## 3673                  No                No              2              0
## 3675                  No                No              1              0
## 3676                 Yes                No              9              7
## 3677                 Yes               Yes              7              0
## 3678                  No                No             30              0
## 3679                 Yes                No              6              7
## 3680                 Yes                No              9              0
## 3681                  No                No              5              1
## 3682                  No                No             12              0
## 3683                 Yes               Yes             12              0
## 3684                  No                No              2              0
## 3685                 Yes               Yes              5              4
## 3686                  No                No              7              0
## 3687                 Yes                No              5              0
## 3688                  No                No              3              0
## 3689                 Yes                No             10              0
## 3690                  No                No              5              7
## 3691                 Yes                No             14              4
## 3692                 Yes               Yes              0              7
## 3693                 Yes               Yes              7              0
## 3694                  No                No              6              0
## 3695                  No                No             10              0
## 3696                 Yes                No              7              0
## 3697                  No               Yes              0              7
## 3698                 Yes                No             12              0
## 3699                  No                No              7              0
## 3700                  No                No              2              0
## 3701                  No                No              5              5
## 3702                 Yes                No              7              0
## 3703                  No                No              7              7
## 3704                  No                No              1              0
## 3705                  No                No              0             14
## 3706                 Yes                No             19              6
## 3707                  No                No             25              6
## 3708                 Yes                No              7              4
## 3709                  No                No              9              0
## 3710                  No                No              0             15
## 3711                 Yes               Yes             13              4
## 3712                  No                No              3              5
## 3713                  No                No              0              3
## 3714                  No                No              4              4
## 3715                  No                No              5              0
## 3716                  No                No             13              0
## 3717                 Yes               Yes              6              8
## 3718                  No                No              7              0
## 3719                 Yes                No              7              0
## 3720                 Yes                No             10              0
## 3721                  No                No              3              0
## 3722                 Yes                No             13              3
## 3723                  No                No              0             17
## 3724                  No                No             45              0
## 3725                  No                No              7              3
## 3726                 Yes               Yes              5              0
## 3727                  No                No              0              6
## 3728                  No               Yes              0              6
## 3729                  No                No             12              0
## 3730                  No                No              0             14
## 3731                  No                No              9              0
## 3732                  No                No              9              8
## 3733                 Yes                No             12              0
## 3734                  No                No              2              0
## 3735                  No                No              7              0
## 3736                  No               Yes             11             10
## 3737                 Yes                No             11              3
## 3738                  No                No              0              3
## 3739                  No                No              0              7
## 3740                  No                No             11              0
## 3741                  No                No             28              0
## 3742                  No                No              9              0
## 3743                 Yes                No             13              0
## 3744                 Yes                No              6              0
## 3745                 Yes               Yes              9              0
## 3746                 Yes               Yes             15              0
## 3747                  No                No             11              5
## 3748                 Yes               Yes             12              0
## 3749                  No                No              6              0
## 3750                  No                No              1              0
## 3751                  No                No              0              9
## 3752                 Yes                No              9              7
## 3753                  No                No              5              0
## 3754                  No                No              0              7
## 3755                 Yes                No              6              0
## 3756                 Yes               Yes              7              0
## 3757                  No                No              3              0
## 3758                 Yes                No             12              0
## 3759                 Yes               Yes             10              7
## 3760                  No                No              3              0
## 3761                  No                No              6              0
## 3762                  No                No              0             10
## 3763                  No                No              7              0
## 3764                  No               Yes              4             10
## 3765                  No                No             42              0
## 3766                  No                No              3              0
## 3767                 Yes                No             17              4
## 3769                 Yes                No             12              5
## 3770                  No                No              9              0
## 3771                 Yes                No              1              0
## 3772                  No                No              1              0
## 3773                  No                No             18              0
## 3774                 Yes                No             10              4
## 3775                  No                No             14              0
## 3776                  No                No             10              0
## 3777                  No                No              2              0
## 3778                  No                No              7              0
## 3779                 Yes               Yes              7              7
## 3780                  No                No              0              7
## 3781                  No                No             34              4
## 3782                  No                No              2              0
## 3783                  No                No              3              0
## 3785                  No                No             10              0
## 3786                  No                No             10              5
## 3787                  No                No              4              0
## 3788                  No                No             10              0
## 3789                 Yes               Yes              7              0
## 3790                  No                No              0              7
## 3791                  No                No              4              4
## 3792                  No                No              9              0
## 3793                  No                No             20              0
## 3794                 Yes                No              7              0
## 3795                  No                No              2              0
## 3796                  No                No              4              0
## 3797                  No                No              2              0
## 3798                  No                No              4              0
## 3799                  No                No              3              0
## 3800                  No                No              0             28
## 3801                 Yes                No              9              0
## 3802                  No                No             10              0
## 3803                 Yes               Yes             12              0
## 3805                  No                No              2              0
## 3806                  No                No              4              0
## 3807                  No                No              7              0
## 3808                  No                No              0             15
## 3809                 Yes                No              5              0
## 3810                  No                No              7              0
## 3811                  No                No              7              0
## 3812                  No                No             32              3
## 3813                  No                No              3              5
## 3814                  No                No              7              3
## 3815                  No               Yes              0              7
## 3816                 Yes                No              7              0
## 3817                  No                No              8              0
## 3818                 Yes                No             14              0
## 3819                  No                No              6              0
## 3820                 Yes                No             20              3
## 3821                  No                No            150              2
## 3822                  No               Yes             31              4
## 3823                  No                No              7              0
## 3824                  No                No              2              0
## 3825                  No                No              3              0
## 3826                  No                No             14              5
## 3827                  No               Yes              0              7
## 3828                  No                No              0             22
## 3829                  No                No              5              0
## 3830                  No                No              6              0
## 3831                  No                No             15              0
## 3832                 Yes               Yes              0              7
## 3833                  No                No              0              4
## 3834                 Yes                No              8              0
## 3835                 Yes                No              7              0
## 3836                 Yes               Yes              0              7
## 3837                  No                No              4              0
## 3838                  No                No             40              8
## 3839                  No                No              1              0
## 3840                  No                No              0              7
## 3841                  No                No              4              0
## 3842                 Yes                No              6              0
## 3843                 Yes                No              6              7
## 3844                  No                No             15              0
## 3845                  No                No             37              2
## 3847                  No                No             10              0
## 3848                  No                No              7              7
## 3849                  No                No              7             14
## 3850                  No                No              3              0
## 3851                  No                No              3              0
## 3852                 Yes               Yes             11              4
## 3853                  No                No              0              2
## 3855                  No                No              0              7
## 3856                  No                No             16              0
## 3857                  No                No              2              0
## 3858                  No                No              0              8
## 3859                  No                No              0              5
## 3860                  No                No             10              6
## 3863                  No                No              8              0
## 3864                 Yes                No              9              0
## 3865                 Yes               Yes              7              2
## 3866                  No                No              2              0
## 3867                 Yes                No             11              0
## 3868                  No                No             60              0
## 3869                  No                No              4              0
## 3870                  No                No             25              0
## 3871                 Yes                No             10              0
## 3872                  No                No              1              0
## 3873                  No                No             25              0
## 3874                 Yes                No              8              8
## 3875                 Yes                No             15              7
## 3876                  No                No             12              1
## 3877                  No                No              7              3
## 3878                  No                No              4              0
## 3879                  No                No             64              0
## 3880                  No                No              2              2
## 3882                  No                No              5              0
## 3883                 Yes                No              8              0
## 3884                 Yes                No             12              0
## 3885                  No                No              1              3
## 3886                  No                No              8              0
## 3887                  No                No              4              0
## 3888                  No                No              7              7
## 3889                  No                No              5              0
## 3891                 Yes               Yes              6              0
## 3892                 Yes               Yes              6              4
## 3893                  No                No             25              4
## 3894                  No                No              0              5
## 3895                 Yes               Yes             10              0
## 3896                  No                No              9              4
## 3897                 Yes                No             12              0
## 3898                  No                No              4              0
## 3900                  No                No              2              0
## 3901                  No                No              0              7
## 3902                  No                No              2              0
## 3903                  No               Yes              6              2
## 3905                  No                No              6              6
## 3906                 Yes                No              7              3
## 3907                 Yes                No             11              3
## 3908                  No                No             16              0
## 3909                  No                No              2              0
## 3910                  No                No             29              0
## 3911                  No               Yes              2              0
## 3912                  No                No             10              0
## 3913                 Yes                No             14              1
## 3914                 Yes                No              3              5
## 3915                  No                No              7              0
## 3916                  No                No              2              0
## 3917                  No                No             21              6
## 3918                 Yes               Yes             10              0
## 3919                  No                No              3              0
## 3920                  No                No              2              0
## 3921                  No               Yes              0              6
## 3922                 Yes                No             15              0
## 3923                  No                No              0              7
## 3924                  No                No              5              2
## 3925                  No                No             10              0
## 3926                 Yes                No              0              7
## 3927                  No                No              2              0
## 3928                  No                No              4              0
## 3929                 Yes               Yes             17              0
## 3930                 Yes               Yes              8              0
## 3931                 Yes                No              7              7
## 3932                  No                No              5              0
## 3934                  No                No              3              0
## 3935                 Yes                No             17              0
## 3936                  No                No              7              0
## 3937                 Yes               Yes              4              4
## 3938                  No               Yes              6              8
## 3939                 Yes                No              7              0
## 3940                 Yes                No              5              0
## 3941                  No                No              2              0
## 3942                 Yes               Yes             15              0
## 3943                  No                No              4              0
## 3944                  No                No             10              5
## 3945                  No                No              2              0
## 3946                 Yes                No             10              0
## 3947                 Yes                No              6              0
## 3948                 Yes                No              4              0
## 3949                  No                No              2              0
## 3951                  No                No              3              0
## 3952                  No                No              0              2
## 3953                  No                No              1             10
## 3954                  No                No              2             10
## 3955                  No                No              0              7
## 3956                  No                No              6              0
## 3957                  No                No              0              6
## 3958                  No                No              4              3
## 3959                 Yes                No             15              0
## 3960                 Yes               Yes              9              4
## 3961                 Yes               Yes              6              0
## 3963                 Yes                No              6              0
## 3964                 Yes                No              5              2
## 3966                 Yes                No              6              3
## 3967                 Yes               Yes              5              0
## 3969                 Yes               Yes              6              0
## 3970                 Yes                No              6              0
## 3971                  No                No              4              0
## 3972                  No                No              6              0
## 3973                  No                No              3              0
## 3974                  No                No              4              0
## 3975                  No                No             16              0
## 3976                  No                No              9              0
## 3977                  No                No             20              0
## 3978                  No                No              0              7
## 3979                 Yes               Yes             11              0
## 3980                  No                No              0              7
## 3981                  No                No              8              4
## 3982                  No                No             14              0
## 3983                  No                No             13              0
## 3984                  No                No              0              7
## 3985                  No                No              2              0
## 3986                 Yes               Yes              0              7
## 3987                  No                No              0             20
## 3988                 Yes                No             14              7
## 3989                  No               Yes              0              7
## 3990                  No                No              3             27
## 3991                 Yes               Yes              9              0
## 3992                 Yes                No              6              0
## 3993                  No                No              2              0
## 3994                  No                No             12              0
## 3995                 Yes                No             16              0
## 3996                  No                No              2              0
## 3997                  No                No             14              0
## 3998                  No               Yes              0              7
## 3999                 Yes                No             12              0
## 4000                  No                No              0              7
## 4001                  No                No             13              6
## 4002                  No                No              2              0
## 4003                 Yes               Yes              3              0
## 4004                 Yes                No              5              0
## 4007                 Yes                No              8              0
## 4008                 Yes               Yes              8              0
## 4009                  No                No              1              0
## 4010                  No                No              5              0
## 4012                  No                No             13              0
## 4013                  No                No             35              0
## 4014                  No                No              1              6
## 4015                  No                No              5              0
## 4016                  No                No              0              9
## 4017                  No                No             13              0
## 4018                  No                No              7              2
## 4019                  No                No              2              0
## 4020                 Yes               Yes              6              3
## 4021                  No                No              1              0
## 4022                 Yes                No             10              5
## 4023                  No                No              7              0
## 4025                  No                No             15              0
## 4027                 Yes                No             11              1
## 4028                  No                No              2              7
## 4029                  No                No             10              0
## 4030                  No                No              3              0
## 4031                 Yes                No              7              0
## 4032                  No                No              3              0
## 4033                  No                No             11              0
## 4034                  No                No             38              4
## 4035                 Yes                No             12              0
## 4036                  No                No              4              0
## 4037                  No                No              4              0
## 4038                  No                No              8              0
## 4039                  No                No             16              0
## 4040                 Yes               Yes              4              0
## 4041                  No                No             57              3
## 4042                 Yes                No              6              0
## 4043                  No                No              2              0
## 4044                  No                No              0              7
## 4045                  No                No              4              0
## 4046                  No                No              4              0
## 4047                  No                No              5              0
## 4048                 Yes               Yes              4              0
## 4049                  No                No              1              0
## 4050                  No                No             20              0
## 4051                 Yes                No              0              7
## 4052                  No                No              9             11
## 4053                  No                No              3              0
## 4054                  No                No             11              0
## 4055                  No                No              5              0
## 4056                  No                No              4              0
## 4057                  No                No              8              0
## 4058                  No                No             25              5
## 4059                  No                No              2              0
## 4060                  No                No              5              0
## 4061                 Yes               Yes              8              7
## 4062                  No                No             37              3
## 4063                 Yes                No              6              0
## 4064                 Yes                No              3              0
## 4065                  No                No             22              0
## 4066                  No                No              6              0
## 4067                  No                No             20              0
## 4068                 Yes                No             14              6
## 4069                  No                No              9              0
## 4070                  No                No              8              0
## 4071                  No                No             15              0
## 4072                  No                No             11              0
## 4073                 Yes                No              7              7
## 4075                  No                No             14              5
## 4076                  No                No              0              7
## 4077                  No                No              2              0
## 4078                  No                No             10              0
## 4079                  No                No              2              0
## 4080                  No                No              0             15
## 4081                  No               Yes              0             10
## 4082                 Yes                No              0              5
## 4083                 Yes                No             18              0
## 4084                  No                No              7              0
## 4085                 Yes                No              5              0
## 4086                  No                No              2              0
## 4088                 Yes                No             14              4
## 4089                 Yes               Yes              7              0
## 4090                  No                No              4              0
## 4091                  No                No              3              6
## 4092                  No                No             10             32
## 4093                 Yes               Yes              9              0
## 4094                 Yes                No              4              3
## 4095                 Yes                No             12              0
## 4096                 Yes               Yes              0              7
## 4097                  No                No              6              0
## 4098                 Yes                No             13              6
## 4099                  No                No              7              5
## 4100                  No                No              8              0
## 4102                  No                No              2              0
## 4103                 Yes                No              5              7
## 4104                 Yes                No              0              7
## 4105                 Yes                No             12              0
## 4106                 Yes                No              4              0
## 4107                 Yes                No              9              0
## 4108                  No                No             33              0
## 4109                  No                No              0              7
## 4111                 Yes               Yes             11              0
## 4112                 Yes               Yes              0              7
## 4113                 Yes               Yes              7              0
## 4114                  No                No              3              2
## 4115                  No                No              3              0
## 4116                  No                No              5              9
## 4117                 Yes                No              7              5
## 4118                  No                No              7              0
## 4119                  No                No              1              0
## 4120                 Yes               Yes              5              0
## 4122                  No                No             20              0
## 4123                 Yes                No              5              4
## 4124                  No                No             12             12
## 4125                  No                No              1              0
## 4126                 Yes               Yes              5              0
## 4127                  No                No              3              0
## 4128                  No               Yes              0              7
## 4129                  No                No              4              0
## 4130                  No                No              1              9
## 4131                  No                No             21              0
## 4132                 Yes               Yes              9              0
## 4133                 Yes                No             10              0
## 4134                  No                No              1              0
## 4135                  No                No              7              7
## 4136                 Yes                No              4              3
## 4137                 Yes                No              6              0
## 4138                  No               Yes              0              4
## 4139                  No                No             12              0
## 4140                 Yes                No              6              4
## 4141                  No                No              4              0
## 4142                  No                No              7              0
## 4143                  No                No              7              0
## 4144                  No                No              4              0
## 4145                  No                No              2              0
## 4146                 Yes                No             13              0
## 4147                  No                No              5              0
## 4148                  No                No              4              0
## 4149                  No                No              1              0
## 4150                  No                No             13              0
## 4151                 Yes                No              7              0
## 4152                 Yes                No             12              0
## 4153                  No                No              1              0
## 4154                  No                No             40              4
## 4155                  No                No              4              3
## 4156                 Yes               Yes              0             17
## 4157                  No                No            142              0
## 4159                 Yes               Yes             10              0
## 4160                  No                No              5              0
## 4161                 Yes               Yes             11              0
## 4162                  No                No              2              0
## 4163                  No                No              2              0
## 4164                 Yes               Yes              7              0
## 4165                 Yes                No              6              0
## 4166                  No                No             15              0
## 4167                  No                No              5              0
## 4168                  No                No              6              0
## 4169                 Yes                No              7              3
## 4170                 Yes               Yes             18              0
## 4171                 Yes                No             11              4
## 4172                  No                No              3              0
## 4173                 Yes               Yes              4              0
## 4174                  No                No             20              0
## 4175                  No                No              6              0
## 4176                  No                No             12              0
## 4177                 Yes               Yes              7              0
## 4178                  No                No              3              0
## 4179                 Yes                No             14              0
## 4180                  No                No              7              5
## 4181                  No                No              2              2
## 4182                 Yes                No              4              0
## 4183                  No                No              3              0
## 4184                  No                No              0              7
## 4185                 Yes                No              5              0
## 4186                  No                No              0              4
## 4187                 Yes               Yes              0              5
## 4188                  No                No             93              5
## 4189                  No                No              1              1
## 4190                  No                No              7              0
## 4191                  No                No              2              0
## 4192                  No                No              5              0
## 4193                  No                No             17              0
## 4194                  No                No              4              4
## 4195                  No                No             12              0
## 4196                  No                No             42              0
## 4197                 Yes                No              5              0
## 4198                 Yes               Yes              5              4
## 4199                  No                No              5              0
## 4200                  No                No              6              0
## 4201                  No                No             14              0
## 4202                  No                No              6              6
## 4203                  No                No             21              0
## 4204                  No                No              7              4
## 4205                  No                No              0              7
## 4206                  No                No              0             14
## 4207                  No                No              8              3
## 4208                  No                No              9              0
## 4209                  No                No              5              0
## 4210                  No               Yes              0              8
## 4211                  No                No              1              0
## 4212                 Yes               Yes              0              7
## 4213                  No                No              8              0
## 4214                 Yes                No              5              7
## 4215                 Yes               Yes              0              7
## 4216                  No                No              0              7
## 4218                  No                No              9              0
## 4219                 Yes                No              6              6
## 4220                  No                No              2              0
## 4221                  No                No              8              0
## 4222                  No                No             21              2
## 4223                  No                No              1              0
## 4224                 Yes               Yes              8              0
## 4225                 Yes               Yes             11              0
## 4226                  No                No              3              0
## 4227                  No                No             13              0
## 4228                  No                No             25              0
## 4229                 Yes                No             17              0
## 4230                 Yes               Yes             14              0
## 4231                  No                No              0              7
## 4232                  No                No              3              9
## 4233                 Yes               Yes              4              3
## 4234                 Yes               Yes              8              4
## 4235                  No                No              4              6
## 4236                  No                No             12              0
## 4238                  No                No              5              2
## 4239                  No                No              5              7
## 4240                  No                No             13              0
## 4241                 Yes               Yes              7              0
## 4242                  No                No              1              7
## 4243                  No                No              0              7
## 4244                  No                No              3              0
## 4245                  No                No              2              0
## 4246                  No               Yes              5              3
## 4247                 Yes                No              5              0
## 4248                 Yes               Yes              6              3
## 4249                  No                No             10              0
## 4250                  No                No              7              7
## 4251                 Yes                No              6              4
## 4252                 Yes               Yes              7              0
## 4253                 Yes                No              5              0
## 4254                 Yes                No              6              0
## 4255                  No                No              8              0
## 4256                 Yes               Yes             10              0
## 4257                 Yes                No              4              0
## 4258                  No                No              7              0
## 4259                 Yes                No              4              0
## 4260                  No                No              5              0
## 4261                 Yes               Yes             13              0
## 4262                 Yes               Yes              7              5
## 4263                  No                No              7              0
## 4264                  No                No              0             15
## 4265                  No                No              0              7
## 4266                  No                No              7              0
## 4267                  No                No              7              0
## 4268                  No                No             45              0
## 4269                  No                No              1              0
## 4270                  No                No              0              8
## 4271                 Yes                No              6              0
## 4272                  No                No              7              0
## 4273                  No                No              1              0
## 4274                  No                No              4              0
## 4275                  No                No             30              0
## 4276                 Yes                No              0              7
## 4277                  No                No              0             11
## 4278                 Yes                No              5              0
## 4279                 Yes               Yes              8              0
## 4280                  No                No              4              0
## 4281                  No                No              0              7
## 4282                  No                No              7              7
## 4283                  No                No              6              0
## 4284                  No                No              5              3
## 4285                  No                No             55              1
## 4286                  No               Yes              3              7
## 4287                 Yes                No              8              5
## 4288                  No                No              0              7
## 4289                  No                No             10              0
## 4290                 Yes               Yes              7              0
## 4291                 Yes                No             10              0
## 4292                  No                No             19              0
## 4293                  No                No             10              0
## 4294                  No                No             15             15
## 4295                  No                No             13              0
## 4296                  No                No             35              0
## 4297                  No                No              6              5
## 4298                  No                No              0             14
## 4299                  No               Yes              0             11
## 4300                  No                No             12              0
## 4301                 Yes                No             11              5
## 4302                  No                No              2              0
## 4303                 Yes               Yes              0              5
## 4304                  No               Yes              0              7
## 4305                 Yes                No              4              4
## 4306                 Yes                No              7              8
## 4307                  No                No              0              7
## 4308                  No                No              4              0
## 4309                  No                No             10              0
## 4310                  No                No             13              8
## 4311                 Yes                No              0             13
## 4312                 Yes               Yes             10              3
## 4313                  No                No              7              0
## 4315                  No                No             56              0
## 4316                 Yes                No              0              6
## 4317                  No                No              2              0
## 4318                  No                No              0              7
## 4319                  No                No             14              0
## 4320                  No                No              5              0
## 4321                  No                No              3             13
## 4323                  No                No              8              3
## 4324                  No                No              3              0
## 4325                  No                No             14              0
## 4326                  No                No              2              0
## 4327                  No               Yes              0              7
## 4328                  No                No              0              4
## 4329                 Yes                No              4              0
## 4330                  No                No              9              0
## 4331                  No                No              0             42
## 4332                  No                No              3              0
## 4333                 Yes                No             11              3
## 4335                  No                No             14              5
## 4336                  No                No             30              0
## 4337                 Yes                No              7              0
## 4338                 Yes                No              7              0
## 4341                  No                No              0              7
## 4342                 Yes                No              8              5
## 4343                  No                No              2              0
## 4344                 Yes               Yes             13              0
## 4345                 Yes                No             13              0
## 4346                  No                No              1              3
## 4347                  No                No              1              0
## 4348                  No                No              6              0
## 4349                  No               Yes              7              7
## 4350                  No                No             10              0
## 4351                 Yes               Yes             11              0
## 4352                  No                No              5              5
## 4353                  No                No             19              0
## 4354                 Yes                No             14              4
## 4355                  No                No             15              0
## 4356                  No                No              7              0
## 4357                 Yes                No              5              0
## 4358                  No                No             15              0
## 4359                  No                No             15              0
## 4360                  No                No              2              0
## 4361                 Yes               Yes             11              8
## 4362                  No                No              7              0
## 4364                  No                No              8              0
## 4365                  No                No             30              0
## 4366                 Yes               Yes             13              0
## 4367                  No                No              0              7
## 4368                  No                No              2              0
## 4369                  No                No              5              0
## 4370                  No                No              7              0
## 4371                  No                No              5              0
## 4372                 Yes               Yes              6             12
## 4373                 Yes               Yes              7              5
## 4374                  No                No              0             15
## 4376                  No                No             12             40
## 4377                  No                No             11              0
## 4378                 Yes                No              7              0
## 4379                  No                No              3              0
## 4380                  No                No              3              0
## 4381                  No                No              6              0
## 4382                  No                No              7              5
## 4383                  No                No              6              0
## 4384                  No                No             22              0
## 4385                  No                No             14              7
## 4386                 Yes                No             13              5
## 4387                  No                No              4              0
## 4388                  No                No              0              2
## 4389                  No                No              1              0
## 4390                  No                No            180              0
## 4391                  No               Yes              1              7
## 4392                  No                No              0              7
## 4393                 Yes               Yes              8              0
## 4394                 Yes                No             14              4
## 4395                 Yes                No              9              0
## 4396                 Yes                No              9              0
## 4397                  No                No              0              7
## 4398                 Yes               Yes              7              0
## 4400                  No                No              8              0
## 4401                 Yes               Yes              4              0
## 4403                 Yes               Yes              8              0
## 4404                  No               Yes              0              7
## 4405                 Yes               Yes              5              0
## 4406                 Yes                No             14              0
## 4407                  No                No              0              8
## 4408                  No                No              0              7
## 4409                  No                No              7              0
## 4410                  No                No              1             12
## 4411                  No                No              4              0
## 4412                 Yes               Yes             10              3
## 4413                  No                No              3              0
## 4414                  No                No             10              0
## 4415                 Yes                No             12              0
## 4416                 Yes               Yes             13              0
## 4417                 Yes               Yes              7              0
## 4418                  No                No             15              0
## 4419                  No                No             15              0
## 4420                  No                No              6              0
## 4421                  No                No              3              0
## 4423                  No                No              7              0
## 4424                  No                No              4              0
## 4425                  No                No              7              8
## 4426                  No                No              3              0
## 4427                 Yes               Yes              7              7
## 4428                 Yes                No              5              3
## 4429                  No                No              1              0
## 4430                 Yes                No              6              0
## 4431                  No                No             26              0
## 4432                 Yes               Yes              8              6
## 4433                 Yes                No              7              0
## 4434                  No                No              5              0
## 4435                  No                No             15              0
## 4436                 Yes                No             14              0
## 4437                  No                No             17              0
## 4438                 Yes                No              0             14
## 4439                 Yes                No              5              4
## 4440                 Yes                No              1              3
## 4441                  No                No             10              0
## 4442                  No                No             14              4
## 4443                  No                No              7              3
## 4444                 Yes                No              6              7
## 4445                  No                No             90              0
## 4447                  No                No              5              5
## 4448                  No                No             12              0
## 4450                  No                No              2              0
## 4451                  No                No              0              7
## 4452                 Yes               Yes              5              0
## 4453                  No                No              1              0
## 4454                 Yes               Yes              0              7
## 4455                  No                No              7              0
## 4456                  No                No              2              0
## 4457                  No                No              3              3
## 4458                  No                No              0              4
## 4459                 Yes               Yes              7              0
## 4460                  No                No              7              0
## 4461                  No                No             22              0
## 4463                  No                No              4              7
## 4464                  No                No              9              6
## 4465                  No                No              3              0
## 4466                  No                No              0              7
## 4467                  No                No              6              0
## 4468                  No                No              0              7
## 4469                  No                No              4              0
## 4470                 Yes                No              9              0
## 4471                  No                No              6              0
## 4472                 Yes                No              7              0
## 4473                 Yes                No              8              3
## 4474                  No                No             15              0
## 4475                  No                No             14              2
## 4476                 Yes                No              7              7
## 4477                  No                No             12              0
## 4478                  No                No              3              0
## 4479                  No                No              0              7
## 4480                 Yes                No              9              0
## 4481                  No                No              3              0
## 4482                  No                No              0              8
## 4483                 Yes                No              9              2
## 4484                  No                No              8              0
## 4485                 Yes                No              3              0
## 4486                  No               Yes              8              0
## 4487                  No                No              2              0
## 4488                  No               Yes              7              7
## 4489                 Yes                No              7              0
## 4490                  No                No              3              0
## 4491                  No                No              4              0
## 4492                  No                No             14              0
## 4493                  No                No              9              0
## 4494                  No                No              9              0
## 4495                  No                No              5              0
## 4496                  No                No             19              6
## 4497                 Yes               Yes             12              0
## 4498                  No                No             19              2
## 4499                 Yes               Yes              7              0
## 4500                 Yes                No             10              0
## 4501                  No                No             15             10
## 4502                  No                No              0              9
## 4503                  No                No             22              7
## 4504                 Yes               Yes             10              0
## 4505                  No                No             10              0
## 4506                  No                No              8              3
## 4507                  No                No             19              2
## 4508                 Yes               Yes              7              0
## 4509                 Yes               Yes              3             10
## 4510                  No                No              2              0
## 4511                  No                No              2              0
## 4512                 Yes                No              2              2
## 4513                  No                No             23              7
## 4514                  No                No              7              0
## 4515                  No                No             40              0
## 4516                  No                No              2              0
## 4517                  No                No              3              0
## 4518                  No                No             30              0
## 4519                  No                No              3              0
## 4520                 Yes                No              8              0
## 4521                 Yes               Yes             10              0
## 4522                  No                No             30              0
## 4523                  No                No              1              0
## 4524                 Yes               Yes              8              8
## 4525                  No                No              0             10
## 4526                  No                No             15              4
## 4527                  No                No             18              0
## 4528                  No                No              2              0
## 4529                  No                No              4              0
## 4530                  No                No             11              0
## 4531                  No                No            120              7
## 4532                 Yes                No              9              0
## 4533                  No                No              5              0
## 4534                 Yes                No              7              0
## 4536                  No                No              0             10
## 4537                  No                No              2              0
## 4538                  No                No              0              3
## 4539                  No                No              7              5
## 4540                  No                No              7              6
## 4541                  No               Yes              0              5
## 4542                  No                No             12              4
## 4543                  No                No             30              0
## 4544                 Yes               Yes              0              7
## 4545                  No                No             20              6
## 4546                  No                No              2              0
## 4547                  No                No              6              6
## 4548                  No                No             10             10
## 4549                  No                No              0              7
## 4551                  No                No             26              0
## 4552                  No                No             29              0
## 4553                 Yes                No              3              4
## 4554                  No                No             60              0
## 4555                  No                No             11              5
## 4557                  No                No              9              3
## 4558                  No                No              7              0
## 4559                  No                No              3              0
## 4560                  No                No              1              0
## 4561                 Yes                No              6              6
## 4562                 Yes                No             19              0
## 4563                  No                No              8              0
## 4564                 Yes                No              6              3
## 4565                 Yes                No             13              0
## 4566                  No                No              0             11
## 4567                 Yes               Yes             12              0
## 4568                 Yes               Yes              9              0
## 4569                  No                No              9              0
## 4570                 Yes               Yes              0              7
## 4572                 Yes               Yes              2              2
## 4573                  No                No             11              4
## 4574                 Yes                No             11              0
## 4575                  No                No              3              0
## 4576                  No                No              4              0
## 4577                  No                No             10              7
## 4578                  No                No              1              0
## 4579                 Yes                No              4              0
## 4581                  No                No              3              0
## 4582                  No                No             11              0
## 4583                 Yes                No              9              0
## 4584                 Yes                No              6              6
## 4585                  No                No             24              0
## 4586                  No                No              7              0
## 4587                  No                No              7              0
## 4588                  No                No             18              3
## 4589                  No                No              0              5
## 4590                  No                No              3              0
## 4591                 Yes                No              6              6
## 4592                 Yes               Yes              6              0
## 4594                 Yes               Yes              5              2
## 4595                  No                No              0              7
## 4596                  No               Yes              3              3
## 4597                  No                No             13              0
## 4598                  No                No              2             43
## 4599                  No                No              5              0
## 4600                  No                No              4              0
## 4601                 Yes               Yes              7              0
## 4602                  No                No              3              0
## 4603                 Yes               Yes             12              0
## 4604                  No                No              3              0
## 4605                  No                No              7              0
## 4606                  No                No             15              0
## 4608                 Yes               Yes              4              5
## 4609                  No                No              9              0
## 4610                  No                No             45              0
## 4611                  No                No              6              6
## 4612                  No                No              5              0
## 4613                  No                No             45              0
## 4614                 Yes               Yes              7              0
## 4616                  No                No              0              7
## 4617                  No                No              0             16
## 4618                 Yes                No             12              0
## 4619                 Yes               Yes              7              7
## 4620                  No                No              6              0
## 4621                  No               Yes              0              9
## 4622                  No                No             60              0
## 4623                  No                No              1              0
## 4624                  No                No              0              5
## 4625                  No                No             56              0
## 4626                 Yes               Yes             11              0
## 4627                  No                No              2              0
## 4628                  No                No              4              0
## 4630                  No                No              4             10
## 4631                 Yes               Yes              4              0
## 4632                  No                No              3              0
## 4633                  No                No              2              0
## 4634                 Yes               Yes             10              0
## 4635                  No                No              0             22
## 4636                 Yes                No             12              3
## 4637                  No                No              8              6
## 4638                 Yes                No              0              7
## 4639                  No                No              8              5
## 4640                  No                No              0              7
## 4641                 Yes                No              0             14
## 4642                 Yes               Yes              6              0
## 4643                  No                No              1              4
## 4645                 Yes                No             10              3
## 4646                  No                No              3              0
## 4647                 Yes                No              5              0
## 4648                  No                No             11              0
## 4649                 Yes                No              3              0
## 4650                  No                No              0              2
## 4651                  No                No             22              4
## 4652                  No                No              0              6
## 4654                  No                No              4              0
## 4655                  No                No              0             60
## 4656                  No                No              7              0
## 4658                  No                No              1              0
## 4659                  No                No             15              4
## 4660                  No                No             25              0
## 4661                 Yes               Yes              5              7
## 4662                 Yes                No             11              0
## 4663                  No               Yes              0              7
## 4664                  No                No              3              0
## 4665                  No                No              0              7
## 4666                  No                No             27              3
## 4667                  No                No             10              0
## 4668                 Yes               Yes              4              3
## 4669                  No                No              6              8
## 4670                  No                No              2              0
## 4671                  No                No             10              5
## 4672                  No                No             30              3
## 4673                  No                No              2              0
## 4674                  No                No              5              0
## 4675                 Yes                No              4              0
## 4676                  No                No              7              0
## 4677                 Yes                No              5              0
## 4678                  No                No              7              0
## 4679                  No                No              5              0
## 4680                 Yes                No              5              0
## 4681                  No                No              4              0
## 4682                 Yes                No              6              0
## 4683                  No                No              8              0
## 4684                  No                No              6              0
## 4685                 Yes               Yes              6              0
## 4686                  No                No              3              0
## 4687                  No                No             60              0
## 4688                  No                No              2              0
## 4689                  No                No              8              5
## 4690                  No                No              1              0
## 4691                  No                No              0             10
## 4692                  No                No              8              0
## 4693                  No                No             12              0
## 4694                  No                No             20              5
## 4695                  No                No             28             14
## 4696                  No                No              3              0
## 4697                  No                No             62              3
## 4698                 Yes                No             12              0
## 4699                  No                No              2              0
## 4700                 Yes               Yes              4              0
## 4701                  No                No              2              0
## 4702                  No                No              7              0
## 4703                  No                No              0             20
## 4704                  No                No             70              4
## 4705                 Yes               Yes              7              4
## 4706                  No                No              4              0
## 4707                  No                No             14              0
## 4708                  No                No              5              0
## 4709                  No                No              0              3
## 4711                 Yes               Yes             29              0
## 4712                  No                No              3              0
## 4713                  No               Yes              0              4
## 4714                 Yes               Yes              3              0
## 4715                  No                No             13              5
## 4717                  No                No              6              4
## 4718                 Yes               Yes              5              0
## 4719                 Yes                No              7              7
## 4720                  No                No             30              0
## 4721                 Yes               Yes              9              0
## 4722                  No                No             17              0
## 4723                  No                No              1              9
## 4724                  No                No              7              0
## 4725                  No                No             40              0
## 4726                  No                No              0             13
## 4727                  No                No              9              0
## 4728                  No                No              4              0
## 4729                  No                No              3              0
## 4730                 Yes                No              0              7
## 4731                  No                No              2              0
## 4732                  No                No              4              0
## 4733                  No                No              3              0
## 4734                 Yes                No              7              3
## 4735                  No                No              4              0
## 4736                 Yes                No              7              3
## 4737                  No                No             10              2
## 4738                  No                No              4              0
## 4739                 Yes                No             10              0
## 4740                  No                No              2              0
## 4741                  No                No             13              0
## 4742                  No                No              2              0
## 4743                  No                No              5              0
## 4744                  No                No              1              3
## 4745                  No                No              4              0
## 4746                  No                No              2             11
## 4747                  No                No              0             35
## 4748                 Yes                No             10              0
## 4749                  No                No              9              0
## 4750                  No                No             24              3
## 4751                  No                No             23              0
## 4752                  No                No              7              3
## 4753                  No                No             10              5
## 4754                  No                No              7              0
## 4755                  No                No             28              0
## 4756                 Yes               Yes              9              3
## 4757                  No                No             30              0
## 4758                  No                No              4              0
## 4759                 Yes               Yes             11              0
## 4760                 Yes               Yes             17              5
## 4761                  No                No             21              0
## 4762                 Yes               Yes              6              0
## 4763                  No                No              5              0
## 4764                  No                No             10              6
## 4765                 Yes                No              7              0
## 4766                  No                No             42             10
## 4767                  No                No              2              0
## 4768                  No                No             45              8
## 4769                  No                No             16              0
## 4770                 Yes                No             14              6
## 4771                  No                No              6              2
## 4772                  No                No              3              0
## 4773                  No                No              0             10
## 4774                  No                No              0              3
## 4775                 Yes                No              4              0
## 4776                  No                No              4              0
## 4777                 Yes               Yes              7              0
## 4778                  No                No             29              0
## 4780                 Yes               Yes             12              4
## 4781                 Yes               Yes             15              0
## 4782                 Yes                No              9              0
## 4783                 Yes                No              3              0
## 4784                 Yes                No              5              0
## 4785                  No                No              4              0
## 4786                  No                No              3              0
## 4788                 Yes               Yes             12              0
## 4789                  No                No              4              0
## 4790                  No                No             21              0
## 4791                  No                No              1              7
## 4792                 Yes                No              8              3
## 4793                 Yes                No              3              0
## 4794                  No                No             26              0
## 4795                 Yes                No             15              0
## 4796                 Yes                No             17              0
## 4797                  No                No             10              4
## 4798                 Yes               Yes             10              7
## 4799                  No                No             16              0
## 4800                 Yes               Yes              6              6
## 4801                  No                No             15              0
## 4802                  No                No             14              0
## 4803                  No                No             11              6
## 4804                  No                No              7              0
## 4806                  No                No              1             12
## 4808                  No                No              0              7
## 4810                 Yes               Yes             12              0
## 4811                  No                No              3              0
## 4812                 Yes                No              5              7
## 4813                  No                No              4              5
## 4815                 Yes                No             17              0
## 4816                 Yes               Yes              7              6
## 4817                  No                No              2              0
## 4818                 Yes                No              5              7
## 4819                  No                No              4              0
## 4822                  No                No              6              0
## 4823                 Yes               Yes              4              4
## 4824                  No                No              5              0
## 4825                 Yes               Yes             11              0
## 4826                 Yes                No              9              0
## 4827                  No                No              0             14
## 4828                 Yes               Yes             16              0
## 4829                 Yes               Yes              0              8
## 4830                  No                No              4              0
## 4831                  No                No              6              0
## 4832                  No                No             12              0
## 4833                  No                No             13              0
## 4834                  No                No              3              0
## 4835                  No                No              0             12
## 4836                  No                No             14              0
## 4837                 Yes                No             10              0
## 4838                  No                No              2              0
## 4839                  No                No              2              0
## 4840                 Yes                No              4              4
## 4842                  No                No              5             10
## 4843                  No                No              7              0
## 4844                  No                No              0              2
## 4845                  No                No              3              0
## 4846                 Yes               Yes             14              0
## 4847                 Yes                No              4              0
## 4848                  No               Yes              0              7
## 4849                  No                No             10              0
## 4850                  No                No              0              4
## 4851                  No                No             14              0
## 4852                 Yes               Yes              0              7
## 4853                  No                No              5              0
## 4854                  No                No              7              5
## 4855                 Yes               Yes              4             11
## 4856                 Yes                No              8              0
## 4857                  No                No              2              0
## 4858                  No                No              0             13
## 4859                 Yes                No             11              0
## 4860                  No                No             14              0
## 4861                  No                No              0             19
## 4862                  No                No              0              6
## 4863                 Yes                No              7              0
## 4865                  No                No             11              0
## 4866                  No                No              5              0
## 4867                  No                No             19              0
## 4868                  No                No              0             11
## 4869                  No                No             14              0
## 4870                  No                No              0              5
## 4871                  No                No              7              5
## 4872                 Yes                No             10              0
## 4874                  No                No             10             12
## 4875                  No                No              0              2
## 4876                  No                No              0              6
## 4877                 Yes                No              8              0
## 4878                  No                No              2              0
## 4879                  No                No             11              0
## 4880                  No                No              7              0
## 4881                  No                No              0             35
## 4882                 Yes               Yes              5              0
## 4883                  No                No              0             14
## 4884                 Yes                No              8              0
## 4885                 Yes                No              6              0
## 4886                  No                No             14              7
## 4887                  No                No             42              0
## 4888                  No               Yes              4              4
## 4889                 Yes               Yes             10              0
## 4890                  No               Yes              0              7
## 4891                 Yes                No              4              0
## 4892                 Yes               Yes              9              3
## 4893                  No                No              1              0
## 4894                 Yes               Yes              0              7
## 4896                 Yes                No              4              0
## 4897                  No                No             56              0
## 4898                 Yes                No              7              0
## 4899                  No                No             10              0
## 4900                 Yes                No              6              0
## 4901                  No                No             14              2
## 4902                 Yes               Yes              5              0
## 4903                  No                No             13              0
## 4904                  No                No             22              0
## 4905                  No                No              3              0
## 4906                  No                No             14              0
## 4907                  No                No              6              0
## 4908                  No                No              5              0
## 4909                  No                No              4              0
## 4910                  No                No             14              0
## 4911                 Yes                No              1             14
## 4912                  No                No             18              0
## 4913                  No                No             37              5
## 4914                 Yes                No              9              5
## 4916                  No                No              7             12
## 4917                  No                No              4              0
## 4918                 Yes                No             13              0
## 4919                  No                No             14              0
## 4920                  No                No              7              0
## 4921                  No                No             15              0
## 4922                 Yes               Yes              0              7
## 4923                 Yes                No              9              0
## 4924                 Yes               Yes              5              0
## 4925                  No                No              7              0
## 4926                  No                No             11              5
## 4927                  No                No             15              0
## 4928                  No                No              4              0
## 4929                  No                No              2              0
## 4930                 Yes                No              9              0
## 4931                  No                No              0              7
## 4932                  No                No             16              0
## 4933                  No                No              6              6
## 4934                 Yes                No              3              0
## 4936                 Yes                No             11              0
## 4937                 Yes                No             11              0
## 4938                  No                No              0              6
## 4939                  No                No              2              0
## 4940                  No                No              2              0
## 4941                 Yes               Yes              7              0
## 4942                  No                No              8              8
## 4944                 Yes                No              9              0
## 4945                  No                No             10              0
## 4946                 Yes               Yes              0              7
## 4947                  No                No             14              6
## 4948                  No                No             20              0
## 4949                  No                No              2              0
## 4950                 Yes                No              8              0
## 4951                 Yes               Yes              7              0
## 4952                  No                No             17              6
## 4953                 Yes                No             11              3
## 4954                 Yes                No             10              0
## 4956                  No                No             13              0
## 4957                 Yes                No              0              5
## 4959                 Yes                No              6              0
## 4960                  No                No             21              0
## 4961                  No                No              4              0
## 4962                 Yes                No              5              4
## 4963                 Yes                No             17              2
## 4964                  No                No             12              0
## 4965                  No                No              2              0
## 4966                 Yes                No              7              0
## 4967                 Yes                No             14              0
## 4968                 Yes               Yes              4              3
## 4969                  No                No              6              0
## 4970                 Yes                No              6              0
## 4972                 Yes                No             12              3
## 4973                  No                No             10              0
## 4974                 Yes               Yes             10              0
## 4975                  No                No              1              0
## 4976                  No                No             14              6
## 4977                  No                No              4              0
## 4978                  No                No              2              0
## 4979                  No                No              5              0
## 4980                 Yes               Yes              8              0
## 4981                 Yes               Yes             13              5
## 4982                 Yes                No              4              0
## 4983                  No                No              5              0
## 4984                 Yes               Yes              5              0
## 4985                  No                No              3              6
## 4986                  No                No             10              0
## 4987                  No                No              1              0
## 4988                 Yes               Yes             11              0
## 4989                  No               Yes              7              0
## 4990                 Yes                No             10              0
## 4991                 Yes               Yes              7              7
## 4993                  No                No              6              0
## 4994                  No                No              3              0
## 4995                  No                No             11              0
## 4996                  No                No             12              0
## 4997                  No                No              0              8
## 4998                  No                No             33              4
## 4999                  No                No              6              0
## 5000                 Yes               Yes              5              0
## 5001                  No                No             15              0
## 5002                  No                No              1              0
## 5003                 Yes               Yes             11              0
## 5004                  No                No              1              0
## 5005                  No                No             60              4
## 5006                  No                No              7              0
## 5007                  No                No              7              3
## 5008                  No                No             14              2
## 5009                  No               Yes              0             14
## 5010                 Yes               Yes              6              0
## 5011                 Yes                No             20              0
## 5012                 Yes               Yes              7              4
## 5013                 Yes                No             12              4
## 5014                 Yes                No              6              0
## 5017                 Yes                No             14              0
## 5018                  No                No              5              0
## 5019                  No                No              0              7
## 5021                  No                No              0             10
## 5022                  No                No              3              0
## 5023                  No                No              5              0
## 5024                  No                No              0              4
## 5025                  No                No              5              0
## 5026                  No                No              1              0
## 5027                  No                No              0              5
## 5028                 Yes                No             12              0
## 5029                  No                No              3              6
## 5030                  No                No              3              0
## 5031                 Yes               Yes             12              0
## 5032                  No                No              2              1
## 5033                  No                No             20              0
## 5034                  No                No              5              0
## 5035                  No                No              3              0
## 5036                  No                No              1             11
## 5037                  No                No              7              7
## 5038                  No                No             14              0
## 5039                 Yes                No             11              0
## 5040                  No                No              0             13
## 5041                 Yes                No              6              0
## 5042                  No                No              0             10
## 5043                  No                No              0              8
## 5044                  No                No              0             11
## 5045                  No                No              0             14
## 5046                  No                No             19              2
## 5047                 Yes               Yes              0             10
## 5048                  No                No              3              0
## 5049                  No                No              5              0
## 5050                  No                No              0              7
## 5051                  No                No              0              7
## 5052                  No                No              3              0
## 5053                  No                No              3              0
## 5054                  No                No              0              8
## 5055                  No                No              0             56
## 5056                 Yes               Yes             10              0
## 5057                  No               Yes              0              7
## 5058                  No                No              0              6
## 5059                 Yes                No              8              6
## 5060                  No                No              0             90
## 5061                  No                No              0              7
## 5062                 Yes               Yes             11              0
## 5063                  No                No              0              4
## 5064                  No                No              7              0
## 5065                 Yes                No              6              8
## 5066                  No                No              1              0
## 5067                  No                No             35              0
## 5068                  No                No              1             26
## 5070                 Yes                No              6              0
## 5071                 Yes                No             12              0
## 5072                  No                No              1              0
## 5073                  No                No             13              0
## 5074                  No                No             12              0
## 5075                  No                No             28              2
## 5076                  No                No             20              0
## 5077                 Yes                No             15              0
## 5078                  No                No             10              5
## 5079                  No                No              2              0
## 5080                 Yes               Yes              0             14
## 5081                  No                No             36              2
## 5082                 Yes                No             13              0
## 5083                  No                No             90              0
## 5085                 Yes               Yes             15              0
## 5086                  No                No              0              8
## 5087                  No                No              2              2
## 5088                 Yes                No              6              0
## 5089                  No                No              3              0
## 5090                 Yes                No              7              0
## 5091                  No                No              5              0
## 5092                 Yes               Yes              6              0
## 5093                  No                No              3              0
## 5094                  No                No              4              0
## 5095                 Yes                No              0              7
## 5096                  No                No              6              0
## 5097                  No                No              7              0
## 5098                 Yes                No              3              4
## 5099                 Yes                No             14              0
## 5100                 Yes               Yes              2              7
## 5101                  No                No              9              0
##      first_trip_tz total
## 1              Yes     1
## 2              Yes     2
## 3              Yes     2
## 4               No     1
## 5               No     1
## 6               No     1
## 7              Yes     3
## 8               No     1
## 9              Yes     2
## 10              No     1
## 11              No     6
## 12              No     1
## 13             Yes     2
## 14              No     2
## 16             Yes     1
## 17             Yes     2
## 18              No     1
## 19              No     2
## 20             Yes     2
## 21              No     1
## 22              No     1
## 23             Yes     1
## 24              No     3
## 25             Yes     1
## 26             Yes     1
## 27             Yes     2
## 28              No     1
## 29             Yes     1
## 30              No     1
## 31              No     1
## 32             Yes     2
## 33             Yes     2
## 34              No     2
## 35             Yes     2
## 36              No     1
## 37             Yes     1
## 38             Yes     3
## 39              No     1
## 40             Yes     6
## 41             Yes     2
## 43             Yes     2
## 44             Yes     4
## 45             Yes     3
## 46             Yes     2
## 47             Yes     2
## 48              No     1
## 49              No     1
## 50              No     1
## 51             Yes     2
## 52             Yes     3
## 53              No     4
## 54              No     1
## 55             Yes     2
## 56             Yes     2
## 57             Yes     4
## 58              No     1
## 59             Yes     2
## 60             Yes     4
## 61             Yes     2
## 62              No     1
## 63             Yes     2
## 64             Yes     1
## 65             Yes     1
## 66              No     1
## 67              No     1
## 68             Yes     3
## 69             Yes     1
## 70             Yes     2
## 71              No     5
## 72              No     1
## 74              No     1
## 75             Yes     2
## 76              No     1
## 77             Yes     1
## 78             Yes     1
## 79             Yes     1
## 80             Yes     1
## 81             Yes     1
## 82             Yes     1
## 83              No     1
## 84              No     1
## 85             Yes     2
## 86             Yes     2
## 87             Yes     2
## 88             Yes     5
## 89              No     1
## 90             Yes     2
## 92             Yes     1
## 93             Yes     1
## 94             Yes     2
## 96             Yes     2
## 97             Yes     3
## 98             Yes     1
## 99             Yes     1
## 100             No     2
## 101            Yes     2
## 102            Yes     2
## 103            Yes     1
## 104             No     3
## 105            Yes     2
## 106            Yes     2
## 107            Yes     2
## 109            Yes     2
## 110            Yes     2
## 112            Yes     1
## 113            Yes     1
## 114            Yes     2
## 115            Yes     2
## 116            Yes     2
## 117            Yes     3
## 118            Yes     1
## 119            Yes     1
## 120             No     1
## 121            Yes     1
## 122            Yes     2
## 123            Yes     2
## 124            Yes     2
## 125            Yes     2
## 126             No     2
## 127            Yes     3
## 128            Yes     4
## 129            Yes     2
## 130            Yes     6
## 131            Yes     3
## 132            Yes     2
## 133            Yes     2
## 134            Yes     1
## 135            Yes     2
## 136            Yes     2
## 137            Yes     2
## 138            Yes     2
## 139            Yes     2
## 140            Yes     1
## 141             No     1
## 142            Yes     2
## 143             No     2
## 144            Yes     2
## 145            Yes     2
## 146            Yes     5
## 147            Yes     2
## 148            Yes     2
## 149            Yes     1
## 150             No     1
## 151            Yes     2
## 152             No     1
## 153            Yes     2
## 155             No     2
## 156            Yes     3
## 157            Yes     1
## 159            Yes     2
## 160            Yes     3
## 161             No     1
## 162            Yes     4
## 163            Yes     3
## 164            Yes     1
## 165            Yes     1
## 166            Yes     2
## 167             No     1
## 168             No     2
## 169            Yes     1
## 170            Yes     2
## 171            Yes     1
## 172            Yes     2
## 173             No     2
## 174             No     1
## 175             No     1
## 176             No     2
## 177             No     2
## 178            Yes     2
## 179            Yes     2
## 180            Yes     3
## 181            Yes     1
## 182            Yes     1
## 183            Yes     2
## 185            Yes     2
## 186            Yes     4
## 187             No     1
## 188             No     2
## 189             No     1
## 190            Yes     2
## 191            Yes     2
## 192             No     1
## 193             No     2
## 194             No     5
## 195            Yes     3
## 196            Yes     1
## 197            Yes     2
## 198            Yes     1
## 199             No     1
## 201            Yes     2
## 202             No     1
## 203             No     4
## 204            Yes     3
## 205            Yes     2
## 206            Yes     4
## 207            Yes     9
## 208            Yes     2
## 209            Yes     1
## 210            Yes     1
## 211             No     1
## 212            Yes     2
## 215            Yes     2
## 216             No     1
## 217            Yes     3
## 218            Yes     2
## 219             No     2
## 220             No     2
## 221            Yes     1
## 222            Yes     1
## 223            Yes     4
## 224            Yes     2
## 225            Yes     1
## 226            Yes     1
## 227            Yes     1
## 228            Yes     1
## 229            Yes     1
## 231            Yes     1
## 232             No     2
## 233            Yes     1
## 234            Yes     1
## 235            Yes     1
## 236            Yes     2
## 238            Yes     2
## 239            Yes     1
## 240            Yes     2
## 242            Yes     2
## 244            Yes     3
## 245             No     4
## 246             No     4
## 247             No     1
## 248            Yes    11
## 249            Yes     3
## 250            Yes     3
## 251            Yes     5
## 252            Yes     2
## 253            Yes     1
## 254            Yes     2
## 255            Yes     1
## 256            Yes     2
## 257            Yes     2
## 258            Yes     1
## 259             No     2
## 260            Yes     1
## 262            Yes     2
## 263            Yes     1
## 264            Yes     1
## 265            Yes     2
## 266             No     1
## 267             No     1
## 269            Yes     1
## 270            Yes     1
## 271            Yes     1
## 272            Yes     4
## 273             No     1
## 274             No     1
## 275             No     1
## 277            Yes     2
## 278            Yes     1
## 279            Yes     1
## 280            Yes     2
## 282             No     1
## 283            Yes     2
## 284             No     1
## 286            Yes     1
## 287             No     1
## 288             No     2
## 289            Yes     1
## 290            Yes     2
## 291            Yes     1
## 292             No     3
## 293             No     1
## 294            Yes     2
## 295            Yes     1
## 296             No     2
## 297             No     1
## 298            Yes     2
## 299             No     2
## 300            Yes     2
## 301             No     2
## 302             No     1
## 303            Yes     3
## 304            Yes     2
## 305            Yes     2
## 306            Yes     2
## 307             No     1
## 309             No     1
## 310            Yes     2
## 311            Yes     1
## 312             No     1
## 313            Yes     1
## 314             No     1
## 315            Yes     1
## 316            Yes     2
## 317            Yes     6
## 318            Yes     4
## 319            Yes     2
## 321            Yes     1
## 322             No     1
## 323            Yes     4
## 324             No     3
## 325             No     1
## 326             No     2
## 327            Yes     1
## 328            Yes     2
## 330            Yes     2
## 332             No     1
## 333            Yes     1
## 334            Yes     2
## 335            Yes     2
## 336             No     2
## 337            Yes     5
## 338            Yes     2
## 339             No     1
## 340             No     1
## 341            Yes     1
## 342            Yes     2
## 343            Yes     2
## 344             No     1
## 345            Yes     2
## 346             No     1
## 347            Yes     2
## 348             No     1
## 349             No     1
## 350            Yes     4
## 351            Yes     1
## 352            Yes     2
## 353             No     1
## 354            Yes     2
## 355             No     1
## 356            Yes     4
## 357            Yes     1
## 358             No     3
## 359             No     1
## 360            Yes     2
## 361            Yes     3
## 362            Yes     1
## 363            Yes     1
## 364             No     1
## 365            Yes     2
## 366             No     1
## 367             No     2
## 368            Yes     1
## 369            Yes     1
## 370            Yes     2
## 371            Yes     2
## 372            Yes     1
## 373            Yes     1
## 374            Yes     1
## 375            Yes     2
## 376            Yes     2
## 377            Yes     2
## 378            Yes     1
## 379            Yes     1
## 380             No     1
## 381            Yes     2
## 382            Yes     1
## 383            Yes     1
## 384            Yes     1
## 385             No     1
## 386             No     3
## 388            Yes     1
## 390            Yes     2
## 391            Yes     1
## 392            Yes     2
## 393            Yes     1
## 394            Yes     3
## 395            Yes     1
## 396            Yes     2
## 397            Yes     2
## 398            Yes     2
## 399            Yes     1
## 400            Yes     1
## 401            Yes     1
## 402            Yes     2
## 403            Yes     2
## 404            Yes    16
## 405             No     1
## 406            Yes     2
## 407             No     2
## 408             No     4
## 409            Yes     2
## 410            Yes     1
## 412            Yes     1
## 413             No     1
## 414            Yes     3
## 415            Yes     1
## 417            Yes     2
## 419             No     2
## 420            Yes     2
## 421             No     1
## 422             No     4
## 423             No     1
## 424            Yes     3
## 425            Yes     2
## 426            Yes     2
## 427            Yes     2
## 428            Yes     2
## 429            Yes     1
## 430            Yes     4
## 431            Yes     1
## 432            Yes     3
## 433            Yes     2
## 434            Yes     6
## 435             No     1
## 436            Yes     2
## 437            Yes     1
## 438             No     4
## 439             No     3
## 440            Yes     1
## 441            Yes     2
## 442             No     1
## 443            Yes     4
## 444            Yes     1
## 446            Yes     1
## 448            Yes     2
## 449            Yes     3
## 450             No     2
## 451             No     2
## 452            Yes     1
## 453             No     2
## 454             No     2
## 456             No     1
## 457             No     1
## 458             No     1
## 459            Yes     1
## 460             No     1
## 461            Yes     8
## 462            Yes     1
## 463            Yes     2
## 464             No     1
## 465            Yes     4
## 466            Yes     4
## 467            Yes     2
## 468            Yes     3
## 469            Yes     1
## 470             No     1
## 471            Yes     2
## 472            Yes     2
## 473            Yes     2
## 474            Yes     2
## 475            Yes     2
## 476            Yes     1
## 477            Yes     3
## 478             No     1
## 479            Yes     2
## 480            Yes     8
## 481            Yes     2
## 482             No     2
## 483            Yes     2
## 484            Yes     3
## 485            Yes     1
## 486             No     2
## 487            Yes     2
## 488            Yes     4
## 489            Yes     2
## 490            Yes     1
## 491            Yes     3
## 492            Yes     5
## 493            Yes     2
## 494            Yes     2
## 495            Yes     1
## 496            Yes     1
## 497             No     1
## 498            Yes     1
## 499            Yes     2
## 500            Yes     1
## 501            Yes     1
## 502             No     2
## 503            Yes     3
## 504            Yes     1
## 505            Yes     4
## 506             No     1
## 507             No     1
## 508             No     1
## 510            Yes     2
## 511            Yes     1
## 512            Yes     1
## 513            Yes     1
## 514             No     2
## 515            Yes     1
## 516            Yes     1
## 517            Yes     6
## 518            Yes     2
## 519             No     1
## 520             No     1
## 521            Yes    10
## 522             No     3
## 523             No     1
## 524             No     1
## 525            Yes     2
## 526            Yes     2
## 527             No     4
## 528            Yes     4
## 529            Yes     1
## 530             No     1
## 531            Yes     1
## 532            Yes     2
## 533             No     1
## 534            Yes     2
## 535            Yes     2
## 536            Yes     2
## 537            Yes     1
## 538             No     1
## 539             No     2
## 540            Yes     1
## 541             No     2
## 542            Yes     2
## 544            Yes     3
## 545             No     1
## 546             No     1
## 547            Yes     2
## 548            Yes     2
## 549            Yes     2
## 550             No     1
## 551            Yes     6
## 552             No     1
## 553            Yes     1
## 554             No     3
## 555             No     1
## 556             No     1
## 557            Yes     2
## 558            Yes     1
## 559             No     4
## 560            Yes     1
## 561             No     1
## 562             No     1
## 563            Yes     2
## 564            Yes     2
## 565            Yes     1
## 566            Yes     2
## 567            Yes     2
## 568            Yes     4
## 570            Yes     2
## 571            Yes     2
## 572            Yes     1
## 573            Yes     1
## 574            Yes     4
## 575            Yes     2
## 576             No     1
## 577            Yes     2
## 578             No     5
## 579            Yes     2
## 580             No     2
## 581            Yes     2
## 582            Yes     1
## 583            Yes     2
## 584            Yes     5
## 585            Yes     2
## 586             No     1
## 587             No     2
## 588             No     3
## 589            Yes     4
## 590             No     1
## 591            Yes     4
## 592            Yes     1
## 593            Yes     7
## 594            Yes     1
## 595            Yes     2
## 596            Yes     2
## 597            Yes     2
## 598             No     3
## 600            Yes     2
## 601            Yes     1
## 602            Yes     2
## 603            Yes     1
## 604            Yes     3
## 605            Yes     1
## 606            Yes     1
## 607            Yes     5
## 608            Yes     2
## 609             No     1
## 610            Yes     2
## 612            Yes     2
## 613            Yes     6
## 614            Yes     4
## 615            Yes     7
## 616             No     1
## 617            Yes     1
## 618            Yes     1
## 620             No     1
## 622            Yes     2
## 623            Yes     2
## 624             No     2
## 625            Yes     1
## 626            Yes     1
## 627            Yes     1
## 628            Yes     1
## 629            Yes    12
## 630             No     1
## 631            Yes     2
## 632            Yes     2
## 633             No     1
## 634            Yes     2
## 635            Yes     1
## 636             No     1
## 637             No     1
## 638            Yes     2
## 639            Yes     2
## 640             No     1
## 641            Yes     1
## 642            Yes     2
## 643             No     3
## 644             No     2
## 645             No     1
## 646            Yes     1
## 647            Yes     1
## 648             No     1
## 649            Yes     2
## 650            Yes     2
## 651             No     2
## 652            Yes     1
## 653            Yes     1
## 655            Yes     3
## 657            Yes     2
## 658            Yes     1
## 659             No     1
## 660            Yes     1
## 661            Yes     1
## 662            Yes     1
## 663            Yes     3
## 664            Yes     1
## 665            Yes     2
## 666            Yes     2
## 667            Yes     1
## 668            Yes     2
## 669            Yes     5
## 670             No     1
## 671            Yes     1
## 672            Yes     2
## 673             No     1
## 674            Yes     4
## 675            Yes     1
## 676            Yes     5
## 677             No     4
## 679            Yes     3
## 680            Yes     3
## 681            Yes     6
## 682            Yes    30
## 683            Yes     1
## 684            Yes     2
## 685            Yes     2
## 687            Yes     2
## 688            Yes     2
## 689            Yes     1
## 690            Yes     2
## 691            Yes     1
## 692             No     4
## 693             No     1
## 694             No     1
## 696             No     1
## 698            Yes     2
## 699            Yes     2
## 700            Yes     2
## 701             No     1
## 702            Yes    14
## 703            Yes     1
## 704            Yes     1
## 706            Yes     1
## 707            Yes     6
## 708            Yes     2
## 709             No     1
## 710            Yes     2
## 711            Yes     1
## 712            Yes     4
## 713            Yes     2
## 714            Yes     1
## 715             No     2
## 716            Yes     1
## 718            Yes     7
## 719            Yes     2
## 720            Yes     1
## 721             No     1
## 722             No     1
## 723            Yes     9
## 724            Yes     1
## 725            Yes     2
## 727            Yes     1
## 728            Yes     2
## 729             No     1
## 730            Yes     2
## 731            Yes     1
## 732             No     1
## 733            Yes     2
## 734            Yes     4
## 735            Yes     3
## 736            Yes     2
## 737            Yes     2
## 738             No     1
## 739            Yes     2
## 740            Yes     2
## 741            Yes     1
## 742            Yes     2
## 743            Yes     6
## 744             No     3
## 745             No     2
## 746            Yes     1
## 747            Yes     3
## 748            Yes     2
## 749            Yes     5
## 750             No     2
## 752             No     1
## 753            Yes     1
## 754            Yes     1
## 755            Yes     1
## 756             No     1
## 758             No     2
## 759            Yes     1
## 761            Yes     1
## 762            Yes     2
## 763            Yes     1
## 764             No     1
## 765             No     1
## 766            Yes    10
## 767            Yes     4
## 769            Yes     1
## 770            Yes     1
## 771             No     3
## 772             No     5
## 773            Yes     1
## 774            Yes     1
## 775            Yes     4
## 776            Yes     2
## 777            Yes     1
## 778            Yes     1
## 779            Yes     2
## 780            Yes     1
## 781            Yes     1
## 782            Yes     4
## 783            Yes     2
## 784             No     1
## 785            Yes     1
## 786            Yes     3
## 787            Yes     1
## 788            Yes     2
## 789            Yes     1
## 790            Yes     2
## 791            Yes     2
## 792            Yes     2
## 793             No     1
## 795            Yes     2
## 796            Yes     2
## 797            Yes     2
## 798             No     2
## 799            Yes     1
## 800            Yes     4
## 801            Yes     1
## 802            Yes     2
## 803             No     1
## 804            Yes     1
## 805            Yes     3
## 806            Yes     1
## 808            Yes     2
## 809            Yes     4
## 810            Yes     1
## 811             No     1
## 812             No     4
## 813             No     1
## 814             No     1
## 815            Yes     3
## 816             No     1
## 817             No     1
## 818            Yes     3
## 820             No     1
## 821            Yes     4
## 822            Yes     1
## 823            Yes     2
## 824             No     1
## 825            Yes     6
## 826            Yes     3
## 827             No     2
## 828             No     1
## 829            Yes     5
## 830            Yes     2
## 831            Yes     2
## 832            Yes     1
## 833            Yes     2
## 834            Yes     2
## 835            Yes     1
## 836             No     4
## 837            Yes     2
## 838             No     1
## 839             No     1
## 840            Yes     2
## 841            Yes     1
## 842            Yes     1
## 843            Yes     3
## 844            Yes     4
## 845            Yes     3
## 846            Yes     2
## 847             No     3
## 848             No     1
## 849            Yes     2
## 851            Yes     3
## 852             No     2
## 853            Yes     5
## 854            Yes     2
## 855            Yes     2
## 856            Yes     2
## 857             No     1
## 858            Yes     2
## 859             No     1
## 860             No     1
## 861            Yes     2
## 862            Yes     2
## 863            Yes     1
## 864            Yes     2
## 865            Yes     2
## 866            Yes     2
## 867            Yes     1
## 869            Yes     1
## 870            Yes     2
## 871            Yes     2
## 872            Yes     1
## 873             No     1
## 874            Yes     4
## 875            Yes     3
## 876            Yes     2
## 877             No     1
## 878             No     4
## 880             No     1
## 881             No     2
## 882            Yes     2
## 883             No     1
## 884            Yes     3
## 885             No     1
## 886             No     1
## 887             No     1
## 888             No     5
## 889            Yes     2
## 891            Yes     4
## 892             No     1
## 893            Yes     1
## 894             No     1
## 895            Yes     1
## 896            Yes     3
## 898            Yes     3
## 900             No     1
## 901             No     1
## 904            Yes     2
## 905             No     1
## 906            Yes     8
## 907             No     2
## 908            Yes     2
## 909            Yes     1
## 910             No     1
## 911            Yes     2
## 913            Yes     1
## 914            Yes     1
## 915            Yes     1
## 916            Yes     1
## 917            Yes     1
## 918            Yes     2
## 919            Yes     2
## 920            Yes     2
## 921            Yes     1
## 922             No     4
## 923             No     4
## 924             No     8
## 925             No     1
## 926             No     1
## 927             No    25
## 928             No     1
## 929            Yes     2
## 930            Yes     2
## 931            Yes     2
## 932            Yes     3
## 933            Yes     2
## 934            Yes     2
## 935             No     1
## 937            Yes     2
## 938            Yes     1
## 939            Yes     2
## 940            Yes     6
## 941            Yes     1
## 942             No     1
## 943            Yes     2
## 944            Yes     2
## 945            Yes     2
## 946             No     4
## 947            Yes     3
## 948             No     2
## 949             No     1
## 950            Yes     2
## 951            Yes     2
## 952             No     1
## 953            Yes     2
## 955             No     2
## 956            Yes     4
## 957            Yes     2
## 958            Yes     2
## 959            Yes     1
## 960            Yes     2
## 961             No     1
## 962             No     1
## 963            Yes     2
## 964            Yes     2
## 966            Yes     2
## 967             No     2
## 968             No     1
## 971            Yes     1
## 972            Yes     4
## 973            Yes     3
## 975            Yes     1
## 976            Yes     1
## 977             No     1
## 978             No     1
## 979            Yes     1
## 980             No     3
## 981            Yes     1
## 982            Yes     2
## 983            Yes     2
## 984            Yes     1
## 985             No     1
## 986            Yes     1
## 987            Yes     2
## 988            Yes     2
## 989             No     1
## 991            Yes     1
## 992             No     1
## 993            Yes     1
## 994             No     1
## 995            Yes     2
## 996            Yes     1
## 997            Yes     1
## 998            Yes     2
## 999            Yes     2
## 1000           Yes     2
## 1001            No     1
## 1002            No     1
## 1003            No     2
## 1005           Yes     2
## 1006           Yes     2
## 1007           Yes     2
## 1008           Yes     1
## 1009           Yes     1
## 1010           Yes     2
## 1011           Yes     2
## 1012           Yes     1
## 1013           Yes     1
## 1014           Yes     2
## 1015            No     1
## 1016           Yes     1
## 1017           Yes     4
## 1018           Yes     1
## 1019            No     1
## 1020            No     1
## 1021            No     1
## 1022           Yes     2
## 1023           Yes     8
## 1024           Yes     2
## 1025           Yes     1
## 1026           Yes     1
## 1027           Yes     1
## 1028            No     1
## 1029           Yes     3
## 1030           Yes     6
## 1031           Yes     4
## 1032           Yes     2
## 1033           Yes     2
## 1034           Yes     2
## 1035           Yes     2
## 1036           Yes     9
## 1037            No     1
## 1038           Yes     2
## 1039           Yes     2
## 1041            No     1
## 1042            No     2
## 1043            No     1
## 1044            No     1
## 1045            No     1
## 1046            No     1
## 1047           Yes     1
## 1048           Yes     1
## 1049           Yes     2
## 1050           Yes     1
## 1051           Yes     2
## 1052           Yes     2
## 1053           Yes     1
## 1055           Yes     2
## 1056           Yes     2
## 1057            No     3
## 1058            No     2
## 1059           Yes     1
## 1060           Yes     1
## 1061           Yes     4
## 1062           Yes     1
## 1063           Yes     2
## 1065           Yes     2
## 1066            No     1
## 1067            No     2
## 1068           Yes     2
## 1069           Yes     2
## 1070            No     3
## 1071           Yes     3
## 1072            No     1
## 1073            No     1
## 1074            No     2
## 1075           Yes     2
## 1077           Yes     1
## 1078           Yes     1
## 1079            No     2
## 1080           Yes     2
## 1081            No     2
## 1082            No     1
## 1083            No     2
## 1084           Yes     1
## 1086            No     1
## 1087            No     1
## 1088            No     1
## 1089           Yes     2
## 1090           Yes     7
## 1091           Yes     2
## 1092           Yes     1
## 1093           Yes     2
## 1094           Yes    18
## 1095           Yes     2
## 1096            No     1
## 1097            No     1
## 1098           Yes     2
## 1099           Yes     1
## 1100           Yes     1
## 1101           Yes     2
## 1102           Yes     1
## 1103           Yes     1
## 1104            No     3
## 1105           Yes     4
## 1106            No     1
## 1107            No     3
## 1108           Yes     2
## 1109           Yes     8
## 1110           Yes     1
## 1111           Yes     3
## 1112           Yes     1
## 1113            No     1
## 1114            No     2
## 1116           Yes     3
## 1118           Yes     2
## 1119           Yes     1
## 1120            No     3
## 1123           Yes     2
## 1124            No     1
## 1125           Yes     1
## 1126            No     2
## 1127            No     2
## 1128           Yes     2
## 1129           Yes     2
## 1130           Yes     1
## 1131           Yes     2
## 1132           Yes     2
## 1133            No     1
## 1135            No     1
## 1136           Yes     1
## 1137           Yes     2
## 1138           Yes     2
## 1139           Yes     2
## 1140           Yes     2
## 1141           Yes     1
## 1142            No     1
## 1143            No     6
## 1144           Yes     2
## 1145            No     1
## 1146            No     1
## 1147           Yes     2
## 1148           Yes     1
## 1149           Yes     1
## 1150           Yes     5
## 1151           Yes     1
## 1152           Yes     1
## 1153           Yes     1
## 1154           Yes     3
## 1155           Yes     1
## 1156            No     1
## 1157           Yes     1
## 1158           Yes     1
## 1159           Yes     1
## 1160            No     2
## 1161            No     1
## 1163            No     1
## 1164           Yes     1
## 1165            No     1
## 1166           Yes     1
## 1167           Yes     2
## 1168           Yes     2
## 1169            No     4
## 1170           Yes     1
## 1172            No     1
## 1173           Yes     1
## 1174           Yes     1
## 1175           Yes     2
## 1176           Yes     3
## 1177            No     2
## 1178           Yes     2
## 1179           Yes     3
## 1180           Yes     1
## 1181           Yes     2
## 1182            No     1
## 1183           Yes     4
## 1184           Yes     1
## 1185            No     1
## 1186           Yes     2
## 1187            No     1
## 1188           Yes     4
## 1189           Yes     1
## 1190            No     1
## 1191           Yes     2
## 1192            No     1
## 1193           Yes     2
## 1194           Yes     1
## 1195           Yes     2
## 1196           Yes     1
## 1197           Yes     4
## 1198           Yes     6
## 1199           Yes     2
## 1200           Yes     2
## 1201           Yes     2
## 1202           Yes     1
## 1203           Yes     2
## 1205           Yes     1
## 1206            No     1
## 1207           Yes     1
## 1208           Yes     2
## 1209           Yes     4
## 1210           Yes     2
## 1211            No     2
## 1212           Yes     2
## 1213           Yes     2
## 1214           Yes     4
## 1215           Yes     1
## 1216           Yes     2
## 1217           Yes     2
## 1218           Yes     4
## 1219           Yes     1
## 1220            No     3
## 1221           Yes     2
## 1222           Yes     3
## 1223           Yes     1
## 1224           Yes     1
## 1225           Yes     3
## 1227           Yes     1
## 1228            No     1
## 1229           Yes     2
## 1232            No     1
## 1233           Yes     2
## 1234            No     1
## 1235            No     1
## 1237           Yes     2
## 1238           Yes     1
## 1239           Yes     2
## 1240            No     1
## 1241           Yes     2
## 1242            No     3
## 1243           Yes     1
## 1244           Yes     1
## 1245           Yes     2
## 1246           Yes     2
## 1247           Yes     2
## 1248           Yes     1
## 1249           Yes     3
## 1250           Yes     2
## 1251            No     4
## 1252            No     1
## 1253           Yes     1
## 1254           Yes     2
## 1255            No     2
## 1256           Yes     2
## 1257            No     1
## 1258           Yes     1
## 1259            No     2
## 1260           Yes     4
## 1261           Yes     1
## 1262           Yes     2
## 1263           Yes     2
## 1264           Yes     4
## 1265           Yes     1
## 1266           Yes     2
## 1267           Yes     2
## 1268           Yes     2
## 1269           Yes     1
## 1270            No     4
## 1271            No     1
## 1272            No     3
## 1274           Yes     3
## 1275           Yes     1
## 1276           Yes     2
## 1277           Yes     1
## 1278            No     1
## 1279            No     1
## 1280           Yes     1
## 1281           Yes     3
## 1282           Yes     2
## 1283            No     1
## 1284            No     1
## 1286            No     2
## 1287           Yes     2
## 1288           Yes     2
## 1289            No     1
## 1290           Yes     2
## 1291           Yes     4
## 1292            No     1
## 1293           Yes     2
## 1294           Yes     1
## 1295           Yes     2
## 1296           Yes     2
## 1297            No     1
## 1298           Yes     2
## 1299           Yes     2
## 1300            No     1
## 1301           Yes     3
## 1302            No     1
## 1303           Yes     2
## 1304            No     1
## 1305            No     1
## 1306            No     1
## 1307           Yes     2
## 1308            No     1
## 1309            No     3
## 1310            No     2
## 1311           Yes     2
## 1312           Yes     1
## 1313           Yes     2
## 1314           Yes     1
## 1315           Yes     1
## 1316           Yes     1
## 1317            No     1
## 1318           Yes     1
## 1320           Yes     2
## 1321           Yes     2
## 1322            No     1
## 1323           Yes     2
## 1324            No     1
## 1325           Yes     3
## 1326            No     1
## 1327            No     1
## 1328            No     2
## 1329           Yes     4
## 1330            No     1
## 1331           Yes     2
## 1332           Yes     5
## 1333           Yes     3
## 1334            No     1
## 1335           Yes     2
## 1336            No     1
## 1337           Yes     1
## 1338           Yes     2
## 1339           Yes     4
## 1340            No     1
## 1341           Yes     1
## 1342           Yes     2
## 1343           Yes     4
## 1344           Yes     4
## 1345           Yes     5
## 1346           Yes     2
## 1347           Yes     4
## 1348            No     1
## 1349            No     1
## 1350           Yes     1
## 1351            No     1
## 1352            No     1
## 1353            No     1
## 1354           Yes     2
## 1355           Yes     1
## 1356            No     1
## 1357           Yes     1
## 1359            No     1
## 1361           Yes     2
## 1362            No     1
## 1363            No     2
## 1365           Yes     2
## 1366           Yes     2
## 1367           Yes     2
## 1368           Yes     2
## 1369           Yes     5
## 1371           Yes     5
## 1372           Yes     1
## 1373           Yes     2
## 1374           Yes     2
## 1376           Yes     2
## 1377           Yes     4
## 1378           Yes     2
## 1379            No     2
## 1380           Yes     1
## 1381           Yes     8
## 1383           Yes     4
## 1384           Yes     2
## 1385           Yes     2
## 1386           Yes     2
## 1387            No     1
## 1388           Yes     1
## 1389            No     2
## 1390            No     4
## 1391           Yes     1
## 1392           Yes     2
## 1393           Yes     2
## 1394           Yes     1
## 1395           Yes     1
## 1396           Yes     1
## 1397           Yes     1
## 1398           Yes     2
## 1399            No     1
## 1400           Yes     2
## 1401           Yes     1
## 1402           Yes     6
## 1403            No     1
## 1404           Yes     4
## 1405           Yes     2
## 1406           Yes     2
## 1407           Yes     1
## 1408           Yes     9
## 1409           Yes     2
## 1410           Yes     2
## 1411           Yes     3
## 1412           Yes     2
## 1413            No     1
## 1414           Yes     1
## 1415           Yes     3
## 1416            No     2
## 1417           Yes     2
## 1418           Yes     1
## 1419            No     1
## 1420           Yes     2
## 1421            No     1
## 1422           Yes     1
## 1423           Yes     2
## 1425           Yes     2
## 1426            No     1
## 1427           Yes     1
## 1428            No     2
## 1429           Yes     1
## 1430           Yes     1
## 1431           Yes     1
## 1432            No     1
## 1433           Yes     2
## 1434            No     1
## 1435           Yes     1
## 1437           Yes     1
## 1438           Yes     1
## 1439           Yes     1
## 1440           Yes     2
## 1441           Yes     1
## 1442            No     1
## 1443           Yes     2
## 1444           Yes     1
## 1445            No     2
## 1446           Yes     2
## 1447            No     2
## 1448            No     1
## 1449           Yes     2
## 1450           Yes     2
## 1451           Yes     3
## 1452           Yes     1
## 1453           Yes     1
## 1454            No     2
## 1455            No     1
## 1456           Yes     1
## 1457           Yes     1
## 1458           Yes     2
## 1459           Yes     2
## 1460            No     1
## 1461            No     5
## 1464           Yes     3
## 1465           Yes     2
## 1466            No     1
## 1467            No     1
## 1468           Yes     2
## 1469           Yes     2
## 1470            No     1
## 1471           Yes     2
## 1472           Yes     2
## 1473           Yes     2
## 1474           Yes     2
## 1476            No     1
## 1477           Yes     1
## 1478           Yes     2
## 1479           Yes     2
## 1480            No     1
## 1481           Yes     4
## 1482           Yes     2
## 1483           Yes     1
## 1484            No     2
## 1485           Yes     1
## 1486           Yes     1
## 1487           Yes     3
## 1488            No     1
## 1489           Yes     2
## 1490            No     1
## 1491           Yes     1
## 1492            No     1
## 1493            No     1
## 1494           Yes     1
## 1495           Yes     1
## 1496            No     1
## 1497           Yes     2
## 1498           Yes     1
## 1499           Yes     2
## 1500            No     1
## 1501           Yes     1
## 1502            No     1
## 1503           Yes     1
## 1504            No     1
## 1505            No    11
## 1506           Yes     1
## 1507           Yes     2
## 1509            No     4
## 1510           Yes     1
## 1511           Yes     2
## 1512           Yes     2
## 1514            No     1
## 1515           Yes     1
## 1516           Yes     1
## 1517            No     1
## 1518           Yes     2
## 1519            No     2
## 1520           Yes     1
## 1521           Yes     2
## 1522           Yes     2
## 1524            No     1
## 1525            No     2
## 1526           Yes     1
## 1527            No     1
## 1528           Yes     2
## 1529           Yes     4
## 1530            No     1
## 1531            No     1
## 1532            No     1
## 1533           Yes     1
## 1534           Yes     2
## 1535           Yes     1
## 1536            No     1
## 1537           Yes     1
## 1538           Yes     3
## 1539           Yes     2
## 1540           Yes     2
## 1541            No     1
## 1542            No     4
## 1543           Yes     4
## 1544           Yes     3
## 1545           Yes     2
## 1546            No     1
## 1547           Yes     2
## 1548           Yes     2
## 1549           Yes     1
## 1550           Yes     1
## 1551            No     1
## 1552           Yes     1
## 1553           Yes     2
## 1554           Yes     2
## 1555           Yes     1
## 1556           Yes     2
## 1557            No     1
## 1558           Yes     4
## 1559            No     1
## 1560           Yes     2
## 1561           Yes     5
## 1562            No     1
## 1563           Yes     2
## 1564            No     1
## 1565           Yes     5
## 1566           Yes     2
## 1567           Yes     2
## 1568           Yes     1
## 1569           Yes     2
## 1570            No     2
## 1571            No     4
## 1572           Yes    12
## 1573           Yes     1
## 1574           Yes     1
## 1575           Yes     1
## 1576           Yes     4
## 1578           Yes     1
## 1579           Yes     2
## 1580           Yes     1
## 1581            No     1
## 1582            No     1
## 1583            No     2
## 1585           Yes     4
## 1586           Yes     1
## 1587           Yes     2
## 1588            No     1
## 1589           Yes     2
## 1590           Yes     1
## 1591            No     1
## 1592           Yes     2
## 1593            No     1
## 1594            No     2
## 1595           Yes     2
## 1596           Yes     2
## 1597           Yes     1
## 1598           Yes     1
## 1599           Yes     1
## 1600           Yes     1
## 1601           Yes     6
## 1602           Yes     1
## 1603            No     1
## 1605            No     1
## 1606           Yes     5
## 1607            No     1
## 1608            No     2
## 1609           Yes     1
## 1610            No     2
## 1611           Yes     1
## 1612           Yes     1
## 1613            No     1
## 1614           Yes     1
## 1615            No     1
## 1616           Yes     4
## 1617           Yes     2
## 1618           Yes     1
## 1619            No     2
## 1620           Yes     2
## 1621            No     2
## 1622            No     1
## 1623           Yes     1
## 1624           Yes     1
## 1625            No     1
## 1626            No     1
## 1627           Yes     2
## 1628           Yes     2
## 1629           Yes    25
## 1630            No     1
## 1631           Yes     1
## 1632           Yes     4
## 1633           Yes     1
## 1634            No     1
## 1635            No     3
## 1636            No     1
## 1637           Yes     1
## 1638            No    17
## 1639           Yes     2
## 1640           Yes     2
## 1641           Yes     1
## 1642           Yes     2
## 1643           Yes     3
## 1644           Yes     2
## 1645           Yes     1
## 1646           Yes     1
## 1647           Yes     1
## 1648           Yes     1
## 1649           Yes     4
## 1650           Yes    12
## 1651            No     1
## 1652           Yes     1
## 1653           Yes     2
## 1655           Yes     3
## 1656            No     1
## 1657           Yes     2
## 1658           Yes     2
## 1659           Yes     1
## 1660           Yes     2
## 1661           Yes     1
## 1662           Yes     2
## 1663           Yes     8
## 1664           Yes     3
## 1665           Yes     3
## 1666           Yes     2
## 1669           Yes     1
## 1670           Yes     1
## 1671           Yes     6
## 1672           Yes     1
## 1673           Yes     4
## 1674            No     1
## 1675            No     2
## 1676            No     1
## 1677           Yes     2
## 1678            No     1
## 1679            No     1
## 1680           Yes     3
## 1682           Yes     1
## 1683           Yes     2
## 1684           Yes     1
## 1685            No     2
## 1686           Yes     1
## 1687           Yes     2
## 1688           Yes     2
## 1689            No     1
## 1690           Yes     2
## 1691           Yes     2
## 1692           Yes     2
## 1693           Yes     1
## 1694            No     1
## 1695           Yes     3
## 1696           Yes     1
## 1697           Yes     4
## 1698           Yes     1
## 1700           Yes     2
## 1701            No     5
## 1702           Yes     2
## 1703           Yes     2
## 1704           Yes     2
## 1705           Yes     3
## 1706           Yes     2
## 1707           Yes     3
## 1708           Yes     2
## 1709           Yes     1
## 1710            No     2
## 1711            No     1
## 1712           Yes     2
## 1713            No     1
## 1714           Yes     2
## 1715            No     1
## 1716            No     2
## 1717           Yes     2
## 1718           Yes     2
## 1719            No     1
## 1721           Yes     2
## 1722           Yes     1
## 1724           Yes     2
## 1725           Yes     2
## 1726           Yes     2
## 1727            No     1
## 1728            No     2
## 1729            No     1
## 1730           Yes     3
## 1731           Yes     2
## 1732           Yes     1
## 1733           Yes     3
## 1734            No     1
## 1735           Yes     1
## 1736           Yes     1
## 1737            No     2
## 1738           Yes     3
## 1739           Yes     2
## 1740            No     1
## 1741           Yes     1
## 1742            No     1
## 1743           Yes     1
## 1744           Yes     1
## 1745           Yes     2
## 1746           Yes     4
## 1747           Yes     1
## 1749           Yes     2
## 1750            No     1
## 1751           Yes     2
## 1752            No     1
## 1753           Yes     1
## 1754           Yes     2
## 1755           Yes     1
## 1756            No     1
## 1757           Yes     2
## 1758           Yes     1
## 1759            No     1
## 1761           Yes     2
## 1762            No     1
## 1763           Yes     1
## 1764           Yes     1
## 1765           Yes     2
## 1766           Yes     2
## 1769           Yes     1
## 1770           Yes     2
## 1771           Yes     2
## 1773            No    16
## 1774            No     1
## 1775           Yes     1
## 1776            No     2
## 1778           Yes     2
## 1779           Yes     2
## 1780           Yes     1
## 1781           Yes     2
## 1782           Yes     2
## 1783           Yes     2
## 1784            No     1
## 1785           Yes     4
## 1786           Yes     2
## 1787           Yes     1
## 1788           Yes     2
## 1789           Yes     2
## 1790           Yes     2
## 1791           Yes     1
## 1792            No     1
## 1793           Yes     4
## 1794           Yes     2
## 1795            No     1
## 1796           Yes     8
## 1797           Yes     3
## 1798           Yes     1
## 1799           Yes     4
## 1800            No     1
## 1801           Yes     2
## 1802           Yes     3
## 1803           Yes     1
## 1804           Yes     2
## 1805            No     1
## 1806           Yes     1
## 1807           Yes     7
## 1808           Yes     2
## 1809            No     1
## 1810           Yes     2
## 1811            No     3
## 1812           Yes     2
## 1813           Yes     1
## 1814            No     1
## 1815            No     1
## 1816           Yes     1
## 1817           Yes     2
## 1818            No     1
## 1819           Yes     2
## 1820           Yes     2
## 1821           Yes     2
## 1822           Yes     2
## 1823           Yes     1
## 1824           Yes     1
## 1825            No     1
## 1826           Yes     2
## 1827           Yes     2
## 1828           Yes     1
## 1829           Yes     1
## 1830           Yes     1
## 1831            No     1
## 1832           Yes     2
## 1833           Yes     2
## 1834           Yes     1
## 1835           Yes     2
## 1836            No     1
## 1837           Yes     2
## 1838           Yes     2
## 1839           Yes    14
## 1840           Yes     2
## 1841           Yes     2
## 1842            No     1
## 1843           Yes     1
## 1844           Yes     2
## 1845            No     1
## 1846           Yes     1
## 1847           Yes     3
## 1848           Yes     1
## 1849           Yes     2
## 1850           Yes     3
## 1851           Yes     1
## 1852           Yes     1
## 1853           Yes     2
## 1854           Yes     1
## 1855           Yes     1
## 1856           Yes     1
## 1857           Yes     2
## 1858           Yes     2
## 1859           Yes     1
## 1860           Yes     2
## 1861           Yes     2
## 1862            No     6
## 1863           Yes     2
## 1864            No     1
## 1865           Yes     5
## 1866           Yes     1
## 1868           Yes     2
## 1869           Yes     3
## 1870            No     1
## 1871           Yes     2
## 1872           Yes     6
## 1873           Yes     2
## 1874           Yes     2
## 1875           Yes     2
## 1876           Yes     2
## 1877            No     1
## 1878            No     2
## 1879           Yes     2
## 1880            No     4
## 1881           Yes     1
## 1882            No     1
## 1883            No     1
## 1884            No     2
## 1885           Yes     1
## 1886            No     1
## 1887           Yes     1
## 1888           Yes     2
## 1889           Yes     6
## 1890            No     1
## 1891           Yes     1
## 1892           Yes     1
## 1893            No     1
## 1894           Yes     1
## 1895            No     1
## 1896           Yes     7
## 1897           Yes     2
## 1898            No     1
## 1899            No     1
## 1900           Yes     1
## 1901           Yes     2
## 1902           Yes     1
## 1903           Yes     5
## 1904            No     2
## 1906            No     2
## 1907           Yes     2
## 1908            No     1
## 1909           Yes     3
## 1910            No     2
## 1911           Yes     3
## 1912            No     1
## 1913           Yes     1
## 1914           Yes     2
## 1915           Yes     1
## 1916           Yes     1
## 1917           Yes     4
## 1918           Yes     1
## 1919           Yes     3
## 1920            No     1
## 1921           Yes     5
## 1922            No     5
## 1923           Yes     2
## 1924            No     1
## 1926            No     1
## 1927            No     1
## 1928            No     1
## 1929           Yes     1
## 1930           Yes     2
## 1931           Yes     2
## 1932            No     2
## 1933           Yes     2
## 1934           Yes     2
## 1935           Yes     2
## 1936           Yes    10
## 1937           Yes     4
## 1938           Yes     2
## 1939            No     2
## 1941           Yes     5
## 1943            No     1
## 1944            No     4
## 1945           Yes     2
## 1946            No     2
## 1947           Yes     3
## 1948            No     1
## 1949           Yes     1
## 1950           Yes     4
## 1951           Yes     1
## 1952           Yes     3
## 1953           Yes     2
## 1954           Yes     1
## 1955           Yes     2
## 1956           Yes     1
## 1957           Yes     1
## 1958            No     4
## 1959           Yes     1
## 1960            No     1
## 1961           Yes     2
## 1962           Yes     1
## 1963           Yes     1
## 1964           Yes     1
## 1965            No    11
## 1966           Yes     2
## 1967            No     1
## 1968            No     2
## 1969           Yes     1
## 1970           Yes     3
## 1971           Yes     2
## 1972            No     4
## 1973            No     1
## 1974           Yes     1
## 1975           Yes     1
## 1977           Yes     2
## 1979           Yes     5
## 1980            No     4
## 1981            No     4
## 1982           Yes     1
## 1983           Yes     1
## 1984            No     1
## 1985           Yes     5
## 1986           Yes     2
## 1987            No     2
## 1988           Yes     1
## 1989           Yes     1
## 1990           Yes     1
## 1991           Yes     1
## 1992           Yes     2
## 1993            No     1
## 1994           Yes     3
## 1995            No     2
## 1996            No     2
## 1997           Yes     4
## 1998           Yes     1
## 1999           Yes     2
## 2000           Yes     1
## 2001           Yes     1
## 2002            No     2
## 2003            No     1
## 2004            No     1
## 2005           Yes     4
## 2006           Yes     2
## 2007           Yes     2
## 2008            No     1
## 2009            No     1
## 2010           Yes     2
## 2011           Yes     2
## 2013           Yes     2
## 2015           Yes     1
## 2016           Yes     2
## 2017           Yes     1
## 2018            No     1
## 2019           Yes     6
## 2020           Yes     4
## 2021           Yes     3
## 2022           Yes     3
## 2023           Yes     2
## 2024            No     1
## 2025           Yes     3
## 2026            No     3
## 2027            No     1
## 2028           Yes     3
## 2029            No     1
## 2030            No     1
## 2031           Yes     2
## 2032           Yes     1
## 2033           Yes     1
## 2034            No     1
## 2035           Yes     1
## 2036           Yes     4
## 2038           Yes     3
## 2039           Yes     2
## 2040           Yes     2
## 2041            No     2
## 2042           Yes     2
## 2043            No     1
## 2044           Yes     2
## 2045           Yes     2
## 2046            No     5
## 2047            No     1
## 2048           Yes     2
## 2049           Yes     2
## 2050           Yes     1
## 2052           Yes     3
## 2053           Yes     5
## 2055           Yes     2
## 2056            No     1
## 2057            No     3
## 2058           Yes     2
## 2059           Yes     2
## 2061            No     1
## 2062           Yes     2
## 2063           Yes     2
## 2064            No     2
## 2065            No     1
## 2067           Yes     3
## 2068            No     1
## 2069           Yes     1
## 2071            No     1
## 2072           Yes     1
## 2073           Yes     8
## 2074            No     1
## 2075           Yes     2
## 2076           Yes     3
## 2077           Yes     2
## 2078           Yes     1
## 2079            No     2
## 2080           Yes     3
## 2081            No     1
## 2082           Yes     1
## 2083           Yes     2
## 2084           Yes     2
## 2085           Yes     2
## 2086           Yes     2
## 2087            No     1
## 2088            No     1
## 2089           Yes     2
## 2090           Yes     2
## 2092            No     1
## 2094            No     4
## 2095            No     1
## 2096           Yes     1
## 2098           Yes     4
## 2099           Yes     2
## 2100           Yes     1
## 2101            No     1
## 2102           Yes     2
## 2103           Yes     1
## 2104           Yes     1
## 2105            No     1
## 2106            No     1
## 2107           Yes     2
## 2108           Yes     1
## 2109           Yes     1
## 2110            No     2
## 2111           Yes     1
## 2112            No     1
## 2113           Yes     1
## 2114            No     1
## 2115            No     2
## 2116           Yes     1
## 2117            No     2
## 2119           Yes     1
## 2120           Yes     2
## 2121           Yes     1
## 2122            No     3
## 2123           Yes     1
## 2126           Yes     2
## 2127            No     1
## 2128           Yes     2
## 2129           Yes     1
## 2130            No     1
## 2131           Yes     4
## 2132            No     1
## 2133           Yes     4
## 2134           Yes     3
## 2135            No     1
## 2136           Yes     2
## 2137           Yes     2
## 2138            No     1
## 2140            No     3
## 2141           Yes     2
## 2142           Yes     2
## 2143            No     1
## 2144           Yes     2
## 2145           Yes     2
## 2146           Yes     4
## 2147           Yes     6
## 2148           Yes     2
## 2149           Yes     3
## 2150           Yes     1
## 2151           Yes     2
## 2152           Yes     2
## 2154            No     1
## 2155           Yes     2
## 2157           Yes     2
## 2158           Yes     1
## 2160           Yes     1
## 2161           Yes     1
## 2163           Yes     1
## 2164           Yes     1
## 2165            No     1
## 2166            No     2
## 2167           Yes     1
## 2169           Yes     7
## 2170           Yes     2
## 2171            No     1
## 2172            No    11
## 2174           Yes     2
## 2175            No     5
## 2176           Yes     1
## 2177           Yes     2
## 2178            No     1
## 2179            No     1
## 2180           Yes     2
## 2181            No     1
## 2182            No     1
## 2183           Yes     2
## 2184           Yes     1
## 2185            No     1
## 2186           Yes     2
## 2187           Yes     3
## 2188           Yes     2
## 2189            No     2
## 2190           Yes     4
## 2192           Yes     1
## 2193            No     2
## 2194           Yes     2
## 2195            No     3
## 2196           Yes     1
## 2197            No     1
## 2198           Yes     2
## 2199           Yes     1
## 2200           Yes     4
## 2201            No     1
## 2202            No     1
## 2203           Yes     4
## 2204            No     1
## 2205            No     1
## 2206           Yes     2
## 2207           Yes     2
## 2208           Yes     1
## 2209           Yes     2
## 2210            No     1
## 2211            No     1
## 2212           Yes     2
## 2213           Yes     1
## 2214           Yes     3
## 2215           Yes     2
## 2216           Yes     2
## 2217           Yes     3
## 2218            No     1
## 2219            No     1
## 2220           Yes     1
## 2221           Yes     2
## 2222            No     1
## 2223           Yes     2
## 2224           Yes     2
## 2225            No     1
## 2226           Yes     2
## 2227           Yes     2
## 2228           Yes     1
## 2229           Yes     3
## 2230            No     1
## 2232            No     1
## 2233           Yes     1
## 2234           Yes     1
## 2235            No     1
## 2236           Yes     1
## 2237           Yes     1
## 2239           Yes     1
## 2240           Yes     3
## 2241           Yes     1
## 2242           Yes     2
## 2243            No     5
## 2244           Yes     2
## 2245            No     1
## 2246           Yes     2
## 2247            No     1
## 2248           Yes     2
## 2249           Yes     1
## 2250           Yes     2
## 2252            No     1
## 2253            No     2
## 2254           Yes     2
## 2255           Yes     1
## 2256           Yes     2
## 2257           Yes     1
## 2258           Yes     2
## 2260           Yes     4
## 2261           Yes     1
## 2262            No     1
## 2263           Yes     1
## 2264            No     1
## 2265           Yes     1
## 2266            No     2
## 2267           Yes     1
## 2268           Yes     2
## 2269            No     2
## 2270            No     3
## 2271           Yes     2
## 2272           Yes     9
## 2273           Yes     1
## 2274           Yes     2
## 2275           Yes     2
## 2276            No     1
## 2277            No     2
## 2278            No     1
## 2279            No     1
## 2280            No     1
## 2281           Yes     3
## 2282            No     1
## 2283           Yes     2
## 2284            No     1
## 2285           Yes     1
## 2286           Yes     6
## 2287            No     4
## 2288           Yes     2
## 2289            No     1
## 2290           Yes     1
## 2291            No     1
## 2292           Yes     6
## 2293           Yes     2
## 2294            No     1
## 2295           Yes     2
## 2297           Yes     2
## 2298           Yes     1
## 2299           Yes     1
## 2300           Yes     2
## 2301           Yes     2
## 2302           Yes     2
## 2303           Yes     2
## 2304           Yes     2
## 2305           Yes     3
## 2306           Yes     3
## 2307           Yes     1
## 2308           Yes     3
## 2309            No     1
## 2310           Yes     5
## 2311           Yes     2
## 2312           Yes     2
## 2313           Yes     4
## 2314            No     3
## 2315           Yes     2
## 2316           Yes     3
## 2317            No     1
## 2318           Yes     3
## 2319           Yes     2
## 2321           Yes     1
## 2322            No     1
## 2323           Yes     2
## 2324            No     3
## 2325           Yes     1
## 2326            No     2
## 2327            No     4
## 2328           Yes     2
## 2329           Yes     2
## 2330           Yes     1
## 2331           Yes     3
## 2332           Yes     2
## 2333           Yes     2
## 2334           Yes     2
## 2336            No     2
## 2337           Yes     2
## 2338           Yes     2
## 2339           Yes     1
## 2340           Yes     2
## 2341            No     2
## 2342           Yes     2
## 2343            No     1
## 2344            No     1
## 2345            No     2
## 2346            No     1
## 2347           Yes     1
## 2348           Yes     2
## 2349           Yes     2
## 2350           Yes     2
## 2351            No     2
## 2352           Yes     2
## 2354            No     1
## 2355            No     2
## 2356           Yes     1
## 2357            No     1
## 2358           Yes     2
## 2359           Yes     2
## 2360           Yes     2
## 2361           Yes     1
## 2362            No     2
## 2363           Yes     2
## 2364           Yes     2
## 2365           Yes    11
## 2366            No     2
## 2367            No     2
## 2368           Yes     1
## 2369            No     1
## 2370           Yes     1
## 2371           Yes     1
## 2372           Yes     8
## 2373            No     1
## 2374           Yes     2
## 2375           Yes     3
## 2376            No     5
## 2377           Yes     2
## 2378           Yes     2
## 2379           Yes     1
## 2380           Yes     5
## 2381           Yes     2
## 2382            No     1
## 2383            No     2
## 2384           Yes     1
## 2385            No     3
## 2386           Yes     1
## 2387            No     1
## 2388           Yes     1
## 2389           Yes     2
## 2390           Yes     2
## 2391            No     1
## 2392           Yes     2
## 2393           Yes   120
## 2394           Yes     1
## 2395           Yes     3
## 2396            No    11
## 2397           Yes     2
## 2398            No     1
## 2399           Yes     5
## 2401           Yes     1
## 2402           Yes     1
## 2403            No     1
## 2404           Yes     2
## 2405            No     1
## 2406           Yes     2
## 2407           Yes     2
## 2408           Yes     5
## 2409            No     1
## 2410           Yes     2
## 2411            No     7
## 2412            No     1
## 2413           Yes     1
## 2414           Yes     3
## 2417            No     2
## 2418           Yes     2
## 2419           Yes     2
## 2420           Yes     2
## 2421           Yes     4
## 2422            No     6
## 2424            No     1
## 2425           Yes     1
## 2426           Yes     2
## 2427           Yes     2
## 2428            No     1
## 2430            No     1
## 2431           Yes     1
## 2432            No     3
## 2433           Yes     1
## 2435           Yes     5
## 2436           Yes     1
## 2437           Yes     1
## 2438           Yes     2
## 2439           Yes     3
## 2440           Yes     2
## 2441           Yes     1
## 2442           Yes     2
## 2443           Yes     1
## 2444           Yes     3
## 2445           Yes     1
## 2446           Yes     2
## 2447           Yes     1
## 2448            No     1
## 2449            No     1
## 2450           Yes     1
## 2451            No     1
## 2452           Yes     2
## 2453           Yes     1
## 2454           Yes     5
## 2455           Yes     2
## 2456           Yes     1
## 2457           Yes     2
## 2458           Yes     1
## 2459            No     1
## 2460            No     1
## 2461           Yes     2
## 2462            No     1
## 2463           Yes     2
## 2464           Yes     1
## 2465           Yes     4
## 2467            No     1
## 2468           Yes     1
## 2469            No     1
## 2470            No     2
## 2471           Yes     1
## 2472           Yes     3
## 2473           Yes     2
## 2474           Yes     2
## 2475           Yes     4
## 2477            No     1
## 2478            No     2
## 2479           Yes     2
## 2480           Yes     2
## 2481           Yes     2
## 2482           Yes     1
## 2483            No     1
## 2484            No     3
## 2485           Yes     1
## 2486           Yes     1
## 2487            No     2
## 2488           Yes     2
## 2489           Yes     1
## 2490            No     1
## 2491            No     1
## 2492            No     1
## 2493           Yes     2
## 2494            No     2
## 2495            No     1
## 2497            No     1
## 2498           Yes     2
## 2499           Yes     2
## 2500            No     1
## 2502           Yes     2
## 2503           Yes     2
## 2504           Yes     1
## 2506           Yes     2
## 2507           Yes     1
## 2508            No     3
## 2509            No     1
## 2510           Yes     2
## 2511           Yes     1
## 2512           Yes     4
## 2513           Yes     7
## 2514           Yes     4
## 2515            No     1
## 2516           Yes     1
## 2517           Yes     1
## 2518            No     2
## 2519            No     2
## 2520           Yes     2
## 2521           Yes     1
## 2522           Yes     2
## 2523           Yes     1
## 2524           Yes     1
## 2525            No     3
## 2526           Yes     3
## 2527           Yes     1
## 2528            No     1
## 2529           Yes     2
## 2530           Yes     8
## 2531           Yes     2
## 2532           Yes     1
## 2533           Yes     2
## 2534            No     2
## 2535           Yes     1
## 2536           Yes     1
## 2537           Yes     4
## 2538           Yes     2
## 2539            No     1
## 2540           Yes     2
## 2541            No     1
## 2542            No     2
## 2543           Yes     1
## 2544           Yes     4
## 2545            No     4
## 2546           Yes     1
## 2547           Yes     1
## 2548           Yes     3
## 2549            No     1
## 2550            No     3
## 2551           Yes     4
## 2552           Yes     2
## 2553           Yes     1
## 2554           Yes     2
## 2555           Yes     1
## 2556           Yes     1
## 2557            No     1
## 2558           Yes     2
## 2559            No     6
## 2560           Yes     2
## 2561            No     1
## 2562            No     1
## 2563            No     1
## 2564           Yes     4
## 2566            No     3
## 2567           Yes     1
## 2568           Yes     2
## 2569           Yes     1
## 2570            No     1
## 2571            No     2
## 2572            No     1
## 2573            No     1
## 2574           Yes     1
## 2576            No     4
## 2577            No     1
## 2578           Yes     1
## 2579           Yes     1
## 2580            No     2
## 2581            No     1
## 2582           Yes     1
## 2583           Yes     2
## 2584            No     1
## 2585            No     2
## 2586            No     1
## 2587           Yes     3
## 2588           Yes     2
## 2589            No     1
## 2590            No     1
## 2591           Yes     1
## 2592           Yes     2
## 2593            No     1
## 2594           Yes     7
## 2595            No     1
## 2596            No     2
## 2597           Yes     1
## 2598            No     1
## 2599           Yes     1
## 2600           Yes     2
## 2601           Yes     1
## 2602           Yes     2
## 2603           Yes     2
## 2604           Yes     1
## 2605            No     1
## 2606            No     2
## 2607           Yes     2
## 2609           Yes     1
## 2610            No     1
## 2611            No     1
## 2612           Yes     1
## 2613           Yes     2
## 2614           Yes     2
## 2615           Yes     3
## 2616           Yes     2
## 2617            No     1
## 2618           Yes     2
## 2620           Yes     2
## 2621           Yes     1
## 2623           Yes     1
## 2624           Yes     2
## 2625            No     1
## 2626            No     1
## 2627           Yes     1
## 2628           Yes     1
## 2629           Yes     2
## 2630           Yes     2
## 2631           Yes     1
## 2632            No     1
## 2633           Yes     1
## 2635            No     1
## 2636           Yes     3
## 2637            No     2
## 2638           Yes     2
## 2639           Yes     2
## 2640           Yes     1
## 2641           Yes     2
## 2642           Yes     2
## 2643            No     1
## 2645            No     2
## 2646           Yes     2
## 2647           Yes     1
## 2648            No     2
## 2649           Yes     4
## 2650           Yes     2
## 2651           Yes     1
## 2652           Yes    16
## 2653           Yes     4
## 2654           Yes     1
## 2655           Yes     1
## 2656           Yes     1
## 2657           Yes     1
## 2658           Yes     1
## 2659           Yes     2
## 2660           Yes     2
## 2661           Yes     1
## 2662           Yes     1
## 2663            No     2
## 2664           Yes     1
## 2665           Yes     2
## 2666           Yes     2
## 2667           Yes     1
## 2668           Yes     1
## 2669            No     1
## 2671           Yes     2
## 2672           Yes     1
## 2674           Yes     1
## 2675           Yes     2
## 2676           Yes     1
## 2677           Yes     1
## 2678           Yes     1
## 2679           Yes     1
## 2680           Yes     2
## 2681           Yes     1
## 2682           Yes     1
## 2683           Yes     1
## 2684            No     2
## 2685           Yes     1
## 2686            No     1
## 2687           Yes     1
## 2688           Yes     1
## 2689           Yes     3
## 2690            No     2
## 2691           Yes     5
## 2692           Yes     2
## 2693           Yes     1
## 2694           Yes     1
## 2695           Yes     1
## 2696           Yes     1
## 2697           Yes     1
## 2698           Yes     2
## 2699            No     1
## 2700           Yes     1
## 2701            No     2
## 2702            No     1
## 2703           Yes     2
## 2704           Yes     1
## 2705            No     3
## 2706           Yes     2
## 2707           Yes     2
## 2708           Yes     4
## 2709           Yes     2
## 2711            No     1
## 2712           Yes     2
## 2713           Yes     1
## 2714            No     3
## 2715           Yes     2
## 2716            No     1
## 2717           Yes     2
## 2718           Yes     4
## 2719            No     1
## 2720           Yes     1
## 2721            No     2
## 2723            No     1
## 2724            No     2
## 2725           Yes     2
## 2726           Yes     1
## 2727           Yes     2
## 2728            No     1
## 2729           Yes     2
## 2730           Yes     2
## 2731           Yes     2
## 2732            No     1
## 2733            No     1
## 2734           Yes     3
## 2735            No     3
## 2737           Yes     2
## 2738           Yes     2
## 2739           Yes     4
## 2741           Yes     2
## 2742            No     4
## 2743           Yes     4
## 2744            No     1
## 2745           Yes     1
## 2746            No     1
## 2748           Yes     2
## 2749           Yes     1
## 2750           Yes     1
## 2751           Yes     2
## 2752           Yes     2
## 2753            No     2
## 2754            No     1
## 2755           Yes     2
## 2757           Yes     3
## 2758           Yes     1
## 2759            No     2
## 2760           Yes     3
## 2761           Yes     2
## 2762           Yes     1
## 2763           Yes     1
## 2764            No     2
## 2765           Yes     2
## 2766           Yes     1
## 2767           Yes     1
## 2768            No     3
## 2769           Yes     1
## 2770           Yes     1
## 2771           Yes     2
## 2772            No     1
## 2773            No     2
## 2774            No     1
## 2775            No     1
## 2776           Yes     2
## 2778           Yes     2
## 2779           Yes     1
## 2780           Yes     2
## 2781           Yes     1
## 2782            No     1
## 2783           Yes     1
## 2784           Yes     1
## 2785           Yes     3
## 2787           Yes     1
## 2788           Yes     3
## 2789           Yes     1
## 2790           Yes     2
## 2791           Yes     2
## 2792           Yes     2
## 2793           Yes     2
## 2794           Yes     1
## 2795            No     4
## 2796           Yes     2
## 2797           Yes     5
## 2798           Yes     2
## 2799            No     2
## 2801           Yes     2
## 2802           Yes     4
## 2803           Yes     2
## 2804           Yes     2
## 2805            No     1
## 2806           Yes     1
## 2807           Yes     2
## 2808           Yes     1
## 2809           Yes     2
## 2810           Yes     2
## 2811           Yes     1
## 2812           Yes     1
## 2814           Yes     6
## 2815           Yes     1
## 2816           Yes     2
## 2817           Yes     1
## 2818            No     1
## 2819            No     3
## 2820            No     1
## 2821            No     1
## 2822            No     2
## 2823           Yes     2
## 2825           Yes     2
## 2826            No     1
## 2827           Yes     6
## 2829           Yes     1
## 2830           Yes     1
## 2831           Yes     2
## 2832            No     2
## 2834           Yes     2
## 2835            No     2
## 2836           Yes     7
## 2837           Yes     2
## 2838           Yes     1
## 2839           Yes     2
## 2840           Yes     2
## 2841           Yes     2
## 2842           Yes     2
## 2843           Yes     2
## 2844           Yes     1
## 2845           Yes     1
## 2846           Yes     2
## 2847           Yes     2
## 2848            No     2
## 2849           Yes     4
## 2850           Yes     2
## 2851           Yes     1
## 2852            No     1
## 2853           Yes     2
## 2855           Yes     1
## 2856            No     2
## 2857           Yes     1
## 2858           Yes     2
## 2859           Yes     2
## 2860           Yes    11
## 2861           Yes     2
## 2862           Yes     2
## 2863            No     1
## 2865           Yes     2
## 2866            No     4
## 2867           Yes     1
## 2869           Yes    10
## 2870            No     1
## 2871            No     6
## 2872            No     2
## 2873           Yes     2
## 2874           Yes     1
## 2875           Yes     4
## 2876           Yes     1
## 2877            No     4
## 2878            No     1
## 2879           Yes     2
## 2880           Yes     4
## 2881           Yes     2
## 2882           Yes     2
## 2883           Yes     4
## 2884           Yes     2
## 2885            No     1
## 2886           Yes     4
## 2887           Yes     2
## 2888           Yes     1
## 2889           Yes     2
## 2890           Yes     2
## 2891           Yes     2
## 2892           Yes     1
## 2893           Yes     1
## 2894           Yes     3
## 2895           Yes     1
## 2896           Yes     2
## 2898            No     1
## 2900           Yes     2
## 2901           Yes     1
## 2902           Yes     2
## 2903           Yes     1
## 2904            No     1
## 2905           Yes     2
## 2906           Yes     2
## 2907           Yes     1
## 2908            No     2
## 2909            No     1
## 2910           Yes     2
## 2911           Yes     2
## 2912            No     1
## 2913            No     1
## 2914           Yes     2
## 2915           Yes     2
## 2917           Yes     2
## 2918            No     3
## 2919           Yes     1
## 2921           Yes     2
## 2922            No     1
## 2923           Yes     2
## 2924           Yes     1
## 2925            No     1
## 2926           Yes     1
## 2927           Yes     2
## 2928           Yes     2
## 2929            No     1
## 2930            No     3
## 2932           Yes     1
## 2934            No     1
## 2935           Yes     2
## 2936           Yes     4
## 2937            No     1
## 2938            No     1
## 2939           Yes     2
## 2940            No     1
## 2941           Yes     1
## 2942           Yes     2
## 2943           Yes     2
## 2944           Yes     1
## 2945           Yes     2
## 2946           Yes     2
## 2947           Yes     2
## 2948           Yes     2
## 2949           Yes     1
## 2950           Yes     2
## 2951           Yes     3
## 2952           Yes     2
## 2953           Yes     4
## 2954           Yes     3
## 2955           Yes     1
## 2956           Yes     2
## 2957            No     2
## 2958           Yes     3
## 2959           Yes     2
## 2960           Yes     1
## 2961           Yes     1
## 2962            No     2
## 2963           Yes     2
## 2964            No     1
## 2965           Yes     2
## 2966           Yes     1
## 2967           Yes     1
## 2968           Yes     2
## 2969           Yes     1
## 2971           Yes     5
## 2972            No     1
## 2973            No     1
## 2974           Yes     2
## 2975            No     1
## 2976            No     1
## 2977           Yes     1
## 2978           Yes     2
## 2979            No     1
## 2980           Yes     2
## 2981           Yes     1
## 2982            No     1
## 2983            No     1
## 2984            No     1
## 2985           Yes     1
## 2986            No     1
## 2987           Yes     4
## 2988            No     1
## 2989           Yes     1
## 2990            No     2
## 2991            No     1
## 2993           Yes     1
## 2994           Yes     2
## 2995           Yes     1
## 2996           Yes     2
## 2997           Yes     5
## 2998            No     1
## 2999           Yes     2
## 3000           Yes     2
## 3001           Yes     2
## 3002            No     1
## 3003           Yes     1
## 3004           Yes     1
## 3005           Yes     1
## 3006            No     1
## 3007           Yes     1
## 3008           Yes     2
## 3010            No     1
## 3011           Yes     8
## 3012            No     2
## 3013           Yes     2
## 3014           Yes     2
## 3015           Yes     2
## 3016            No     3
## 3017           Yes     3
## 3018           Yes     4
## 3019           Yes     1
## 3020           Yes     1
## 3021            No     1
## 3022            No     1
## 3023           Yes     2
## 3024            No     2
## 3025           Yes     1
## 3026           Yes     4
## 3027            No     1
## 3028           Yes     1
## 3029           Yes     2
## 3030           Yes     1
## 3031           Yes     3
## 3032            No     1
## 3033            No     1
## 3034           Yes     2
## 3035           Yes     4
## 3036           Yes     2
## 3037            No     2
## 3038            No     1
## 3040            No     2
## 3041           Yes     1
## 3042           Yes     4
## 3043           Yes     4
## 3044           Yes     1
## 3045           Yes     2
## 3046           Yes     1
## 3047           Yes     1
## 3048           Yes     2
## 3049           Yes     2
## 3050           Yes     2
## 3051           Yes     2
## 3052           Yes     2
## 3054           Yes     3
## 3055            No     2
## 3057           Yes     1
## 3058            No     2
## 3059           Yes     4
## 3060           Yes     4
## 3061           Yes     2
## 3063           Yes     1
## 3064           Yes     4
## 3065           Yes     2
## 3066           Yes     5
## 3067            No     1
## 3068           Yes     2
## 3069           Yes     2
## 3070           Yes     5
## 3071           Yes     1
## 3072           Yes     2
## 3073           Yes     2
## 3075           Yes     2
## 3076           Yes     2
## 3078           Yes     2
## 3079           Yes     2
## 3080           Yes     2
## 3081           Yes     2
## 3082            No     1
## 3083           Yes     2
## 3084            No     2
## 3085            No     4
## 3086           Yes     2
## 3087           Yes     1
## 3088           Yes     3
## 3089           Yes     2
## 3090           Yes     1
## 3091           Yes     2
## 3092            No     1
## 3093           Yes     2
## 3094            No     2
## 3095            No     1
## 3096            No     1
## 3097            No     1
## 3098           Yes     4
## 3099           Yes     4
## 3100           Yes     2
## 3101           Yes     2
## 3102           Yes     1
## 3103            No     1
## 3104           Yes     2
## 3105           Yes     1
## 3107            No     4
## 3108            No     1
## 3109           Yes     1
## 3110            No     2
## 3111           Yes     1
## 3112           Yes     1
## 3113           Yes     2
## 3114           Yes     1
## 3115           Yes     1
## 3116           Yes     1
## 3117           Yes     1
## 3118           Yes     1
## 3119           Yes     2
## 3120           Yes     1
## 3121            No     2
## 3122           Yes     1
## 3123           Yes     1
## 3124           Yes     1
## 3126           Yes     1
## 3127            No     1
## 3128           Yes     2
## 3129           Yes     1
## 3130           Yes     3
## 3131           Yes     1
## 3132           Yes     2
## 3133            No     3
## 3134            No     2
## 3135           Yes     2
## 3136            No     1
## 3137           Yes     1
## 3138           Yes     2
## 3139            No     1
## 3140            No     1
## 3141           Yes     2
## 3142            No     2
## 3143           Yes     1
## 3144           Yes     4
## 3145           Yes     1
## 3146           Yes     1
## 3148           Yes     2
## 3149           Yes     3
## 3150           Yes     2
## 3151           Yes     1
## 3152            No     1
## 3153           Yes     4
## 3154           Yes     1
## 3155           Yes     3
## 3156           Yes     4
## 3157            No     3
## 3161            No     1
## 3162           Yes     1
## 3163           Yes     2
## 3164            No     1
## 3166            No     1
## 3168           Yes     4
## 3169           Yes     2
## 3170           Yes     2
## 3172           Yes     1
## 3173            No     1
## 3175           Yes     2
## 3176           Yes     2
## 3178            No     3
## 3179           Yes     1
## 3180           Yes     2
## 3182           Yes     2
## 3183            No     1
## 3184           Yes     2
## 3185           Yes     3
## 3186           Yes     3
## 3187           Yes     1
## 3188           Yes     2
## 3189           Yes     2
## 3190            No     1
## 3191           Yes     2
## 3192            No     2
## 3193           Yes     2
## 3194            No     4
## 3197           Yes     2
## 3198            No     2
## 3199           Yes     5
## 3200            No     1
## 3201           Yes     2
## 3202            No     1
## 3203            No     1
## 3204            No     1
## 3205           Yes     1
## 3206           Yes     3
## 3207           Yes     2
## 3208           Yes     1
## 3209           Yes     3
## 3210            No     1
## 3211           Yes     2
## 3212           Yes     1
## 3213           Yes     1
## 3214           Yes     2
## 3215           Yes     2
## 3216           Yes     1
## 3218           Yes     2
## 3219           Yes     2
## 3220           Yes     2
## 3221           Yes     2
## 3222            No     1
## 3223            No     2
## 3224            No     2
## 3225            No     1
## 3226           Yes     2
## 3227            No     2
## 3228           Yes     3
## 3229           Yes     1
## 3230           Yes     1
## 3231           Yes     1
## 3232           Yes     4
## 3234           Yes     2
## 3235           Yes     4
## 3236           Yes     2
## 3237           Yes     3
## 3238            No     6
## 3239            No     2
## 3240           Yes     2
## 3241           Yes     2
## 3242           Yes     2
## 3243            No     1
## 3245           Yes     2
## 3246           Yes     3
## 3248            No     2
## 3249           Yes     2
## 3251           Yes     5
## 3252           Yes     1
## 3253           Yes     2
## 3254            No     2
## 3255           Yes     1
## 3256           Yes     2
## 3258            No     1
## 3259           Yes     2
## 3260           Yes     2
## 3262            No     2
## 3263            No     1
## 3264           Yes     1
## 3265            No     1
## 3266           Yes     2
## 3267            No     1
## 3268           Yes     2
## 3269           Yes     2
## 3270           Yes     1
## 3271            No     2
## 3272           Yes     1
## 3273           Yes     2
## 3274           Yes     2
## 3275           Yes     1
## 3276            No     1
## 3277           Yes     1
## 3278           Yes     1
## 3279           Yes     2
## 3280            No     1
## 3281           Yes     2
## 3282           Yes     5
## 3283            No     2
## 3284           Yes     2
## 3285           Yes     4
## 3287           Yes     2
## 3288           Yes     1
## 3289           Yes     2
## 3290           Yes     3
## 3291           Yes     2
## 3292           Yes     1
## 3293           Yes     2
## 3294            No     1
## 3295           Yes     2
## 3296           Yes     2
## 3297           Yes     1
## 3298            No     1
## 3299           Yes     2
## 3300            No     1
## 3301           Yes     1
## 3303           Yes     2
## 3304           Yes     2
## 3305           Yes     1
## 3306           Yes     1
## 3307           Yes     1
## 3308           Yes     2
## 3309           Yes     1
## 3310           Yes     1
## 3311           Yes     2
## 3312           Yes     1
## 3313           Yes     4
## 3314            No     2
## 3315            No     1
## 3316           Yes     1
## 3317           Yes     2
## 3318           Yes     4
## 3320            No     4
## 3321            No     2
## 3322            No     2
## 3323           Yes     2
## 3324           Yes     1
## 3325           Yes     3
## 3326           Yes     1
## 3327           Yes     2
## 3328            No     1
## 3329           Yes     2
## 3330           Yes     3
## 3331           Yes     1
## 3332           Yes     2
## 3333           Yes    27
## 3334            No     1
## 3335           Yes     2
## 3336            No     1
## 3337           Yes     1
## 3338           Yes     1
## 3339           Yes     1
## 3340           Yes     2
## 3341            No     3
## 3342            No     1
## 3343           Yes     2
## 3344           Yes     9
## 3345           Yes     1
## 3346           Yes     1
## 3347           Yes     1
## 3349            No     1
## 3350           Yes     2
## 3351           Yes     1
## 3352           Yes     1
## 3353           Yes     1
## 3354            No     2
## 3355           Yes     3
## 3356           Yes     2
## 3357            No     1
## 3358           Yes     2
## 3359           Yes     6
## 3360            No     2
## 3361           Yes     1
## 3362           Yes     2
## 3363           Yes     2
## 3365            No     1
## 3366            No     1
## 3367            No     1
## 3368            No     2
## 3369           Yes     1
## 3370            No     3
## 3372            No     3
## 3373            No     1
## 3374           Yes     1
## 3375           Yes     1
## 3376           Yes     2
## 3377            No     1
## 3378           Yes     2
## 3379           Yes     2
## 3380            No     1
## 3381           Yes     2
## 3382            No     1
## 3383            No     1
## 3384            No     1
## 3385            No     1
## 3386           Yes     2
## 3387           Yes     1
## 3388            No     3
## 3389            No     1
## 3390           Yes    10
## 3391           Yes     3
## 3392           Yes     2
## 3393            No     1
## 3394           Yes     2
## 3395           Yes     3
## 3396           Yes     3
## 3397           Yes     2
## 3398           Yes     2
## 3399            No     1
## 3400           Yes     3
## 3402           Yes     4
## 3404           Yes     2
## 3405           Yes     5
## 3406           Yes     2
## 3407           Yes     1
## 3408            No     1
## 3409            No     1
## 3410           Yes     1
## 3411           Yes     2
## 3412            No     1
## 3413            No     1
## 3414           Yes     1
## 3415            No     2
## 3416           Yes     2
## 3417           Yes     2
## 3418           Yes     2
## 3419            No     1
## 3420            No     1
## 3421           Yes     2
## 3422           Yes     1
## 3423           Yes     1
## 3424           Yes     1
## 3425           Yes     2
## 3426           Yes     1
## 3427           Yes     1
## 3428           Yes     2
## 3429            No     1
## 3430           Yes     4
## 3431           Yes     2
## 3432            No     1
## 3433            No     2
## 3434           Yes     2
## 3436           Yes     2
## 3437           Yes     2
## 3438           Yes     2
## 3439            No     2
## 3440           Yes     2
## 3441           Yes     1
## 3442            No     1
## 3443            No     1
## 3444           Yes     1
## 3445           Yes     1
## 3446           Yes     6
## 3447            No     4
## 3448           Yes     1
## 3449           Yes     2
## 3450           Yes     2
## 3451           Yes     1
## 3452           Yes     2
## 3453           Yes     3
## 3454            No     1
## 3455           Yes     1
## 3456            No     1
## 3457           Yes     1
## 3458           Yes     3
## 3459           Yes     2
## 3460           Yes     1
## 3461           Yes     2
## 3462            No     1
## 3463           Yes     1
## 3464            No     4
## 3465           Yes     7
## 3466            No     1
## 3467           Yes     4
## 3468            No     2
## 3469           Yes     1
## 3470           Yes     2
## 3471            No     1
## 3472           Yes     2
## 3473           Yes     3
## 3474            No     2
## 3476            No     2
## 3477            No     3
## 3478            No     1
## 3479           Yes     1
## 3480            No     2
## 3481            No     2
## 3482           Yes     1
## 3484           Yes     1
## 3485            No     1
## 3486           Yes     4
## 3487           Yes     1
## 3488           Yes     1
## 3489           Yes     1
## 3490            No     2
## 3491            No     2
## 3492           Yes     1
## 3493            No     2
## 3494            No     1
## 3495           Yes     2
## 3496           Yes     2
## 3497           Yes     1
## 3498           Yes    12
## 3499           Yes     1
## 3500            No     1
## 3501            No     2
## 3502           Yes     3
## 3503           Yes     4
## 3504            No     1
## 3505           Yes     8
## 3506           Yes     1
## 3508           Yes     2
## 3509           Yes     2
## 3510           Yes     2
## 3511           Yes     2
## 3512            No     1
## 3513            No     3
## 3514           Yes     1
## 3515           Yes     4
## 3516           Yes     1
## 3517           Yes     1
## 3518           Yes     4
## 3519           Yes     1
## 3520            No     2
## 3521            No     1
## 3522            No     1
## 3523           Yes     4
## 3524            No     2
## 3525           Yes     1
## 3526           Yes     3
## 3527            No     1
## 3528           Yes     1
## 3530            No     1
## 3531           Yes     6
## 3532           Yes     1
## 3533           Yes     4
## 3535           Yes     2
## 3536            No     1
## 3537           Yes     3
## 3538           Yes     2
## 3539           Yes     2
## 3540           Yes     3
## 3541           Yes     1
## 3542           Yes     3
## 3543            No     3
## 3545            No     1
## 3546           Yes     2
## 3547           Yes     2
## 3548           Yes     1
## 3549           Yes     1
## 3550           Yes     3
## 3551           Yes     1
## 3552           Yes     1
## 3553           Yes     2
## 3554           Yes     1
## 3555           Yes     2
## 3556            No     1
## 3557           Yes     2
## 3558           Yes     2
## 3559            No     1
## 3560           Yes     1
## 3561           Yes     4
## 3562            No     1
## 3563           Yes     1
## 3564           Yes     2
## 3566           Yes     1
## 3567           Yes     2
## 3568           Yes     2
## 3570           Yes     4
## 3573           Yes     2
## 3574           Yes     2
## 3576           Yes     4
## 3577           Yes     1
## 3578            No     1
## 3579           Yes     2
## 3580            No     1
## 3581           Yes     2
## 3582           Yes     1
## 3583           Yes     2
## 3584            No     1
## 3585            No     2
## 3586            No     1
## 3587           Yes     2
## 3588            No     4
## 3589           Yes     2
## 3591            No     2
## 3592           Yes     5
## 3593            No     1
## 3594           Yes     4
## 3595           Yes     2
## 3596           Yes     2
## 3597           Yes     1
## 3598           Yes     1
## 3599            No     1
## 3600           Yes     1
## 3601           Yes     2
## 3602           Yes     2
## 3603           Yes     2
## 3605           Yes     4
## 3606           Yes     1
## 3608           Yes     1
## 3609            No     2
## 3610            No     1
## 3611           Yes     1
## 3612           Yes     1
## 3613           Yes     1
## 3614           Yes     1
## 3615           Yes     1
## 3616           Yes     1
## 3617           Yes     3
## 3618           Yes     1
## 3619           Yes     1
## 3620            No     1
## 3621            No     1
## 3622           Yes     2
## 3623           Yes     1
## 3624            No     1
## 3625           Yes     2
## 3626           Yes     5
## 3627           Yes     2
## 3628            No     1
## 3629           Yes     5
## 3630           Yes     1
## 3632           Yes     1
## 3633            No     1
## 3634           Yes     1
## 3635           Yes     2
## 3636           Yes     1
## 3637           Yes     2
## 3638            No     1
## 3639            No     1
## 3640            No     2
## 3641           Yes     2
## 3642            No    10
## 3643           Yes     1
## 3644           Yes     1
## 3645           Yes     1
## 3646           Yes     1
## 3647           Yes     4
## 3648           Yes     2
## 3649           Yes     3
## 3651           Yes     4
## 3652           Yes     2
## 3653           Yes     3
## 3654           Yes     2
## 3655           Yes     2
## 3656           Yes     3
## 3657            No     1
## 3658           Yes     1
## 3659           Yes     1
## 3660            No     1
## 3661           Yes     2
## 3662            No     2
## 3663           Yes     1
## 3664            No     1
## 3665           Yes     1
## 3666           Yes     4
## 3667           Yes     1
## 3668           Yes     1
## 3669           Yes     2
## 3671           Yes     1
## 3672           Yes     2
## 3673            No     1
## 3675            No     1
## 3676            No     2
## 3677           Yes    13
## 3678            No     1
## 3679           Yes     2
## 3680           Yes     2
## 3681           Yes     2
## 3682           Yes     1
## 3683           Yes     2
## 3684           Yes     1
## 3685           Yes     2
## 3686            No     1
## 3687           Yes     2
## 3688           Yes     2
## 3689           Yes     1
## 3690           Yes     1
## 3691           Yes     2
## 3692           Yes     2
## 3693           Yes     2
## 3694            No     1
## 3695           Yes     3
## 3696           Yes     1
## 3697           Yes     4
## 3698           Yes     2
## 3699           Yes     1
## 3700           Yes     2
## 3701           Yes     3
## 3702            No     1
## 3703           Yes     1
## 3704           Yes     2
## 3705           Yes     5
## 3706           Yes     2
## 3707           Yes     2
## 3708           Yes     2
## 3709           Yes     1
## 3710           Yes     3
## 3711           Yes     3
## 3712           Yes     5
## 3713            No     2
## 3714           Yes     1
## 3715            No     1
## 3716           Yes     1
## 3717           Yes     2
## 3718            No     1
## 3719           Yes     2
## 3720           Yes     2
## 3721            No     1
## 3722           Yes     1
## 3723           Yes     3
## 3724           Yes     1
## 3725           Yes     1
## 3726            No     2
## 3727           Yes     2
## 3728            No     5
## 3729            No     2
## 3730            No     2
## 3731           Yes     4
## 3732            No     1
## 3733           Yes     8
## 3734           Yes     1
## 3735            No     2
## 3736           Yes     2
## 3737           Yes     2
## 3738           Yes     1
## 3739           Yes     2
## 3740           Yes     4
## 3741            No     1
## 3742           Yes     2
## 3743           Yes     1
## 3744            No     1
## 3745           Yes    14
## 3746           Yes     4
## 3747           Yes     2
## 3748           Yes     6
## 3749           Yes     1
## 3750            No     1
## 3751           Yes     1
## 3752           Yes     4
## 3753            No     2
## 3754           Yes     4
## 3755           Yes     1
## 3756           Yes     2
## 3757           Yes     1
## 3758           Yes     1
## 3759           Yes     2
## 3760            No     1
## 3761           Yes     1
## 3762           Yes     2
## 3763           Yes     1
## 3764           Yes     4
## 3765            No     1
## 3766            No     1
## 3767           Yes     1
## 3769           Yes     2
## 3770           Yes     1
## 3771           Yes     2
## 3772           Yes     1
## 3773           Yes     1
## 3774           Yes     2
## 3775            No     1
## 3776           Yes     1
## 3777            No     1
## 3778           Yes     1
## 3779           Yes     4
## 3780           Yes     2
## 3781           Yes     1
## 3782           Yes     1
## 3783           Yes     1
## 3785           Yes     1
## 3786           Yes     1
## 3787           Yes     1
## 3788            No     1
## 3789           Yes     2
## 3790           Yes     2
## 3791           Yes     2
## 3792            No     1
## 3793            No     1
## 3794           Yes     1
## 3795            No     2
## 3796            No     1
## 3797            No     1
## 3798           Yes     2
## 3799           Yes     2
## 3800           Yes     1
## 3801            No     2
## 3802           Yes     1
## 3803           Yes     4
## 3805            No     1
## 3806            No     1
## 3807           Yes     1
## 3808           Yes     2
## 3809           Yes     1
## 3810            No     1
## 3811           Yes     4
## 3812           Yes     1
## 3813           Yes     2
## 3814           Yes     1
## 3815           Yes     2
## 3816           Yes     1
## 3817           Yes     2
## 3818           Yes     5
## 3819            No     2
## 3820           Yes     1
## 3821           Yes     1
## 3822           Yes     1
## 3823            No     1
## 3824           Yes     1
## 3825            No     1
## 3826           Yes     2
## 3827           Yes     3
## 3828            No     1
## 3829           Yes     2
## 3830           Yes     1
## 3831           Yes     2
## 3832           Yes     3
## 3833           Yes     1
## 3834           Yes     1
## 3835           Yes     2
## 3836           Yes     2
## 3837           Yes     1
## 3838           Yes     2
## 3839            No     1
## 3840            No     1
## 3841            No     1
## 3842           Yes     6
## 3843           Yes     2
## 3844            No     2
## 3845           Yes     1
## 3847           Yes     1
## 3848           Yes     6
## 3849            No     3
## 3850            No     1
## 3851           Yes     1
## 3852           Yes     2
## 3853           Yes     3
## 3855            No     2
## 3856            No     3
## 3857           Yes     2
## 3858            No     2
## 3859           Yes     2
## 3860           Yes     2
## 3863           Yes     2
## 3864           Yes     1
## 3865           Yes     1
## 3866            No     1
## 3867           Yes     2
## 3868            No     2
## 3869            No     1
## 3870           Yes     8
## 3871           Yes     1
## 3872            No     2
## 3873           Yes     1
## 3874           Yes     2
## 3875           Yes     1
## 3876           Yes     1
## 3877           Yes     2
## 3878            No     2
## 3879           Yes     3
## 3880           Yes     8
## 3882            No     1
## 3883           Yes     1
## 3884            No     2
## 3885           Yes     1
## 3886            No     4
## 3887           Yes     1
## 3888           Yes     2
## 3889            No     1
## 3891           Yes     1
## 3892           Yes     2
## 3893            No     2
## 3894            No     3
## 3895           Yes     1
## 3896           Yes     5
## 3897           Yes     2
## 3898           Yes     2
## 3900            No     2
## 3901            No     2
## 3902            No     1
## 3903           Yes     1
## 3905           Yes     2
## 3906           Yes     1
## 3907            No     4
## 3908            No     1
## 3909            No     1
## 3910            No     3
## 3911            No     1
## 3912            No     1
## 3913           Yes     1
## 3914           Yes     1
## 3915           Yes     1
## 3916            No     1
## 3917            No     1
## 3918           Yes     2
## 3919           Yes     1
## 3920            No     1
## 3921           Yes     2
## 3922           Yes     2
## 3923            No     2
## 3924           Yes     2
## 3925           Yes     7
## 3926           Yes     4
## 3927            No     1
## 3928           Yes     1
## 3929           Yes     2
## 3930           Yes     1
## 3931           Yes     2
## 3932           Yes     1
## 3934           Yes     1
## 3935           Yes     1
## 3936           Yes     2
## 3937           Yes     2
## 3938           Yes     2
## 3939           Yes     6
## 3940           Yes     1
## 3941           Yes     1
## 3942           Yes    16
## 3943           Yes     1
## 3944           Yes     4
## 3945           Yes     1
## 3946           Yes    10
## 3947           Yes     1
## 3948           Yes     2
## 3949           Yes     1
## 3951            No     1
## 3952           Yes     1
## 3953            No     3
## 3954           Yes     2
## 3955           Yes     2
## 3956           Yes     4
## 3957           Yes     2
## 3958           Yes     2
## 3959           Yes     1
## 3960           Yes     4
## 3961            No     2
## 3963           Yes     3
## 3964           Yes     2
## 3966           Yes     2
## 3967           Yes     2
## 3969           Yes     4
## 3970           Yes     2
## 3971           Yes     1
## 3972           Yes     1
## 3973            No     1
## 3974           Yes     1
## 3975            No     1
## 3976           Yes     2
## 3977            No     2
## 3978           Yes     2
## 3979           Yes     1
## 3980           Yes     2
## 3981           Yes     1
## 3982           Yes     1
## 3983           Yes     1
## 3984           Yes     2
## 3985            No     1
## 3986           Yes     2
## 3987           Yes     2
## 3988           Yes     3
## 3989           Yes     2
## 3990            No     1
## 3991           Yes     2
## 3992            No     2
## 3993            No     1
## 3994           Yes     1
## 3995           Yes     2
## 3996            No     1
## 3997           Yes     1
## 3998           Yes     2
## 3999           Yes     2
## 4000           Yes     2
## 4001           Yes     2
## 4002           Yes     1
## 4003           Yes     2
## 4004           Yes     1
## 4007           Yes     1
## 4008           Yes     3
## 4009            No     1
## 4010           Yes     1
## 4012            No     1
## 4013           Yes     1
## 4014            No     2
## 4015            No     1
## 4016           Yes     3
## 4017            No     2
## 4018           Yes     1
## 4019            No     1
## 4020           Yes     2
## 4021            No     2
## 4022            No     2
## 4023            No     1
## 4025           Yes     2
## 4027           Yes     1
## 4028           Yes    20
## 4029            No     1
## 4030           Yes     1
## 4031           Yes     6
## 4032            No     1
## 4033            No     2
## 4034           Yes     1
## 4035           Yes     2
## 4036           Yes     1
## 4037            No     1
## 4038           Yes     4
## 4039           Yes     1
## 4040           Yes     2
## 4041           Yes     1
## 4042           Yes     2
## 4043            No     1
## 4044           Yes     2
## 4045            No     1
## 4046           Yes     2
## 4047           Yes     2
## 4048           Yes     2
## 4049            No     2
## 4050            No     1
## 4051            No     2
## 4052           Yes     5
## 4053           Yes     2
## 4054           Yes     2
## 4055           Yes     1
## 4056            No     2
## 4057           Yes     5
## 4058           Yes     4
## 4059            No     1
## 4060            No     1
## 4061           Yes     4
## 4062            No     1
## 4063           Yes     2
## 4064           Yes     2
## 4065           Yes     1
## 4066           Yes     1
## 4067            No     1
## 4068            No     2
## 4069           Yes     1
## 4070           Yes     2
## 4071            No     1
## 4072            No     1
## 4073           Yes     3
## 4075            No     2
## 4076            No     2
## 4077            No     1
## 4078            No     1
## 4079           Yes     1
## 4080           Yes     2
## 4081           Yes     2
## 4082           Yes     1
## 4083           Yes     5
## 4084           Yes     1
## 4085            No     2
## 4086            No     1
## 4088           Yes     1
## 4089            No     1
## 4090            No     1
## 4091           Yes     3
## 4092           Yes     2
## 4093            No     2
## 4094           Yes     4
## 4095           Yes     2
## 4096            No     3
## 4097           Yes     2
## 4098           Yes     2
## 4099           Yes     3
## 4100            No     1
## 4102           Yes     1
## 4103           Yes     2
## 4104           Yes     2
## 4105           Yes     1
## 4106           Yes     2
## 4107           Yes     1
## 4108           Yes     2
## 4109           Yes     2
## 4111           Yes     1
## 4112           Yes     2
## 4113           Yes     4
## 4114           Yes     3
## 4115           Yes     1
## 4116            No     4
## 4117           Yes     6
## 4118            No     1
## 4119           Yes     1
## 4120           Yes     1
## 4122           Yes     1
## 4123           Yes     1
## 4124            No     2
## 4125           Yes     1
## 4126           Yes     1
## 4127           Yes     1
## 4128           Yes     3
## 4129            No     2
## 4130           Yes     2
## 4131           Yes     6
## 4132           Yes     2
## 4133            No     1
## 4134            No     1
## 4135           Yes     2
## 4136           Yes     2
## 4137           Yes     2
## 4138           Yes     2
## 4139           Yes     1
## 4140           Yes     5
## 4141           Yes     1
## 4142            No     1
## 4143           Yes     1
## 4144            No     1
## 4145            No     1
## 4146           Yes     1
## 4147            No     1
## 4148            No     2
## 4149            No     1
## 4150            No     1
## 4151            No     2
## 4152           Yes     2
## 4153           Yes     1
## 4154           Yes     1
## 4155            No     2
## 4156           Yes     2
## 4157           Yes     3
## 4159           Yes     2
## 4160            No     1
## 4161           Yes     2
## 4162            No     1
## 4163            No     1
## 4164           Yes     2
## 4165           Yes     1
## 4166           Yes     3
## 4167            No     1
## 4168            No     2
## 4169           Yes     4
## 4170           Yes     2
## 4171           Yes     3
## 4172           Yes     1
## 4173           Yes     2
## 4174            No     2
## 4175            No     4
## 4176           Yes     1
## 4177           Yes     1
## 4178            No     1
## 4179           Yes     1
## 4180           Yes     1
## 4181           Yes     1
## 4182           Yes     2
## 4183            No     1
## 4184           Yes     2
## 4185           Yes     1
## 4186           Yes     2
## 4187           Yes     2
## 4188           Yes     1
## 4189            No     1
## 4190           Yes     2
## 4191            No     2
## 4192            No     2
## 4193            No     1
## 4194           Yes     2
## 4195           Yes     1
## 4196            No     5
## 4197           Yes     2
## 4198           Yes     2
## 4199           Yes     2
## 4200            No     1
## 4201           Yes     1
## 4202           Yes     2
## 4203            No     2
## 4204           Yes     3
## 4205           Yes     2
## 4206           Yes     3
## 4207           Yes     2
## 4208           Yes     2
## 4209           Yes     1
## 4210           Yes     1
## 4211            No     4
## 4212           Yes     2
## 4213            No     2
## 4214           Yes     2
## 4215           Yes     4
## 4216           Yes     3
## 4218           Yes     1
## 4219           Yes     2
## 4220           Yes     2
## 4221           Yes     1
## 4222           Yes     6
## 4223            No     1
## 4224           Yes     4
## 4225           Yes     2
## 4226           Yes     1
## 4227           Yes     2
## 4228           Yes     1
## 4229           Yes     2
## 4230           Yes     3
## 4231           Yes     5
## 4232            No     5
## 4233           Yes     2
## 4234           Yes     4
## 4235           Yes     3
## 4236           Yes     2
## 4238           Yes     9
## 4239           Yes     2
## 4240            No     1
## 4241           Yes     2
## 4242           Yes     1
## 4243           Yes     2
## 4244            No     1
## 4245           Yes     4
## 4246           Yes     1
## 4247           Yes     2
## 4248           Yes     2
## 4249            No    11
## 4250           Yes     2
## 4251            No     1
## 4252           Yes     1
## 4253           Yes     1
## 4254           Yes     1
## 4255            No     1
## 4256           Yes     1
## 4257           Yes     2
## 4258           Yes     1
## 4259           Yes     1
## 4260            No     4
## 4261           Yes     1
## 4262           Yes     3
## 4263           Yes     1
## 4264           Yes     2
## 4265           Yes     2
## 4266            No     1
## 4267            No     1
## 4268            No     2
## 4269           Yes     1
## 4270           Yes     2
## 4271           Yes     1
## 4272           Yes     1
## 4273            No     1
## 4274           Yes     1
## 4275            No     2
## 4276           Yes     3
## 4277           Yes     2
## 4278            No     2
## 4279           Yes     2
## 4280            No     1
## 4281           Yes     2
## 4282           Yes     1
## 4283            No     2
## 4284           Yes     2
## 4285           Yes     2
## 4286           Yes     3
## 4287           Yes     1
## 4288           Yes     4
## 4289           Yes     2
## 4290           Yes     2
## 4291           Yes     1
## 4292           Yes     1
## 4293           Yes     1
## 4294           Yes     2
## 4295            No     1
## 4296           Yes     1
## 4297           Yes     4
## 4298            No     2
## 4299           Yes     2
## 4300           Yes     2
## 4301           Yes     1
## 4302           Yes     1
## 4303            No     1
## 4304           Yes     2
## 4305           Yes     2
## 4306           Yes     2
## 4307           Yes     2
## 4308            No     2
## 4309            No     1
## 4310           Yes     2
## 4311           Yes     4
## 4312           Yes     1
## 4313           Yes     3
## 4315            No     2
## 4316           Yes     4
## 4317           Yes     3
## 4318           Yes     2
## 4319           Yes     2
## 4320           Yes     3
## 4321           Yes     2
## 4323           Yes     2
## 4324            No     1
## 4325            No     4
## 4326            No     3
## 4327           Yes     2
## 4328            No     1
## 4329           Yes     2
## 4330            No     1
## 4331            No     3
## 4332            No     1
## 4333           Yes     1
## 4335           Yes     1
## 4336           Yes     2
## 4337           Yes     3
## 4338           Yes     1
## 4341           Yes     2
## 4342           Yes     4
## 4343            No     1
## 4344           Yes     1
## 4345           Yes     2
## 4346           Yes     2
## 4347            No     2
## 4348           Yes     1
## 4349           Yes     2
## 4350           Yes     1
## 4351           Yes     2
## 4352            No     1
## 4353            No     1
## 4354           Yes     2
## 4355           Yes     1
## 4356            No     1
## 4357           Yes     1
## 4358            No     1
## 4359            No     2
## 4360           Yes     1
## 4361           Yes    12
## 4362           Yes     1
## 4364           Yes     1
## 4365            No     1
## 4366           Yes     1
## 4367            No     2
## 4368           Yes     1
## 4369            No     1
## 4370            No     1
## 4371           Yes     1
## 4372           Yes     2
## 4373           Yes     2
## 4374           Yes     2
## 4376           Yes     3
## 4377           Yes     3
## 4378           Yes     3
## 4379            No     1
## 4380           Yes     1
## 4381            No     1
## 4382           Yes     4
## 4383            No     1
## 4384           Yes     1
## 4385           Yes     1
## 4386           Yes     2
## 4387           Yes     1
## 4388           Yes     2
## 4389            No     2
## 4390            No     1
## 4391           Yes     2
## 4392           Yes     2
## 4393           Yes     2
## 4394           Yes     2
## 4395           Yes     1
## 4396            No     2
## 4397           Yes     4
## 4398           Yes     2
## 4400           Yes     1
## 4401            No     1
## 4403           Yes     2
## 4404           Yes     2
## 4405           Yes     2
## 4406           Yes     2
## 4407           Yes     2
## 4408           Yes     2
## 4409            No     1
## 4410           Yes     2
## 4411            No     1
## 4412           Yes     2
## 4413           Yes     1
## 4414           Yes     1
## 4415           Yes     1
## 4416            No     2
## 4417           Yes     2
## 4418           Yes     2
## 4419            No     1
## 4420            No     1
## 4421           Yes     2
## 4423            No     1
## 4424           Yes     1
## 4425           Yes     4
## 4426            No     1
## 4427           Yes     2
## 4428           Yes     1
## 4429            No     1
## 4430           Yes     1
## 4431           Yes     2
## 4432           Yes     2
## 4433           Yes     2
## 4434            No     2
## 4435           Yes     1
## 4436           Yes     1
## 4437           Yes     1
## 4438           Yes     2
## 4439           Yes     6
## 4440           Yes     2
## 4441            No     2
## 4442           Yes     1
## 4443           Yes     1
## 4444           Yes     1
## 4445           Yes     1
## 4447           Yes     2
## 4448           Yes     2
## 4450           Yes     1
## 4451           Yes     2
## 4452           Yes     2
## 4453           Yes     2
## 4454           Yes     2
## 4455            No     1
## 4456            No     1
## 4457           Yes     3
## 4458           Yes     2
## 4459           Yes     4
## 4460           Yes     2
## 4461           Yes     2
## 4463           Yes     2
## 4464            No     4
## 4465            No     1
## 4466           Yes     2
## 4467            No     1
## 4468           Yes     4
## 4469            No     1
## 4470           Yes     1
## 4471           Yes     3
## 4472           Yes     1
## 4473           Yes     1
## 4474           Yes     2
## 4475            No     2
## 4476           Yes     4
## 4477           Yes     3
## 4478            No     1
## 4479           Yes     2
## 4480           Yes     2
## 4481           Yes     1
## 4482           Yes     2
## 4483           Yes     2
## 4484            No     3
## 4485           Yes     2
## 4486            No     2
## 4487            No     1
## 4488           Yes     2
## 4489           Yes     2
## 4490            No     1
## 4491           Yes     1
## 4492           Yes     2
## 4493            No     1
## 4494           Yes     1
## 4495            No     1
## 4496            No     2
## 4497           Yes     1
## 4498           Yes     2
## 4499           Yes     2
## 4500           Yes     2
## 4501           Yes     1
## 4502           Yes     3
## 4503           Yes     2
## 4504           Yes     1
## 4505           Yes     1
## 4506           Yes     2
## 4507           Yes    13
## 4508           Yes     1
## 4509           Yes     2
## 4510           Yes     1
## 4511            No     1
## 4512           Yes     1
## 4513           Yes     1
## 4514            No     2
## 4515            No     2
## 4516            No     2
## 4517           Yes     1
## 4518            No     1
## 4519           Yes     1
## 4520           Yes     1
## 4521           Yes     2
## 4522            No     1
## 4523           Yes     1
## 4524           Yes     4
## 4525           Yes     5
## 4526           Yes     1
## 4527           Yes     1
## 4528            No     1
## 4529            No     1
## 4530            No     4
## 4531            No     1
## 4532           Yes     2
## 4533           Yes     1
## 4534           Yes     1
## 4536           Yes     2
## 4537           Yes     1
## 4538           Yes     2
## 4539           Yes     2
## 4540            No     2
## 4541           Yes     2
## 4542            No     2
## 4543            No     2
## 4544            No     1
## 4545           Yes     2
## 4546            No     1
## 4547           Yes     5
## 4548           Yes     4
## 4549           Yes     2
## 4551           Yes     1
## 4552            No     3
## 4553           Yes     2
## 4554           Yes     1
## 4555           Yes     2
## 4557           Yes     4
## 4558           Yes     1
## 4559            No     1
## 4560            No     1
## 4561           Yes     2
## 4562           Yes     1
## 4563            No     1
## 4564           Yes     1
## 4565           Yes     2
## 4566           Yes     1
## 4567            No     4
## 4568            No    11
## 4569            No     1
## 4570           Yes     1
## 4572           Yes     2
## 4573           Yes     1
## 4574           Yes     2
## 4575           Yes     1
## 4576            No     1
## 4577           Yes     1
## 4578           Yes     1
## 4579           Yes     2
## 4581            No     1
## 4582            No     1
## 4583           Yes     2
## 4584           Yes     2
## 4585            No     4
## 4586           Yes     1
## 4587            No     2
## 4588           Yes     1
## 4589            No     2
## 4590            No     1
## 4591           Yes     2
## 4592           Yes     2
## 4594           Yes    15
## 4595           Yes     2
## 4596           Yes     7
## 4597           Yes     2
## 4598            No     5
## 4599            No     2
## 4600           Yes     1
## 4601           Yes     2
## 4602           Yes     1
## 4603           Yes     2
## 4604            No     1
## 4605           Yes     1
## 4606           Yes     2
## 4608           Yes     3
## 4609           Yes     1
## 4610            No     2
## 4611           Yes     2
## 4612            No     1
## 4613           Yes     1
## 4614           Yes     4
## 4616           Yes     1
## 4617           Yes     2
## 4618           Yes     2
## 4619           Yes     4
## 4620            No     1
## 4621           Yes     2
## 4622           Yes     1
## 4623            No     1
## 4624           Yes     2
## 4625            No     1
## 4626           Yes     7
## 4627           Yes     1
## 4628            No     1
## 4630           Yes     2
## 4631           Yes     1
## 4632            No     1
## 4633            No     1
## 4634            No     2
## 4635            No     1
## 4636           Yes     3
## 4637           Yes     1
## 4638           Yes     2
## 4639           Yes     2
## 4640           Yes     1
## 4641           Yes     3
## 4642           Yes     2
## 4643           Yes     1
## 4645           Yes     1
## 4646           Yes     1
## 4647           Yes     1
## 4648           Yes     2
## 4649           Yes     3
## 4650            No     4
## 4651           Yes     1
## 4652           Yes     3
## 4654            No     2
## 4655           Yes     2
## 4656           Yes     2
## 4658            No     1
## 4659           Yes     1
## 4660            No     1
## 4661           Yes     2
## 4662           Yes     2
## 4663           Yes     2
## 4664           Yes     1
## 4665           Yes     2
## 4666           Yes     4
## 4667           Yes     2
## 4668           Yes     2
## 4669           Yes     3
## 4670            No     1
## 4671           Yes     1
## 4672           Yes     2
## 4673           Yes     2
## 4674           Yes     1
## 4675           Yes     1
## 4676            No     2
## 4677           Yes     1
## 4678           Yes     2
## 4679            No     2
## 4680           Yes     2
## 4681            No     4
## 4682           Yes     1
## 4683            No     1
## 4684            No     2
## 4685           Yes     2
## 4686           Yes     1
## 4687            No     1
## 4688           Yes     1
## 4689           Yes     2
## 4690           Yes     1
## 4691           Yes     2
## 4692           Yes     4
## 4693            No     1
## 4694           Yes     1
## 4695           Yes     5
## 4696            No     1
## 4697           Yes     1
## 4698           Yes     2
## 4699            No     1
## 4700           Yes     1
## 4701           Yes     1
## 4702           Yes     2
## 4703            No     2
## 4704           Yes     1
## 4705           Yes     2
## 4706           Yes     1
## 4707            No     1
## 4708            No     1
## 4709           Yes     1
## 4711           Yes     4
## 4712            No     1
## 4713           Yes     2
## 4714           Yes     2
## 4715           Yes     2
## 4717           Yes     5
## 4718           Yes     6
## 4719           Yes     2
## 4720           Yes     1
## 4721           Yes     2
## 4722           Yes     1
## 4723            No     2
## 4724           Yes     2
## 4725            No     1
## 4726           Yes     5
## 4727           Yes     1
## 4728           Yes     1
## 4729           Yes     2
## 4730           Yes     2
## 4731            No     2
## 4732            No     4
## 4733            No     1
## 4734           Yes     2
## 4735           Yes     1
## 4736           Yes     2
## 4737           Yes     3
## 4738           Yes     4
## 4739           Yes     1
## 4740           Yes     1
## 4741            No     2
## 4742            No     2
## 4743            No     1
## 4744           Yes     2
## 4745           Yes     1
## 4746           Yes     2
## 4747            No     1
## 4748           Yes     2
## 4749            No     1
## 4750           Yes     1
## 4751            No     2
## 4752           Yes     2
## 4753           Yes     3
## 4754            No     2
## 4755           Yes     1
## 4756           Yes     4
## 4757            No     1
## 4758           Yes     1
## 4759           Yes     2
## 4760           Yes     1
## 4761           Yes     4
## 4762           Yes     1
## 4763           Yes     2
## 4764           Yes     5
## 4765           Yes     4
## 4766           Yes     2
## 4767           Yes     1
## 4768           Yes     2
## 4769           Yes     1
## 4770           Yes     2
## 4771           Yes     2
## 4772           Yes     2
## 4773            No     2
## 4774           Yes     1
## 4775           Yes     2
## 4776           Yes     1
## 4777           Yes     2
## 4778           Yes     1
## 4780           Yes     5
## 4781           Yes     2
## 4782           Yes     1
## 4783           Yes     1
## 4784           Yes     1
## 4785           Yes     1
## 4786            No     1
## 4788           Yes     3
## 4789            No     1
## 4790            No     1
## 4791           Yes     2
## 4792            No     1
## 4793           Yes     1
## 4794            No     3
## 4795           Yes     2
## 4796           Yes     4
## 4797           Yes     2
## 4798           Yes     3
## 4799           Yes     2
## 4800           Yes     2
## 4801            No     2
## 4802           Yes     1
## 4803           Yes     1
## 4804           Yes     3
## 4806           Yes     2
## 4808           Yes     2
## 4810           Yes     2
## 4811            No     1
## 4812            No     2
## 4813            No     2
## 4815           Yes     3
## 4816           Yes     4
## 4817            No     1
## 4818           Yes     2
## 4819            No     1
## 4822            No     1
## 4823           Yes     1
## 4824            No     1
## 4825           Yes     2
## 4826           Yes     2
## 4827           Yes     4
## 4828           Yes     4
## 4829           Yes     2
## 4830           Yes     1
## 4831           Yes     2
## 4832           Yes     2
## 4833            No     1
## 4834            No     1
## 4835           Yes     2
## 4836            No     1
## 4837            No    27
## 4838            No     1
## 4839           Yes     1
## 4840           Yes     4
## 4842           Yes     2
## 4843           Yes     2
## 4844           Yes     2
## 4845            No     2
## 4846           Yes     2
## 4847           Yes     1
## 4848           Yes     2
## 4849            No     1
## 4850           Yes     2
## 4851            No     1
## 4852           Yes     1
## 4853            No     1
## 4854           Yes     2
## 4855           Yes     2
## 4856           Yes     1
## 4857            No     1
## 4858           Yes     3
## 4859           Yes     2
## 4860            No     1
## 4861           Yes     2
## 4862            No     1
## 4863           Yes     2
## 4865            No     1
## 4866           Yes     1
## 4867            No     1
## 4868           Yes     2
## 4869           Yes     1
## 4870           Yes     3
## 4871           Yes     3
## 4872           Yes     2
## 4874           Yes     2
## 4875           Yes     1
## 4876           Yes     2
## 4877            No     1
## 4878           Yes     2
## 4879           Yes     1
## 4880            No     1
## 4881           Yes     2
## 4882           Yes     2
## 4883           Yes     2
## 4884           Yes     2
## 4885           Yes     2
## 4886           Yes     1
## 4887            No     1
## 4888           Yes     2
## 4889           Yes     2
## 4890           Yes     2
## 4891            No     1
## 4892           Yes     1
## 4893            No     2
## 4894           Yes     2
## 4896           Yes     2
## 4897           Yes     2
## 4898           Yes     1
## 4899            No     1
## 4900           Yes     7
## 4901           Yes     2
## 4902           Yes     2
## 4903            No     3
## 4904           Yes     6
## 4905            No     1
## 4906            No     3
## 4907           Yes     1
## 4908           Yes     1
## 4909           Yes     1
## 4910            No     6
## 4911           Yes     2
## 4912           Yes     2
## 4913           Yes     1
## 4914           Yes     1
## 4916           Yes     2
## 4917           Yes     1
## 4918           Yes     2
## 4919           Yes     1
## 4920            No     1
## 4921            No     1
## 4922           Yes     2
## 4923           Yes     4
## 4924           Yes     2
## 4925           Yes     1
## 4926           Yes     1
## 4927            No     1
## 4928            No     1
## 4929            No     1
## 4930           Yes     2
## 4931           Yes     2
## 4932            No     6
## 4933           Yes     2
## 4934           Yes     2
## 4936           Yes     2
## 4937           Yes     5
## 4938           Yes     2
## 4939           Yes     1
## 4940            No     1
## 4941           Yes     2
## 4942           Yes     1
## 4944           Yes     2
## 4945            No     1
## 4946           Yes     2
## 4947           Yes     2
## 4948            No     3
## 4949           Yes     1
## 4950           Yes     2
## 4951           Yes    23
## 4952           Yes     2
## 4953           Yes     2
## 4954           Yes     1
## 4956            No     1
## 4957            No     2
## 4959           Yes     1
## 4960            No     1
## 4961           Yes     1
## 4962           Yes     2
## 4963           Yes     1
## 4964           Yes     1
## 4965           Yes     1
## 4966           Yes     1
## 4967           Yes     1
## 4968           Yes     4
## 4969           Yes     2
## 4970           Yes     2
## 4972           Yes     1
## 4973            No     4
## 4974            No     1
## 4975            No     1
## 4976           Yes     1
## 4977            No     8
## 4978            No     1
## 4979            No     1
## 4980            No     2
## 4981           Yes     2
## 4982           Yes     1
## 4983            No     1
## 4984           Yes     2
## 4985           Yes     5
## 4986            No     2
## 4987            No     1
## 4988           Yes     3
## 4989           Yes     2
## 4990           Yes     2
## 4991           Yes     2
## 4993            No     1
## 4994            No     3
## 4995           Yes     1
## 4996           Yes     5
## 4997           Yes     1
## 4998           Yes     2
## 4999            No     1
## 5000           Yes     2
## 5001           Yes     1
## 5002           Yes     1
## 5003           Yes     2
## 5004            No     1
## 5005           Yes     4
## 5006            No     1
## 5007           Yes     1
## 5008           Yes     4
## 5009           Yes     3
## 5010           Yes     2
## 5011           Yes     2
## 5012           Yes     2
## 5013           Yes     2
## 5014           Yes     3
## 5017            No     4
## 5018           Yes     1
## 5019           Yes    10
## 5021           Yes     3
## 5022            No     1
## 5023            No     1
## 5024            No     2
## 5025            No     2
## 5026            No     1
## 5027            No     2
## 5028           Yes     1
## 5029           Yes     2
## 5030            No     1
## 5031           Yes     2
## 5032            No     1
## 5033            No     1
## 5034           Yes     1
## 5035           Yes     1
## 5036           Yes     2
## 5037           Yes     1
## 5038            No     1
## 5039           Yes     1
## 5040           Yes     2
## 5041           Yes     4
## 5042           Yes     2
## 5043           Yes     2
## 5044           Yes     2
## 5045           Yes     4
## 5046           Yes     2
## 5047            No     4
## 5048           Yes     1
## 5049            No     1
## 5050           Yes     2
## 5051           Yes     4
## 5052            No     1
## 5053            No     1
## 5054           Yes     2
## 5055           Yes     1
## 5056           Yes     4
## 5057            No     2
## 5058           Yes     9
## 5059           Yes     2
## 5060            No     1
## 5061           Yes     2
## 5062           Yes     2
## 5063           Yes     2
## 5064            No     1
## 5065           Yes     4
## 5066            No     1
## 5067            No     1
## 5068           Yes     1
## 5070           Yes     2
## 5071           Yes     2
## 5072            No     1
## 5073            No     1
## 5074            No     1
## 5075            No     2
## 5076            No     1
## 5077           Yes     1
## 5078           Yes     3
## 5079            No     1
## 5080           Yes     3
## 5081            No     4
## 5082           Yes     7
## 5083           Yes     1
## 5085           Yes     2
## 5086           Yes     1
## 5087           Yes     1
## 5088            No     2
## 5089            No     1
## 5090            No     1
## 5091            No     1
## 5092           Yes     2
## 5093           Yes     2
## 5094           Yes     1
## 5095           Yes     2
## 5096           Yes     2
## 5097           Yes     1
## 5098           Yes     1
## 5099           Yes     1
## 5100           Yes     1
## 5101            No     6
##  [ reached 'max' / getOption("max.print") -- omitted 1007 rows ]
cat_col_Train <- c( 'country', 'age_group', 'travel_with', 'purpose',
       'main_activity', 'info_source', 'tour_arrangement',
       'package_transport_int', 'package_accomodation', 'package_food',
       'package_transport_tz', 'package_sightseeing', 'package_guided_tour',
       'package_insurance', 'first_trip_tz', 'cost_category')
cat_col_Test <- c( 'country', 'age_group', 'travel_with', 'purpose',
       'main_activity', 'info_source', 'tour_arrangement',
       'package_transport_int', 'package_accomodation', 'package_food',
       'package_transport_tz', 'package_sightseeing', 'package_guided_tour',
       'package_insurance', 'first_trip_tz')
library(CatEncoders)
## Warning: package 'CatEncoders' was built under R version 4.1.3
## 
## Attaching package: 'CatEncoders'
## The following object is masked from 'package:base':
## 
##     transform
cat_data_Train <- Train[cat_col_Train]
lenc <- sapply(Train[cat_col_Train],function(x) LabelEncoder.fit(x))
            for (i in cat_col_Train){
                 cat_data_Train[[i]] <- transform(lenc[[i]],Train[[i]])
            }
cat_data_Test <- Test[cat_col_Test]
lenc <- sapply(Test[cat_col_Test],function(x) LabelEncoder.fit(x))
            for (i in cat_col_Test){
                 cat_data_Test[[i]] <- transform(lenc[[i]],Test[[i]])
            }
cat_data_Train
##      country age_group travel_with purpose main_activity info_source
## 1         54         3           2       7             1           1
## 2        123         2           4       2            10           8
## 3        124         4           4       2             9           8
## 4         96         2           5       2             1           5
## 5        124         3           1       2             9           8
## 6         41         2           4       2             9           3
## 7        112         2           4       2            10           3
## 8         84         2           1       2             5           8
## 9        123         1           1       2             5           1
## 10         6         3           4       2             9           8
## 11       123         1           1       2             1           8
## 12        41         3           5       2            10           1
## 13       107         3           5       2             9           8
## 14        41         2           4       2             9           8
## 15        31         3           1       2             2           1
## 16        11         3           1       2             9           1
## 17       129         2           1       1             7           1
## 18        81         2           4       2            10           8
## 19        21         3           1       2             9           8
## 20       123         2           1       1             9           5
## 21        49         2           1       2             1           3
## 22        85         2           1       6             5           1
## 23       124         4           1       6             7           4
## 24       123         3           1       2             9           8
## 26        77         2           3       2             9           5
## 27        23         2           1       2             1           1
## 28       130         3           1       1             7           1
## 29        54         1           4       7             5           1
## 30        21         3           3       2             9           8
## 31       124         2           4       2            10           8
## 32        44         1           3       7             5           1
## 33        44         3           3       4             1           1
## 34       123         3           1       4             1           8
## 35        23         2           4       2             9           8
## 36       106         3           4       2            10           3
## 37       124         2           1       1             9           5
## 38       106         1           4       2             5           8
## 39       129         3           1       1             9           1
## 40       123         2           3       2             9           8
## 41       129         2           1       1             5           1
## 42         6         3           4       2            10           8
## 43       123         1           1       1             2           5
## 44       124         2           1       2             4           1
## 45        44         2           4       2             9           1
## 46        57         1           1       2             9           8
## 47       130         2           1       1             8           1
## 48       119         2           2       2             9           8
## 49        95         2           1       2             1           1
## 50       124         3           1       2             4           8
## 51       124         4           4       7             9           1
## 52       123         1           3       7            10           1
## 53       123         2           5       2             9           8
## 54       112         3           1       7             1           8
## 55        44         2           1       1            10           8
## 56       123         2           1       7             1           1
## 57       124         4           1       2             9           8
## 58        59         1           1       1             7           1
## 59       124         3           4       2             9           1
## 60       130         3           1       7            10           1
## 61        46         3           3       8             7           1
## 62       123         3           5       2            10           8
## 63        91         3           4       2             9           8
## 64        54         2           5       2            10           3
## 65       129         3           4       1             3           3
## 66         7         3           3       7             8           1
## 67       106         2           3       2             2           8
## 68        71         2           1       4             9           1
## 69         6         3           4       2             9           1
## 70        41         2           3       2            10           1
## 71        11         3           2       2             4           3
## 72        71         3           3       1             9           4
## 73        30         2           3       2             5           1
## 74        54         2           3       1             9           5
## 75       124         3           1       2            10           1
## 76        44         2           3       2             1           1
## 77       124         4           4       2             9           8
## 78         6         3           2       2             9           8
## 79       123         4           1       2             9           8
## 80       123         1           1       8             4           8
## 81       123         3           1       2             4           8
## 83       123         2           2       7             1           1
## 84        84         2           1       4             8           4
## 85        85         2           3       4             9           3
## 86        54         4           3       2             1           8
## 87       106         2           5       2             1           8
## 88        44         3           4       2             1           1
## 89        21         2           2       7             1           1
## 90       129         2           1       1             1           1
## 91        59         3           3       4             4           3
## 92       112         3           4       2             4           8
## 93        60         2           1       2             9           8
## 94       124         2           1       2             5           8
## 96        49         3           1       7             1           8
## 97        34         2           1       7             5           1
## 98       124         4           4       2             9           8
## 99        31         1           1       2             5           1
## 100      106         3           5       7             9           1
## 101       59         2           2       2            10           4
## 102       29         2           4       2             9           6
## 103       59         3           1       2             9           4
## 104      123         3           1       1             7           1
## 105       54         2           4       2             1           8
## 106      124         2           3       2             4           1
## 107        7         3           3       2             9           8
## 108       54         2           4       2             4           8
## 109      124         3           4       2             9           8
## 110        6         2           1       2             4           8
## 111       41         3           5       2             1           3
## 112      107         2           1       1             9           8
## 113      130         2           1       2             1           1
## 114      124         4           2       2             9           8
## 115      124         2           4       7            10           1
## 117      124         1           3       2             4           5
## 118       44         3           4       2            10           8
## 119       54         3           1       2             9           8
## 120      106         3           1       1             9           4
## 121       41         2           1       2             4           8
## 123      124         2           1       2             9           1
## 124      130         2           1       2             1           8
## 125       61         3           1       2             9           1
## 126      129         2           3       1             1           1
## 127       96         1           1       2             9           8
## 128      129         2           1       1             1           4
## 129      124         4           4       2             9           8
## 130       11         3           2       2             9           8
## 131      129         2           1       1             8           4
## 132       44         4           1       2             9           8
## 133       15         2           1       2             9           3
## 134      123         1           3       7             7           1
## 135       44         3           5       2             9           8
## 136       22         1           3       2             5           8
## 138       54         3           1       2             5           8
## 139       46         3           4       2             1           4
## 140      106         2           4       4            10           8
## 141      106         2           4       2             1           8
## 142       16         2           1       7             7           1
## 143       54         2           4       2             1           8
## 144      123         2           1       2             9           5
## 145      123         1           1       2             4           8
## 146      122         2           1       2             7           1
## 147       41         2           3       2             4           5
## 148      124         2           3       2             4           8
## 149       53         3           3       2             9           8
## 150       44         3           1       4             1           1
## 151       59         2           1       7             8           1
## 152      123         2           1       2             9           8
## 153      124         3           4       2             9           8
## 154      106         3           1       4             4           3
## 155      123         2           1       2             4           8
## 156       54         2           4       2             1           8
## 157       21         4           4       2             1           8
## 158      124         3           1       1             4           6
## 159      124         3           5       2             9           8
## 160       41         3           1       2             5           5
## 161      124         2           1       8             5           1
## 162       21         3           1       2             9           8
## 163      124         3           4       2             9           8
## 164      106         1           3       2             1           1
## 165       82         3           3       2             9           5
## 166      123         1           3       2             4           8
## 167       91         2           3       2             4           4
## 168      106         2           4       2             7           8
## 169       44         3           1       7             7           1
## 170      130         1           1       2             7           4
## 171      106         1           1       7             1           1
## 173      124         4           4       2             9           8
## 174      120         2           3       5             7           4
## 175      123         3           5       2             1           3
## 176        6         3           2       2             9           8
## 177      129         2           1       1             4           1
## 178       41         2           1       2            10           8
## 179       54         2           4       2             1           8
## 180       96         2           1       7             7           1
## 181       54         2           4       2             9           8
## 182      124         5           1       2             9           1
## 183      123         1           1       2             4           1
## 184      124         3           3       7             9           8
## 185       71         3           1       2             9           1
## 186      130         2           3       1             1           5
## 187       23         2           1       2            10           8
## 188       54         4           1       2            10           8
## 189      124         2           1       2             1           2
## 190       41         2           4       2            10           8
## 191      124         3           5       7             7           1
## 192       54         3           1       2             1           8
## 193       44         2           1       2             9           8
## 194       41         2           4       2             1           8
## 195       54         3           4       2             1           8
## 196      119         2           1       7             9           1
## 197      124         2           4       2             5           1
## 198      129         2           4       7             7           5
## 199       81         3           4       2             9           4
## 200       54         2           4       2             1           8
## 201       91         2           1       5             7           4
## 202      124         4           4       2            10           1
## 203       11         4           3       2             9           8
## 204        7         2           1       1             9           4
## 205      124         2           1       2             9           5
## 206       52         3           4       2             9           8
## 207      106         3           3       2             1           8
## 208      124         4           1       2             9           8
## 209       44         1           3       2             3           1
## 210      123         1           1       2             4           8
## 211      124         2           1       7             1           1
## 212       44         3           3       2             5           8
## 213      123         3           4       2             9           8
## 214       59         1           1       7             5           1
## 215      123         1           1       2             1           8
## 216       53         4           3       2             9           8
## 217      124         4           4       2             9           8
## 218      112         2           3       2             1           3
## 219       54         2           4       2             1           8
## 220      106         3           4       2             1           8
## 221       41         3           5       2             9           8
## 222      123         3           2       2            10           8
## 223      107         2           4       2             9           8
## 224      111         2           2       7             7           4
## 225      124         3           3       2            10           1
## 226      120         3           1       7             6           1
## 228      129         2           1       1             1           1
## 229       93         3           5       5             7           4
## 230       23         1           1       2             1           1
## 231       11         3           5       2             1           3
## 232      130         2           1       2             1           4
## 233      124         2           1       2             9           8
## 234       54         3           1       2            10           8
## 235       44         1           1       2            10           8
## 237      124         3           5       2            10           8
## 238        6         3           4       2             9           8
## 239      123         2           1       1             7           1
## 241      129         2           1       2             1           3
## 242       54         3           4       2             1           8
## 243       60         3           1       4             9           3
## 244      130         2           1       1             7           1
## 245      112         4           1       2             9           8
## 246      124         3           3       2            10           5
## 247      107         2           4       2             9           1
## 248      112         3           4       2            10           8
## 249       54         2           4       2             1           8
## 250       54         2           4       2             1           8
## 251      106         3           1       1             9           8
## 252       11         2           3       2             5           8
## 253      107         3           5       2             9           8
## 254      124         4           4       2             5           8
## 255       41         3           5       2             1           8
## 256       31         1           4       2             1           1
## 257      130         3           4       7             9           8
## 258       11         4           4       2             9           8
## 259       53         1           3       5             4           4
## 260      124         2           1       2             5           5
## 261       21         2           4       2             9           8
## 262      124         3           4       2            10           4
## 264        6         2           5       7             5           1
## 265      124         3           3       2             9           1
## 266       44         3           4       2             9           8
## 267      123         2           2       1             1           1
## 268      106         3           3       2            10           1
## 269       11         2           3       2             9           8
## 270      124         2           1       7             9           1
## 271       49         2           4       2             3           1
## 272       44         1           3       2             5           1
## 273       41         2           5       2             1           3
## 274       41         1           5       2             9           8
## 275       52         3           1       1             9           8
## 276      124         4           1       2             9           8
## 277      112         2           1       2             7           8
## 278       26         2           1       1             9           1
## 279       52         2           1       2             9           8
## 280       96         2           3       7             1           1
## 282       54         2           4       2             1           8
## 283      106         2           4       1             8           1
## 284       54         2           4       2             1           8
## 285      123         3           1       7             7           1
## 286      123         2           1       2             4           1
## 287      124         3           4       2            10           1
## 288      123         1           1       8            10           1
## 289       18         1           1       1             7           4
## 290      120         2           1       1             1           1
## 291       57         3           1       8             7           1
## 292        6         1           1       2             4           5
## 293      106         2           1       2             3           1
## 294       59         3           1       4             4           4
## 295      112         2           3       2             9           8
## 296      124         2           3       2             9           1
## 297       23         2           1       2             9           1
## 298       49         3           1       1             7           5
## 299       41         3           1       2             1           1
## 300       18         2           3       7             5           5
## 302       49         2           1       1             9           3
## 303       54         2           4       2             1           8
## 305      130         2           5       2             9           8
## 306      130         3           1       1             7           1
## 307       59         3           1       7             9           1
## 308       59         2           1       7             8           1
## 309       81         1           3       2             5           4
## 310        6         2           1       2             4           4
## 311       44         2           4       2             9           8
## 312       59         2           5       2             4           4
## 313      106         2           1       7             1           1
## 314      124         3           2       2             4           1
## 315      124         2           5       2             9           8
## 316      123         1           1       7             1           1
## 320       96         2           1       7             5           1
## 321      111         2           4       2             5           1
## 322       49         2           3       4            10           3
## 323       40         2           1       2             1           1
## 324       59         3           2       2            10           8
## 325      123         2           1       1             7           4
## 326       81         2           1       2             5           1
## 327       49         2           3       2             9           8
## 328       41         2           4       2            10           8
## 329      124         2           1       6             1           1
## 330      129         2           1       1             9           4
## 331       21         3           1       2             9           8
## 332      124         2           3       2             4           8
## 333       54         2           4       2             1           8
## 334      123         1           1       2             4           8
## 335       81         1           3       7             1           1
## 336      106         2           1       1             7           3
## 337       59         3           5       2            10           8
## 338      124         4           4       2             9           8
## 339       21         3           1       4             9           8
## 340       41         2           1       2             9           1
## 341      124         3           4       2             9           1
## 342       31         1           4       2             1           4
## 343       15         2           1       1             9           8
## 344      123         3           5       1             9           1
## 345      106         2           3       1             9           8
## 346       54         2           4       2             1           5
## 347       21         2           4       7            10           6
## 348      120         3           5       2             1           1
## 349       95         3           1       1             9           6
## 350       54         2           4       2             1           8
## 351       21         3           4       2             9           8
## 352      124         3           1       2             9           8
## 354      129         2           1       5             7           4
## 355      123         2           1       2             5           8
## 356       54         2           4       2             1           8
## 357       54         2           4       5             7           1
## 358      124         2           4       2             1           5
## 359       41         2           4       2             9           8
## 360      123         3           3       1             9           4
## 361       54         4           4       2             9           8
## 362       41         3           5       2             9           8
## 363       21         2           4       2            10           8
## 364       81         2           5       2            10           8
## 365      129         3           3       7             3           1
## 366       18         1           1       7             7           3
## 367       49         2           1       1             9           6
## 368       21         2           1       2            10           8
## 369       44         4           4       2             1           8
## 370      123         3           5       2            10           5
## 371       54         2           4       2             1           8
## 372       59         3           1       4             9           5
## 373       44         3           4       2             9           8
## 374      123         2           1       7             1           1
## 375       91         3           3       2             9           8
## 376        6         2           4       2             9           8
## 377      120         2           4       7             7           5
## 378        7         2           3       2             9           8
## 379      123         3           1       2             9           8
## 380       44         4           5       2             9           3
## 381       54         1           1       7             1           1
## 382      120         2           1       7             4           1
## 383       59         2           1       4             7           1
## 384       18         1           1       7             7           7
## 385      123         3           1       2             9           4
## 386      124         3           3       6            10           3
## 387      130         2           3       1            10           1
## 388       54         3           1       2             9           8
## 389       84         2           1       1             9           8
## 390      120         2           3       7             7           1
## 391       59         3           1       1             7           3
## 392       95         1           3       2             4           5
## 393        6         2           3       2             9           8
## 394      123         2           1       2             1           1
## 396       21         4           1       2             9           8
## 397       49         2           1       4             9           1
## 398      111         1           3       8             1           1
## 399       81         2           4       2             4           1
## 400       45         3           1       4             5           8
## 401       86         3           4       2             9           3
## 402       31         3           1       2             4           5
## 403      124         4           4       2             9           8
## 404       95         3           1       2             4           8
## 405      124         3           1       7             9           1
## 406      123         2           2       5             7           4
## 407      123         2           4       2             4           8
## 408       59         2           1       1             7           4
## 409       71         3           4       2             9           1
## 410       60         2           1       2             9           8
## 411       31         1           1       2             7           8
## 412      119         3           1       1             7           1
## 413       54         3           4       7             1           1
## 414       59         2           1       1             9           1
## 415       26         2           3       1             9           1
## 416      106         3           3       2             9           1
## 417      106         2           1       1             9           8
## 418      123         2           3       2             4           1
## 419       59         3           1       1             7           1
## 420       85         1           3       3             7           4
## 422       54         2           4       2             1           8
## 423      123         2           1       7             9           1
## 424      112         1           3       2             9           1
## 426       59         2           1       1             5           1
## 427       34         1           3       1             7           1
## 428       31         1           3       2             4           8
## 429      112         3           4       2             1           8
## 430      123         3           1       7             5           1
## 431       54         2           4       2             9           8
## 432       31         1           3       2             1           1
## 433       49         1           1       2             5           1
## 435        6         1           2       8             9           8
## 436       30         1           1       2             5           1
## 437      124         1           1       2             4           8
## 439      123         3           1       7             7           1
## 440       44         2           4       2             9           1
## 441      119         2           4       2             1           1
## 442       59         3           1       1             9           1
## 443      106         3           4       2             1           4
## 444       63         3           3       2             1           8
## 445       82         2           4       2             9           5
## 446       41         3           4       2             9           8
## 447      124         1           1       8             9           1
## 448       18         2           2       2             1           1
## 449      124         4           1       2             9           4
## 450       41         2           4       2             9           8
## 451       54         2           4       2             1           4
## 452      123         2           1       2             5           1
## 453       54         2           3       2             5           4
## 454      130         2           1       1             5           8
## 456      130         2           1       1             1           1
## 457        7         2           1       2             9           8
## 458       21         2           4       2             9           8
## 459      112         2           1       2             5           8
## 460      124         1           3       6             5           1
## 461       49         3           1       7             9           1
## 462       54         3           4       2             1           1
## 463       54         2           3       2             1           7
## 464      124         2           4       2             4           1
## 465      124         4           4       2            10           8
## 466      129         2           1       1             1           1
## 467      124         3           1       2             9           8
## 468       86         2           3       2             4           8
## 469      124         2           1       2             4           8
## 470       23         2           3       2            10           8
## 471       54         2           1       7             5           5
## 472      124         2           1       2             1           1
## 473      107         2           4       2             9           8
## 474      123         3           3       2             9           8
## 475       54         2           4       2            10           5
## 476        6         3           3       2             9           8
## 477      107         2           4       2            10           8
## 478      124         4           4       2             9           8
## 479      130         3           3       1             1           1
## 480       11         3           4       2             9           8
## 481      119         2           1       1             5           3
## 482      123         2           1       2             9           4
## 483      124         2           4       2             4           5
## 484        7         4           3       2             9           1
## 485       67         3           1       1             9           4
## 486      123         2           4       2             1           1
## 487      124         2           3       2             4           5
## 488      124         4           2       2            10           8
## 489      123         3           1       2             9           1
## 490       49         3           1       7             9           1
## 491       55         2           1       2             1           1
## 492       18         1           4       7             7           1
## 493       44         1           3       2             1           8
## 494       31         2           3       2             1           8
## 495      123         3           5       2            10           8
## 497       41         3           5       2             9           8
## 498      124         2           4       2             9           8
## 499       11         2           4       2             5           8
## 500      120         2           1       5             7           4
## 501       44         3           1       2             9           8
## 502        7         4           4       2             9           8
## 503       54         2           3       2             9           5
## 504       49         2           1       4             9           5
## 505      130         3           1       7             5           1
## 506        6         1           1       8             4           1
## 507       18         2           1       1             9           1
## 508      123         3           3       2             1           3
## 509      124         2           3       2             4           5
## 510       26         2           1       1             7           1
## 511       54         3           4       2             2           1
## 512       44         4           3       2             9           8
## 513       41         1           3       2             7           8
## 514      123         1           1       8             5           6
## 515       44         3           4       2            10           8
## 516       41         2           4       2             4           8
## 517       54         2           4       2            10           1
## 518       54         1           3       2             1           1
## 519       91         2           1       4             4           2
## 520       60         2           1       2             9           8
## 521       41         2           5       2             9           3
## 522       41         2           4       2            10           8
## 523      120         1           1       7             1           1
## 524       82         2           1       2             4           8
## 526      124         4           1       2             9           8
## 527      129         3           1       4             7           7
## 528      124         3           1       2             9           8
## 529       44         4           4       2             1           8
## 530      124         2           3       6             7           1
## 531       85         2           4       2             1           8
## 532       59         3           1       4             4           4
## 533      124         2           4       2             9           8
## 534       21         3           1       2             4           8
## 535      124         2           1       2             4           8
## 536       49         2           1       2             4           5
## 537      112         2           4       2             9           8
## 538        6         2           4       2             1           3
## 539       21         4           1       2             9           8
## 540      107         2           3       2             9           1
## 541      124         3           1       2             9           1
## 542       49         2           1       4             5           3
## 543       81         2           1       2             4           1
## 544       96         2           1       2             4           1
## 545      123         2           4       2             9           8
## 546       57         2           3       2             1           1
## 547       44         3           1       4             7           1
## 548      107         2           1       2             1           3
## 549      123         3           2       2             4           8
## 550      106         3           1       1             7           3
## 551       18         3           1       4             5           4
## 552       44         2           4       4             7           3
## 553       79         3           4       2             9           8
## 554       81         2           1       2             4           3
## 555      106         3           1       7             9           8
## 556       94         2           4       2             1           3
## 557      130         2           1       1             5           1
## 558      124         2           1       2             9           5
## 559        6         2           4       2             9           8
## 560      124         4           4       2             9           8
## 561      124         2           3       2             9           1
## 562        6         3           1       2            10           8
## 563      112         3           4       2             9           5
## 564        6         2           4       2             9           8
## 565      111         2           4       2             9           8
## 566      124         2           1       7             1           4
## 567      124         3           4       2             9           8
## 568      119         2           1       2             9           3
## 570      112         2           1       2             9           8
## 571       59         2           1       2             1           1
## 572       23         3           4       2             9           8
## 573       54         3           4       2             5           8
## 574      124         4           1       2             9           8
## 575      124         3           3       2             9           8
## 576       54         3           5       2             1           4
## 577      123         2           1       7             7           1
## 578       44         3           1       2            10           8
## 579       53         2           1       2             1           5
## 581      124         4           4       7             7           1
## 582      115         3           1       1             9           1
## 583       82         3           1       2             9           8
## 584      124         2           1       1            10           8
## 585      123         2           1       5             7           4
## 586       54         2           4       2             1           8
## 587      123         4           4       2             1           8
## 588       59         2           1       1             9           1
## 589       59         3           1       1             9           4
## 590      124         2           1       2             5           8
## 591      107         3           5       2            10           8
## 592      123         3           4       2            10           1
## 593      124         2           3       2             9           5
## 594       54         3           5       2             2           8
## 595       26         2           1       1            10           4
## 596      124         3           1       2             4           4
## 597       21         2           1       8             9           1
## 598       91         4           3       2             9           8
## 599       77         3           1       4             8           1
## 600      122         2           3       2             9           1
## 601       21         4           4       2             9           8
## 602       54         2           4       2             1           8
## 603      106         2           3       1             9           3
## 604       61         2           3       2             1           1
## 605       44         3           1       2             9           8
## 606      112         4           1       2             9           8
## 607       54         2           3       2            10           8
## 608      111         3           4       2             9           8
## 609      124         4           4       2             5           8
## 611      124         2           3       2             4           8
## 612      130         2           3       1             9           1
## 613      106         2           1       7             5           1
## 614      107         2           3       2             5           5
## 615      120         1           1       7             7           1
## 616       54         2           4       2            10           8
## 617      129         2           1       1             9           2
## 618       54         2           1       2             9           8
## 619      109         2           3       4             8           1
## 620      124         2           3       2             4           5
## 621       54         2           4       2             1           1
## 622      112         3           2       2            10           1
## 623       54         2           3       2             9           1
## 624      111         3           5       2             9           1
## 625       82         2           1       7             5           1
## 626      124         4           1       2            10           8
## 627      130         2           1       1             9           8
## 628      111         2           3       6             7           5
## 629       41         3           4       2             9           8
## 631      130         2           1       1             9           8
## 632      123         3           1       7             9           1
## 633      130         2           4       1             9           1
## 634      124         1           1       2             1           1
## 635       71         2           1       1             9           5
## 636      102         2           4       2             4           3
## 638      106         2           4       2             1           8
## 639      107         2           3       2            10           8
## 640       54         2           1       2             5           1
## 641      129         2           1       1             1           1
## 642      106         3           3       1             9           5
## 643      124         2           1       2             9           8
## 644       41         2           3       2             4           3
## 645      124         3           4       2             9           3
## 646      123         1           3       2             9           1
## 647      124         2           4       2             9           8
## 648      107         2           3       2             4           8
## 649       44         2           4       2             1           8
## 650      124         2           1       2             1           1
## 651        6         4           1       1            10           1
## 652      107         2           1       2             9           3
## 653       21         3           4       2             1           8
## 654      124         3           1       2             1           1
## 655      107         1           4       2             1           8
## 656      107         3           5       2            10           8
## 657       54         2           4       2             9           5
## 658       46         3           5       2             1           5
## 659      124         2           3       2             9           5
## 660       44         2           1       1             9           3
## 661      106         2           4       1             7           3
## 662      123         1           3       1             1           1
## 663      124         4           3       2             9           8
## 664       59         2           1       4             8           8
## 665       59         3           4       7             1           1
## 666      130         2           1       7             1           1
## 667       92         2           4       2             5           5
## 669       59         2           1       1             9           1
## 670       54         2           5       2             1           8
## 671       44         2           1       2             5           3
## 672        6         3           4       2             9           5
## 673      124         3           3       2            10           8
## 674        6         3           4       2            10           8
## 675       18         1           1       2             7           7
## 676       92         3           5       2             9           1
## 677      124         3           5       2            10           4
## 678      120         4           1       7             5           1
## 679      111         3           3       2            10           1
## 680       70         2           1       6             9           7
## 681      123         2           4       2             9           8
## 682      129         2           1       7             5           1
## 683      130         2           1       1             7           1
## 684      111         3           3       2             9           8
## 685      124         2           4       2             4           5
## 686      129         2           1       1             7           4
## 688      123         1           3       2             4           1
## 690       21         3           1       2             9           8
## 691      123         3           2       2             9           8
## 692        6         3           4       2             9           1
## 693      124         2           1       7             1           1
## 694       11         2           4       2             4           8
## 695       44         3           4       2             9           3
## 696       54         2           4       2             1           8
## 697       54         3           4       2             1           8
## 698      124         3           4       2             9           1
## 699        6         3           1       2             4           5
## 700       44         3           4       2             9           8
## 701      129         2           4       1             1           4
## 702       49         2           3       1             7           4
## 703      124         1           3       2             4           8
## 704      112         3           1       6             4           5
## 705      112         2           3       2             5           1
## 706       86         3           2       7             2           1
## 707       54         2           3       2             1           8
## 708      124         3           2       7             1           1
## 709      123         2           4       2             9           4
## 710      123         1           1       2             4           1
## 711      123         1           1       8             3           3
## 712      124         4           3       2             9           8
## 713       59         3           1       7             7           1
## 714       54         2           3       2            10           4
## 715       85         3           1       8             9           1
## 716      123         3           4       2             1           1
## 717       41         2           1       7             1           1
## 718       59         2           5       2             1           1
## 719       59         2           3       4             8           8
## 720      124         3           4       2             9           4
## 721      124         3           4       2             9           8
## 722      123         2           3       2             9           8
## 723       41         4           5       2             9           8
## 724       86         1           1       7             7           1
## 725       54         2           4       2             1           8
## 726      123         2           4       2             1           4
## 727      124         2           1       1             1           1
## 728      124         3           1       6             9           3
## 729      111         3           4       2             1           8
## 731       44         1           1       2             9           8
## 732       23         2           4       1             7           7
## 733       31         2           1       2            10           1
## 734      124         1           3       2             9           1
## 735       21         1           3       2             5           1
## 736       53         1           1       2             9           1
## 737       96         5           1       7             1           3
## 738       41         2           4       2             9           8
## 739       54         1           1       7            10           8
## 741       26         2           1       2             5           5
## 742       30         4           4       2             9           8
## 743       81         3           1       7             7           4
## 744      106         2           1       1             7           5
## 745       23         1           3       2             4           3
## 746       21         4           4       2             9           8
## 747      112         3           4       2             1           7
## 748      123         4           4       2             1           8
## 749        7         3           4       2             9           8
## 750      130         2           1       7             1           1
## 751      124         3           4       2             9           8
## 752       59         2           1       4             9           5
## 753       54         2           5       2             1           8
## 754      123         2           4       2             4           8
## 755      124         2           1       4             8           4
## 756      120         3           3       7             7           1
## 757      123         3           3       2             5           1
## 758      124         3           1       2             9           8
## 759       54         2           4       2             1           8
## 760       44         3           1       2             5           1
## 761       44         3           1       2             4           8
## 762      123         1           1       2             4           1
## 763      123         1           1       2             4           8
## 764      111         2           1       7             3           1
## 765       26         2           3       7             5           1
## 766      123         2           1       2             4           8
## 767        7         3           4       2             4           8
## 768      106         3           4       2             5           8
## 769       23         2           1       2             9           8
## 770      124         2           1       2             4           1
## 771       21         4           1       8             7           5
## 772       15         2           1       2             9           8
## 773        6         2           1       1             9           3
## 774      129         2           1       1             7           4
## 775      123         1           1       8            10           5
## 776      107         2           4       2             1           8
## 777       49         4           1       7             7           1
## 778      123         3           5       2            10           8
## 779      123         3           2       2             1           1
## 780      107         2           4       2             9           8
## 781      123         3           2       2             9           1
## 782      124         2           1       2             9           8
## 783      106         2           4       2             1           1
## 784      124         4           4       2             9           8
## 785      124         4           4       2             9           8
## 786      124         2           4       2             9           8
## 787      106         2           3       2             1           8
## 788      107         3           4       2             9           8
## 789       54         2           4       2             1           8
## 790        6         3           4       2             9           8
## 791      123         2           1       2             1           8
## 792       44         3           4       2             9           8
## 793       21         1           1       8             9           5
## 794      112         4           4       2             9           8
## 795      124         4           1       2             9           8
## 797      123         1           3       7             1           1
## 798       11         3           4       2             1           3
## 799       59         3           4       2             1           8
## 800      123         1           3       2             5           8
## 801      129         2           4       7             1           1
## 802       21         2           1       2             9           8
## 803      106         3           3       2             1           8
## 804       41         3           5       2             9           8
## 805       81         2           1       2             9           1
## 806       72         2           3       8             1           3
## 807       57         1           1       4             8           1
## 808      111         3           1       2             9           5
## 809       54         3           3       2             1           3
## 810      106         1           4       2             1           8
## 811      106         4           1       1             4           4
## 812       41         2           4       2             1           3
## 814        6         2           1       7             7           1
## 815      111         4           1       7             9           8
## 816      106         3           1       4             5           3
## 817      106         1           4       2             1           8
## 818      123         3           1       2             4           8
## 820       21         3           4       2            10           8
## 821      124         4           4       2             9           8
## 822      111         2           4       2             1           8
## 823       44         2           4       2             5           1
## 824       59         3           1       1             2           8
## 825      106         3           1       2             1           8
## 826       41         2           4       2            10           8
## 827       44         3           1       7             1           1
## 828      124         4           4       2             9           8
## 829       41         1           1       2             5           1
## 831      119         1           3       7             1           1
## 832      123         1           1       2             4           8
## 833       18         1           3       7             5           1
## 834       11         3           1       4             4           4
## 835       21         3           2       2             9           8
## 836       54         3           2       2             5           3
## 837        6         2           1       2             9           5
## 838       41         3           2       2            10           8
## 839      106         3           3       4             9           8
## 841       95         2           2       7             1           1
## 842      130         2           1       1            10           1
## 845      123         2           1       2             9           8
## 846      123         5           1       2             5           8
## 847        6         3           3       2             9           8
## 848       81         2           1       4             4           8
## 849       59         3           4       2             1           1
## 850       49         2           4       1             1           1
## 851      119         3           1       2             9           8
## 852      124         3           5       2             9           8
## 853       49         3           1       1             1           3
## 854      130         2           1       1            10           1
## 855       81         3           4       7            10           8
## 856      112         3           3       2             9           1
## 857       91         2           1       2             7           8
## 858        7         3           1       2             9           8
## 859       52         5           3       2             4           1
## 860       44         2           1       2             5           1
## 861      124         4           3       2             9           8
## 862       21         3           1       7             1           1
## 863      124         4           4       2             9           8
## 864      124         3           1       2             9           8
## 865       54         2           4       2             1           8
## 866      120         3           1       4             8           1
## 867       70         2           2       7             1           1
## 868      124         3           3       2             9           8
## 869      130         3           1       1            10           1
## 870      123         1           1       2             5           6
## 871      124         3           1       7             9           1
## 872      124         2           5       2            10           8
## 873      106         2           4       2             1           5
## 874       44         3           4       2             9           1
## 875      124         3           4       2             9           8
## 876      130         2           1       1            10           1
## 877       18         2           2       7             7           1
## 878      123         2           1       7             1           1
## 879      106         2           4       2             1           8
## 880      124         3           1       2             9           5
## 881      123         2           1       7             7           1
## 882       41         3           5       2             9           8
## 883      111         2           1       2             1           1
## 885       95         2           4       2             9           5
## 886        7         3           4       2            10           8
## 887       59         2           2       7             1           1
## 889       59         1           1       7             7           4
## 890      124         4           3       2             9           8
## 891      124         3           3       2             9           8
## 892       49         2           3       4             8           1
## 893      130         2           3       1            10           3
## 894       21         3           4       2             9           5
## 895       59         2           1       7             1           1
## 896       85         2           4       2             9           5
## 897       82         1           3       2             9           4
## 898      124         3           3       7             5           1
## 899       46         1           1       1             9           1
## 900      129         2           1       7             1           1
## 902       70         2           1       7             9           1
## 903       54         2           4       2             1           8
## 904       54         2           4       2             1           8
## 905      129         3           1       1             1           5
## 906       41         3           4       2             1           8
## 907        7         2           1       2             4           8
## 908       18         1           3       2             2           4
## 909       44         3           5       2             1           8
## 910       96         3           1       5             8           4
## 911       41         3           5       2            10           5
## 912      111         2           3       6             7           4
## 913       41         2           4       2            10           8
## 914      112         4           4       2             9           8
## 915       87         2           1       4             9           1
## 916       23         1           1       8             9           1
## 917       40         2           3       7             1           1
## 918      123         1           1       2            10           1
## 919      130         2           1       1             1           8
## 920      123         1           1       2             1           1
## 921       54         3           4       2             1           8
## 922      123         2           5       2             9           8
## 923      124         3           1       2             9           8
## 924      107         3           3       2             9           8
## 925      111         2           4       2             1           5
## 926      114         2           1       1             9           3
## 927        6         3           3       2             9           8
## 928      107         2           4       2             9           8
## 929        6         3           4       2            10           4
## 930      123         1           1       2             5           1
## 931        4         3           1       2             4           8
## 932      123         3           1       1             9           5
## 933      108         2           1       4             8           4
## 934       54         2           4       2             9           8
## 935      129         2           1       7             5           1
## 936      124         4           1       2            10           8
## 937      124         2           1       2             9           8
## 938       31         2           3       2             1           1
## 939       45         2           1       5             7           5
## 940       49         2           3       7             1           1
## 941      111         1           3       2             1           8
## 942      107         2           1       1             1           7
## 943       95         3           4       2             9           8
## 945      124         5           3       2             9           1
## 946       59         3           1       1             1           1
## 947      106         2           4       2             1           8
## 948        7         3           1       2             1           8
## 950      106         3           4       2             1           3
## 951      124         4           4       2             9           8
## 952       14         3           1       4             8           5
## 953       11         2           3       2             9           8
## 954       54         2           4       2             9           8
## 955       18         1           1       7             5           1
## 956       44         3           3       4             8           6
## 957       54         3           1       7             1           1
## 958      127         1           1       1             1           8
## 959      124         3           4       2             9           8
## 960      106         4           3       2             9           8
## 961       21         4           1       2             9           5
## 962       60         1           3       8             8           6
## 963      123         1           1       5             4           1
## 964        4         2           3       2             9           4
## 965       21         3           1       4             9           1
## 966       11         2           5       2             9           1
## 967       41         3           4       2             9           5
## 968      129         3           1       1             5           1
## 969       59         2           3       1            10           3
## 970       54         2           4       2             1           8
## 971      124         3           5       2             9           1
## 972      124         4           1       2             9           8
## 973      124         2           1       6             9           1
## 974        6         2           4       2             9           8
## 975      124         2           3       2             4           8
## 976       54         3           1       2             5           1
## 977       41         2           4       2             1           8
## 978      124         4           4       2             9           8
## 979      123         2           5       7             7           1
## 980      124         1           3       2             1           8
## 981       54         2           5       2             1           8
## 982      123         2           1       2             9           8
## 983      120         3           5       2             1           8
## 985      130         2           1       1             3           1
## 986       54         2           4       2            10           4
## 987        6         2           4       2             1           8
## 989       41         3           3       2             1           3
## 990      123         2           5       2             9           1
## 991       31         1           3       2             4           1
## 992      130         1           3       1             7           5
## 993       86         1           4       2             1           1
## 994       81         2           3       1            10           4
## 995      129         3           1       1             7           1
## 996       54         3           5       2            10           1
## 997      106         2           3       2             9           8
## 998      123         1           1       2             9           8
## 999       26         2           1       1             7           1
## 1000      54         3           3       2             9           4
## 1001      44         3           5       2             9           8
## 1002      54         1           4       2             1           8
## 1003     106         3           4       1            10           4
## 1004      54         3           3       2             1           8
## 1005     124         4           1       2             9           8
## 1006     124         2           3       2             9           1
## 1007     124         4           4       2            10           8
## 1008     130         2           1       1             5           1
## 1009      31         2           4       2            10           1
## 1010      23         2           3       2             9           8
## 1011      54         2           3       2             5           8
## 1012     124         2           1       7             5           1
## 1013      41         3           3       2             1           8
## 1014     124         2           1       2             9           8
## 1016     106         3           4       2             1           5
## 1017      31         4           4       2             9           8
## 1018       6         1           3       7             9           8
## 1019      49         1           1       7             9           1
## 1020     123         3           5       2             1           8
## 1021      49         2           1       1             4           4
## 1022      54         4           3       2            10           8
## 1023     123         3           5       2             3           8
## 1024     124         2           3       2             9           8
## 1026     130         3           1       1             7           1
## 1027      54         2           1       2             1           1
## 1028     111         3           4       2             9           8
## 1029     123         2           1       2             4           8
## 1030     123         3           1       7             7           1
## 1031     124         4           4       2             9           8
## 1032      96         2           1       4             8           1
## 1033      59         2           1       1             7           8
## 1034      44         2           1       4             2           3
## 1035     119         3           1       2             1           8
## 1036     120         3           1       7             7           1
## 1037     123         4           4       2             9           8
## 1038      54         2           5       2             1           8
## 1040      11         2           1       1             9           4
## 1041      44         2           3       2             9           5
## 1042     123         3           5       2             9           8
## 1043      40         2           1       2             9           8
## 1044     119         2           1       2             9           8
## 1045      21         3           1       7             5           1
## 1046      54         3           2       2             1           4
## 1047      71         3           4       2             4           3
## 1048     124         2           4       2             5           8
## 1049     124         3           1       4             8           4
## 1050      44         1           3       6             9           4
## 1051     124         4           4       2             9           8
## 1052      54         3           3       2             1           8
## 1053     124         2           1       7             9           1
## 1054     107         2           3       2             9           1
## 1055     112         3           1       7             9           1
## 1056      41         2           1       2             9           1
## 1057      23         2           1       2             1           1
## 1058     107         3           4       2             9           5
## 1059     124         2           4       2             4           8
## 1060      86         2           1       7             7           3
## 1061     106         3           1       2             4           8
## 1062      85         1           3       2             1           1
## 1063       4         2           3       2             1           8
## 1065      96         1           1       2             7           8
## 1066      59         3           4       4             7           4
## 1067     124         3           1       7             5           1
## 1068       6         3           4       2             9           8
## 1069     129         2           1       1             4           1
## 1070     107         3           4       2             9           5
## 1071      54         2           3       2             1           8
## 1072     124         2           4       2             1           1
## 1073     120         2           1       7             1           1
## 1074      52         5           3       2             4           8
## 1075      41         2           5       2             9           8
## 1076      59         3           1       4             9           1
## 1077      54         2           5       2             1           8
## 1078       7         1           1       2             1           3
## 1079     124         2           3       2             4           5
## 1080     124         3           1       7            10           8
## 1081     124         4           1       2            10           8
## 1082     111         2           4       2             9           3
## 1083      54         2           4       2             1           8
## 1084      54         2           4       2             5           5
## 1085      96         1           1       7             5           1
## 1087     107         3           4       2            10           8
## 1088     107         3           4       2             1           3
## 1091      41         3           4       2             1           8
## 1092     106         3           1       1             8           1
## 1093     123         4           1       1             6           4
## 1094     123         1           1       2             4           1
## 1095     123         1           1       8             4           8
## 1096     115         3           1       2             5           1
## 1098     120         2           1       1             7           3
## 1099      54         3           4       2             1           8
## 1100       6         3           1       2             4           5
## 1101     124         4           4       2             9           8
## 1102     123         4           1       2             5           1
## 1103      81         3           4       2             9           1
## 1104     129         2           1       1             9           1
## 1105      54         1           1       2             1           8
## 1106       6         3           1       2            10           8
## 1108      44         4           1       1             7           3
## 1109      54         2           4       2             1           8
## 1110      59         2           3       5             7           4
## 1111      59         2           1       7             1           1
## 1112       6         2           4       2             9           8
## 1113     124         3           4       2             9           8
## 1114      71         2           3       2             7           8
## 1115     130         2           4       1            10           8
## 1116      31         1           1       2             5           1
## 1117      12         3           4       2             9           4
## 1118     111         3           4       2             9           8
## 1120     130         2           3       1            10           3
## 1121      54         2           3       2            10           8
## 1122     129         2           1       1             7           1
## 1123     107         2           3       2             1           3
## 1124      49         2           1       1             1           5
## 1125      59         2           1       7             1           1
## 1126      54         3           1       2             9           8
## 1127     106         1           1       1             5           4
## 1128      18         5           3       7             5           1
## 1129     119         2           3       7             9           1
## 1130      54         1           4       2             1           8
## 1131     130         1           3       2             7           1
## 1132     123         2           3       8             9           5
## 1133     123         4           1       2             9           1
## 1134      21         3           4       2             1           5
## 1135     124         3           1       2             9           8
## 1136     129         2           1       1             1           8
## 1137     129         2           1       1            10           1
## 1138      15         2           4       2             9           8
## 1139       6         3           4       2            10           8
## 1140     123         1           4       2             4           8
## 1141     124         3           1       2             9           8
## 1142      82         2           3       2             5           8
## 1143      57         2           3       2             9           8
## 1144      85         2           5       2             9           1
## 1146      41         3           2       2             9           8
## 1147     130         2           3       1             9           1
## 1148      23         1           1       2            10           8
## 1149      31         3           4       2             9           3
## 1150       7         3           1       2             1           8
## 1151      21         3           3       2            10           8
## 1152      49         2           1       7             1           1
## 1153     123         2           1       2             4           8
## 1154     124         2           1       1             8           3
## 1155      49         2           1       1             7           4
## 1156     123         3           5       2             9           7
## 1157      11         2           1       2             9           8
## 1158     123         2           1       2             9           8
## 1159     123         3           4       2             9           8
## 1160     124         2           4       2             9           5
## 1161     123         2           3       2             4           8
## 1162     124         3           4       7             7           1
## 1163      41         1           4       2             3           8
## 1164     123         3           4       2             9           4
## 1165     124         3           5       2             9           8
## 1166      18         2           1       7             5           1
## 1167     124         4           5       2             9           8
## 1168     124         5           1       2             5           8
## 1169     124         2           1       2             9           8
## 1170     123         3           1       7             9           1
## 1172      59         2           1       7             7           1
## 1173     109         1           1       7             7           1
## 1175     124         3           1       2             9           1
## 1177     123         3           1       7             9           1
## 1178     106         2           4       2             1           8
## 1179     124         3           2       2             4           8
## 1180     123         2           3       2             5           1
## 1181     124         4           3       2             9           8
## 1182       6         1           1       1             7           1
## 1184      54         4           3       2             9           8
## 1185      70         2           1       4             1           1
## 1186     111         2           4       2             5           4
## 1187      99         3           1       4             4           7
## 1189     123         1           1       2             4           1
## 1190       1         1           1       4             9           8
## 1191     124         2           3       2            10           8
## 1192      41         3           3       2             9           8
## 1193      59         2           1       4             1           3
## 1194      44         2           3       7             5           1
## 1196     124         4           4       2             9           8
## 1197     123         1           1       8             1           3
## 1198     123         3           5       2             7           5
## 1199     107         3           3       2             9           1
## 1200     124         3           4       2             9           8
## 1201      21         2           1       7             5           1
## 1202      54         4           1       2             9           8
## 1203      63         3           3       2             3           8
## 1204     124         2           1       5             7           4
## 1205      24         2           1       1             9           1
## 1206      60         2           5       1             9           1
## 1207     130         2           1       2             1           3
## 1208     123         3           5       2             1           1
## 1209      49         2           1       1             9           3
## 1210      21         3           1       2             4           8
## 1211      91         2           5       2             9           1
## 1212     123         2           1       5             4           8
## 1213     124         2           1       2             9           8
## 1214      56         3           1       7             7           4
## 1215     107         2           3       2             9           8
## 1216     120         2           1       7             7           1
## 1217      41         2           1       2             1           6
## 1218      23         2           1       4             8           3
## 1221       8         2           1       1             9           4
## 1223      41         3           5       2             9           8
## 1224      26         2           5       7             7           1
## 1225      41         2           5       2             9           8
## 1227      59         3           1       1             9           4
## 1228      26         3           1       5             7           1
## 1229     123         1           1       2             4           8
## 1230      41         3           4       2             9           8
## 1231       6         2           4       2             4           1
## 1232     106         3           1       2            10           8
## 1233     123         3           4       2             1           8
## 1234     124         2           1       1             1           1
## 1235      26         2           3       1             9           1
## 1236      27         3           3       2            10           8
## 1237     120         2           3       4            10           1
## 1238     124         2           1       4             4           1
## 1239       6         3           4       2             9           8
## 1240      96         1           3       2             5           6
## 1241     124         4           1       2             9           1
## 1242     124         1           1       2             9           8
## 1243      49         2           1       4             7           3
## 1244       6         2           3       2             9           8
## 1245     123         2           3       2             5           1
## 1246     106         3           1       1             9           1
## 1247      54         2           4       2             1           5
## 1248     124         2           1       1             9           3
## 1249     124         3           3       2             9           4
## 1250      54         2           4       2             9           4
## 1251      21         2           1       2             1           8
## 1252      41         2           4       2             1           8
## 1253      59         2           1       4             5           7
## 1254     124         2           1       2             9           8
## 1255     106         2           1       4             7           3
## 1256     130         2           1       1             9           3
## 1257      54         3           3       2             1           1
## 1259     124         4           2       2             9           8
## 1260      11         2           4       7             9           5
## 1261       6         1           3       2             5           3
## 1262      41         1           2       2             9           8
## 1263      82         3           3       2             9           8
## 1264     102         2           1       2             9           1
## 1265      52         5           1       2             4           4
## 1266     130         3           1       1            10           1
## 1267     107         2           3       2             9           5
## 1268     124         3           1       7             9           8
## 1269     124         3           3       2             9           8
## 1270     130         1           3       1             1           8
## 1271     124         4           1       2             9           8
## 1272     124         4           1       2             9           8
## 1273      54         1           3       2             9           8
## 1274     124         3           4       2             4           8
## 1275      41         2           4       2             9           8
## 1276     124         2           1       2             9           8
## 1277      59         3           5       2            10           8
## 1278      81         2           3       2             9           5
## 1279     123         3           5       2             1           8
## 1280     123         1           1       2             4           5
## 1281     123         2           3       2             9           1
## 1282     123         2           4       2             9           1
## 1283      91         5           3       2             9           8
## 1284       6         2           1       2            10           5
## 1285      41         2           4       2             1           8
## 1286      54         2           4       2             9           1
## 1287     124         4           4       2             9           8
## 1288      25         2           4       7            10           1
## 1289     124         2           4       2             4           5
## 1290      44         3           3       2             4           8
## 1291      11         2           4       2             5           4
## 1292      21         3           5       2             9           8
## 1293     123         2           3       2             7           8
## 1294     124         3           3       2             9           8
## 1295      21         3           3       2             9           8
## 1296     102         2           3       2             9           1
## 1298     123         3           1       7             1           1
## 1299      54         3           4       2             1           8
## 1300     123         2           4       2             1           8
## 1301      31         4           1       2             9           8
## 1302      54         2           1       2             9           8
## 1303     123         4           1       7             9           1
## 1304     120         1           3       4             1           8
## 1305     124         3           1       2             4           8
## 1306     106         2           3       1            10           4
## 1307      54         2           4       2             1           8
## 1308     124         4           1       2             9           8
## 1309     123         2           4       2            10           8
## 1310      44         3           5       2             9           1
## 1311      54         2           1       2             9           8
## 1312      11         1           1       7             7           1
## 1313       6         4           4       2             9           8
## 1314      59         2           1       4             4           8
## 1315      41         3           2       2            10           8
## 1316     129         4           1       1             1           8
## 1317     107         2           3       2             1           1
## 1318     124         3           1       4             4           1
## 1319     124         4           4       2             9           8
## 1320      30         2           1       2             1           1
## 1321      54         3           4       2             5           3
## 1322      54         3           5       2             5           3
## 1323      92         2           4       2            10           1
## 1324     119         2           1       1            10           1
## 1326     106         3           3       2             9           8
## 1327      44         3           1       2             9           3
## 1328     123         1           1       2             4           6
## 1330      59         2           1       4             4           2
## 1331      23         2           1       2            10           3
## 1332      44         3           4       2            10           8
## 1333      21         4           4       2             9           5
## 1334     120         2           3       4             9           1
## 1335     120         2           1       7             7           1
## 1336     124         3           3       2             9           1
## 1337      21         2           1       7             5           1
## 1338     124         2           1       2             5           1
## 1339      11         2           4       2             9           1
## 1340      21         3           1       7             7           1
## 1341      18         3           1       7             2           5
## 1342     119         3           1       7             1           4
## 1343      54         1           3       2             1           8
## 1345     129         2           1       7             1           1
## 1346     123         1           1       2             4           8
## 1347      71         3           1       4             9           8
## 1348      95         2           3       2             1           3
## 1349     106         4           4       2             9           1
## 1350     124         4           4       2             9           8
## 1351     124         1           1       2             4           8
## 1352      44         1           3       2             5           4
## 1354      44         2           1       2             9           8
## 1355     123         1           3       2             5           8
## 1356      82         2           4       7             1           1
## 1357      31         3           4       2             1           5
## 1358     125         2           3       2             1           7
## 1359      44         3           1       2             9           8
## 1360      63         2           3       2             1           8
## 1361     123         3           5       2             1           8
## 1362      34         2           1       1             5           1
## 1363     102         2           3       2             9           8
## 1364      97         1           4       2             4           1
## 1365     129         2           1       1             7           1
## 1366     120         2           1       7             1           1
## 1367      21         1           3       2            10           8
## 1368      41         3           5       2             1           1
## 1369      54         3           5       2             1           8
## 1370      54         2           4       2             1           8
## 1371     129         2           1       1             7           1
## 1372     108         3           1       2             9           8
## 1373     124         4           4       2             9           8
## 1374      54         2           4       2             1           8
## 1375     124         2           4       7             9           1
## 1376      24         1           1       2            10           2
## 1377      57         3           1       2             1           4
## 1378     124         4           1       2             9           8
## 1379      59         2           1       1             1           8
## 1380      49         2           1       1             9           1
## 1381     124         4           4       2             9           1
## 1382     124         3           3       2             9           8
## 1383      44         3           3       4             8           1
## 1385      44         1           3       2             5           5
## 1386     129         3           1       7             7           1
## 1387     124         3           1       6             9           5
## 1388     124         4           4       2             9           1
## 1389     106         1           1       1            10           8
## 1390     130         1           1       4             1           1
## 1391     124         1           1       5             4           2
## 1392       6         2           1       2             9           8
## 1393      54         3           1       1            10           1
## 1394      59         2           1       1            10           1
## 1395     124         3           4       2            10           8
## 1396     106         2           3       4             8           3
## 1397      54         2           3       2             1           8
## 1398     107         2           4       2             9           8
## 1400     112         2           1       2             9           1
## 1401      52         5           3       2             4           1
## 1402      52         3           1       1             3           8
## 1403     112         2           4       2             9           8
## 1404      54         2           1       2             1           3
## 1405     129         2           1       1             1           3
## 1406     124         4           3       8             7           5
## 1407      92         2           4       2             1           8
## 1408     124         3           1       2             8           8
## 1409     130         2           1       5             1           1
## 1410      39         2           1       4             8           6
## 1411     107         3           5       2             9           3
## 1412      85         3           5       2             1           8
## 1413     123         3           5       2             7           1
## 1414      44         1           1       2             1           8
## 1415      41         4           5       2             9           8
## 1416     129         2           1       1             1           1
## 1417      57         4           3       2             4           8
## 1418      96         2           3       2             1           5
## 1420     111         3           3       2             9           8
## 1421      21         3           5       2             9           8
## 1422     123         3           4       2             9           4
## 1423      59         3           4       2             5           1
## 1424      54         3           5       2             1           8
## 1425     130         3           4       5             7           3
## 1426     124         3           4       2             9           8
## 1428     123         3           4       2             9           8
## 1429     124         3           4       2             9           8
## 1430     106         1           1       1             7           7
## 1431     124         1           1       8             7           4
## 1432     124         4           4       2             9           8
## 1433      11         3           2       2             9           8
## 1434     124         3           1       2             9           1
## 1435      59         1           1       7             7           1
## 1436      41         4           3       2             1           6
## 1437     123         2           4       7             1           3
## 1438     129         2           1       1             9           3
## 1439     124         4           1       1             9           5
## 1441     120         3           1       1             7           1
## 1442      54         2           4       2            10           8
## 1443     120         3           3       2             1           4
## 1444      44         2           4       2             1           5
## 1445       7         2           5       2             9           8
## 1446      44         1           1       2             1           1
## 1447      82         3           2       2             5           8
## 1448       7         3           4       2             9           8
## 1449     123         2           1       2             1           1
## 1450      41         2           4       2             9           1
## 1451      59         3           1       2             7           1
## 1452      44         3           4       2             9           8
## 1453      81         1           1       7            10           1
## 1454      41         3           4       2             1           5
## 1455     123         2           2       7             7           1
## 1456     124         3           1       2             4           8
## 1457      54         1           4       2             5           8
## 1458     111         1           3       2             5           8
## 1459     124         2           4       2             4           5
## 1460      57         2           3       7             4           1
## 1461     123         1           1       1            10           1
## 1462     124         4           4       2             9           8
## 1463      53         4           4       2             9           1
## 1464     123         4           1       2             9           8
## 1465     124         3           1       2             9           8
## 1466     124         4           4       2             9           8
## 1467      34         1           1       7             5           1
## 1468     119         2           3       2            10           3
## 1469     130         2           3       1             7           1
## 1470     129         2           1       1             7           4
## 1471     129         2           1       1             1           1
## 1472     124         3           5       2             9           8
## 1473     124         3           1       2            10           8
## 1474     123         4           4       2             9           8
## 1475       6         5           3       2             5           8
## 1476      54         2           4       2             1           8
## 1478     129         2           1       1             9           1
## 1479      23         2           1       2             9           8
## 1480     124         2           4       2             9           5
## 1481     123         3           2       2             9           8
## 1482      59         2           1       1            10           1
## 1483     124         4           3       2             9           8
## 1484      54         2           3       2            10           5
## 1485      54         2           5       2             1           1
## 1486      70         2           1       5             7           5
## 1487      54         3           1       2             5           3
## 1488     112         3           3       2             5           5
## 1490      90         2           1       4             9           1
## 1491      41         3           5       2             5           8
## 1492     124         1           1       2            10           8
## 1493       6         2           1       7             9           1
## 1494      41         2           5       2             1           8
## 1495     124         3           1       4             5           5
## 1496     123         3           1       7             1           1
## 1497      59         1           1       7             1           1
## 1498     130         2           1       1             8           8
## 1499      44         2           4       2             9           5
## 1500      54         3           5       2             7           8
## 1501      54         2           4       2             1           8
## 1502     124         3           4       2             9           8
## 1503       5         2           1       2             1           1
## 1504     129         2           1       1             1           1
## 1505       6         4           4       2             9           8
## 1506      59         3           1       6             8           2
## 1507     124         3           3       2             4           8
## 1508     123         2           4       2             1           1
## 1509     111         2           3       2             9           8
## 1511     123         2           1       2             4           8
## 1512      11         3           5       2            10           8
## 1513     123         3           5       2             9           1
## 1514     123         1           1       8             5           1
## 1515     107         2           1       2            10           1
## 1516      36         2           1       2             3           1
## 1517      21         3           1       7             7           1
## 1518       6         4           4       2             9           4
## 1519     119         3           4       2             9           1
## 1520      11         2           5       2            10           8
## 1521      98         3           3       7             1           1
## 1522      54         3           4       2             1           8
## 1523      82         3           1       7             5           1
## 1524      44         3           1       4             4           4
## 1525      74         3           5       2             9           8
## 1526      71         2           1       7            10           3
## 1527       6         4           1       2             9           8
## 1528     124         2           1       7             7           1
## 1529      59         2           1       1             7           8
## 1530     124         4           4       2             9           8
## 1531      81         2           1       8             1           5
## 1532     129         2           1       4             5           7
## 1533     120         2           3       5             7           8
## 1534     120         2           1       4             8           1
## 1536     123         3           1       7             9           1
## 1537      61         2           1       2             1           1
## 1538     120         3           1       4             8           1
## 1539       7         3           1       2             4           8
## 1540      11         3           4       2             1           4
## 1541      54         2           3       7             1           1
## 1542      41         3           3       2             9           1
## 1543      21         2           4       2             9           8
## 1544      26         2           5       5             7           8
## 1545     123         5           1       7             9           1
## 1546      44         1           3       7             1           1
## 1547     123         2           3       2             9           5
## 1548      18         2           1       7             7           1
## 1549      41         3           5       2             9           8
## 1550       6         2           1       2             9           8
## 1551      44         3           4       2             9           8
## 1552      23         2           1       2             9           8
## 1553     111         2           5       2             1           8
## 1554      44         3           4       2             9           8
## 1555      54         3           3       2             1           8
## 1556      54         2           3       8             7           1
## 1557     124         2           1       7             4           1
## 1558     107         2           3       2             9           3
## 1559      41         3           5       2             9           5
## 1560      81         2           1       2             9           8
## 1561      54         3           5       2             9           3
## 1562     124         3           4       2             9           8
## 1563      21         1           1       7             5           1
## 1564     123         2           2       7             7           1
## 1565     109         3           1       4             9           4
## 1566     124         4           3       2             9           8
## 1567      59         2           1       7             7           1
## 1568      44         3           3       2             9           8
## 1569      18         2           3       2            10           3
## 1570     130         2           1       2             1           1
## 1571      21         2           1       2             4           3
## 1574     124         3           4       2             9           8
## 1575     123         2           1       2             9           8
## 1576     124         3           1       2             4           5
## 1578     124         3           2       2             1           8
## 1579      21         3           2       2             4           8
## 1580      54         3           3       2             1           8
## 1581      54         3           1       2             1           8
## 1582      59         2           1       1             9           5
## 1584     129         2           1       1             9           8
## 1585     124         3           4       2             9           8
## 1586      54         3           4       2             1           8
## 1587      11         2           3       2            10           5
## 1588     130         2           3       5             7           4
## 1589      81         3           2       2             1           8
## 1590     124         3           4       2             9           8
## 1591     124         2           3       2             4           1
## 1592      41         2           1       2            10           4
## 1593      21         2           3       8             1           1
## 1594     124         3           4       2             4           8
## 1595      18         1           1       1             7           1
## 1596      54         3           2       2             1           8
## 1597     130         2           1       1             1           1
## 1598     124         3           1       6             7           4
## 1600      54         2           4       2             1           1
## 1601     124         3           5       2            10           8
## 1602      57         2           3       2             9           8
## 1603     106         3           1       1             8           1
## 1604      59         3           5       7             7           4
## 1605      23         2           1       2             9           8
## 1606     123         3           4       2             9           8
## 1607      97         2           1       2             9           8
## 1608     123         1           3       2             1           8
## 1609      44         3           1       2             1           5
## 1610      41         2           4       2            10           8
## 1611      41         2           4       2             1           4
## 1612      44         3           4       2             9           8
## 1613      21         1           3       2             4           1
## 1614      81         3           1       7            10           1
## 1615     106         2           3       4             5           8
## 1616     120         2           3       2             5           1
## 1617      54         2           4       2             1           8
## 1618     106         3           1       1             1           8
## 1619     124         2           3       2             1           4
## 1620     107         2           3       2             1           8
## 1621       6         1           1       2             9           8
## 1622     129         2           1       1             7           1
## 1624     123         1           1       7             7           4
## 1625      39         3           5       2             9           8
## 1626     124         3           1       2             4           8
## 1627     120         2           1       1             7           1
## 1629     106         2           1       1             1           8
## 1630       6         2           4       8             9           1
## 1631      86         3           5       2             5           1
## 1633      41         2           3       4             4           5
## 1634       6         3           1       2             9           1
## 1635      41         2           1       2             1           8
## 1636      54         3           4       2             9           8
## 1637     123         2           1       2             4           5
## 1638      11         3           1       2             1           8
## 1640     124         2           4       2             4           8
## 1641     124         2           3       2             9           8
## 1642     123         2           4       7             9           1
## 1643      54         3           4       2             1           8
## 1644      11         4           1       1             9           8
## 1645      11         3           1       2             7           1
## 1646     106         2           1       1            10           5
## 1647      69         2           5       7             7           1
## 1648      21         3           2       2             4           1
## 1649     124         3           4       2             9           8
## 1651     130         2           1       1             2           1
## 1652     106         2           3       2             1           7
## 1653     124         1           3       6            10           8
## 1654      59         2           3       1             4           5
## 1655     112         2           3       2             9           8
## 1656      41         3           4       2             9           8
## 1657     112         2           1       2             3           1
## 1658     123         2           5       7             1           1
## 1659      44         3           1       2             9           3
## 1662      39         2           1       1             8           1
## 1663      41         3           5       2             9           8
## 1664     129         2           1       1             1           8
## 1665      92         2           4       2             9           8
## 1666     123         2           4       2             1           1
## 1667      41         2           3       2             9           8
## 1669      57         1           1       7             5           3
## 1670     124         2           3       6             9           1
## 1671      59         2           1       4             8           3
## 1672     123         2           1       2             1           1
## 1673     124         3           5       2             9           1
## 1674     122         4           4       2             9           8
## 1675     123         3           2       2            10           8
## 1676     107         1           3       2             1           8
## 1677     124         2           1       4             1           3
## 1678     124         2           1       4             8           5
## 1679     129         1           3       1             4           1
## 1680      54         2           4       2             1           8
## 1681     124         3           4       2             4           8
## 1682     129         2           1       1             7           1
## 1683     130         2           4       1            10           8
## 1684      49         2           3       2            10           8
## 1685     106         3           3       1            10           3
## 1687      81         3           4       7             9           8
## 1688     111         2           1       7             1           1
## 1689      21         4           1       7             1           1
## 1690      11         1           1       7             1           1
## 1691     119         3           1       7             1           1
## 1692      54         3           4       2             1           8
## 1693     112         3           3       2             9           8
## 1694     129         2           1       1             1           1
## 1695      59         3           1       4             4           4
## 1696     115         3           1       4             9           5
## 1697      40         2           1       4             4           1
## 1698     124         3           1       2             9           8
## 1699       6         2           3       2             4           1
## 1700      81         2           1       2             1           4
## 1701      41         3           5       2            10           8
## 1702      71         2           3       2             4           1
## 1703       6         2           4       2             1           8
## 1704      18         2           1       7             5           1
## 1705     124         3           5       7            10           1
## 1706     106         2           3       2             1           1
## 1707      44         2           3       2             9           8
## 1708     123         3           1       2             1           1
## 1709      41         3           1       2             1           8
## 1710       7         3           1       8             9           4
## 1711       6         1           1       2             9           8
## 1712     106         3           1       1            10           8
## 1713      92         1           1       8             1           3
## 1714     112         3           1       4             4           8
## 1715      41         2           5       1             9           1
## 1716      70         1           1       5             7           4
## 1717     108         4           1       2            10           8
## 1718      46         3           1       4             5           8
## 1719      44         3           4       2             4           8
## 1720     130         2           1       1            10           1
## 1721      34         1           1       1             2           1
## 1723      44         3           3       1             7           1
## 1724     112         2           4       2             9           8
## 1725     106         3           3       4            10           4
## 1726     122         3           3       2             9           8
## 1727      21         3           1       2             9           8
## 1728     100         2           1       2             1           3
## 1729       6         4           4       2             9           8
## 1730      54         1           3       2            10           6
## 1731      15         2           4       2             9           8
## 1732      59         3           1       7             7           8
## 1733      59         2           2       7             7           4
## 1734     130         2           1       1             9           8
## 1735     124         3           4       2             9           8
## 1736      54         2           5       2             1           8
## 1737     124         3           1       5             7           6
## 1738     120         2           1       1             8           5
## 1739     123         1           4       2             4           8
## 1740     124         3           1       4             8           3
## 1741     124         2           1       1             1           1
## 1742     124         4           1       7             7           1
## 1743     123         1           1       2             4           8
## 1744      96         1           1       2             1           5
## 1745     123         2           5       2             1           8
## 1746     124         1           1       2             9           8
## 1747     124         3           4       2            10           8
## 1748       6         3           1       1             9           4
## 1749     124         2           4       2             9           8
## 1750     107         2           3       2            10           1
## 1751     130         2           1       1            10           3
## 1752     123         2           1       4             1           1
## 1753      54         2           4       2             1           8
## 1754      52         2           3       2             4           8
## 1756      41         3           4       2             9           8
## 1757      59         2           3       2            10           1
## 1758     123         2           1       2             4           5
## 1759     122         3           5       7             5           1
## 1760      44         3           4       2            10           8
## 1761     100         2           1       2             1           8
## 1762      54         2           5       2             1           8
## 1763     106         3           1       4             9           8
## 1764      21         2           1       1             7           4
## 1765      81         3           1       7             7           1
## 1766      87         2           1       7             9           1
## 1768     124         1           1       8             9           1
## 1769     106         2           4       2             5           1
## 1770       6         2           3       2             4           8
## 1771      44         4           3       7             9           1
## 1772     124         2           1       2             9           8
## 1773     124         4           1       2            10           8
## 1774     124         3           4       2             9           3
## 1775     124         4           4       2             9           8
## 1776      54         1           1       2             1           1
## 1777      44         1           3       2             1           3
## 1778      81         2           4       7             5           1
## 1779      81         2           3       2            10           8
## 1780     124         3           4       2             9           8
## 1781      95         1           1       7             7           1
## 1782      44         1           4       2             1           8
## 1783     120         2           1       7             7           1
## 1784      81         4           4       2            10           8
## 1785      96         2           1       7             5           1
## 1786     124         1           3       2             9           5
## 1787     106         1           4       2             1           5
## 1788     124         3           3       2             9           8
## 1789      54         1           4       2             1           8
## 1790     130         2           1       1             1           2
## 1791      49         2           1       1             8           8
## 1792      49         2           1       1             4           1
## 1793     107         3           5       2             9           8
## 1794     129         2           3       1            10           7
## 1795      21         1           3       2             1           3
## 1796     123         3           5       5             1           1
## 1797     124         2           1       2             4           8
## 1798     124         3           3       2             4           8
## 1799      44         2           4       2            10           8
## 1801      54         2           4       2             1           8
## 1802      59         3           1       2             7           5
## 1803     130         3           1       1             9           5
## 1804     124         4           4       2             9           8
## 1805      15         2           3       2             4           5
## 1806     123         2           2       7            10           4
## 1808      44         2           4       2             5           5
## 1809     124         4           4       2             9           8
## 1810     124         3           4       2            10           8
## 1811     111         3           3       1             1           1
## 1812     107         1           3       2            10           1
## 1813      11         3           4       2             9           8
## 1814      86         3           1       2             5           1
## 1815     119         3           3       7             9           1
## 1816     124         1           1       2             1           1
## 1817     106         3           1       4             9           5
## 1818      54         2           1       7             5           1
## 1819     124         4           1       2             9           8
## 1820     123         1           1       2             4           8
## 1821     130         2           3       1             1           1
## 1822       6         4           4       2             9           8
## 1823     120         2           1       4             1           2
## 1824      44         3           1       1             8           1
## 1825      54         3           5       2             1           3
## 1826     120         2           3       1             9           1
## 1827     123         2           3       1            10           4
## 1828     107         2           4       2             1           3
## 1829     124         3           1       2             9           8
## 1830      54         3           5       2             1           3
## 1831     124         3           1       2             9           1
## 1832     120         2           1       1             2           1
## 1833     124         2           4       2             9           8
## 1834      21         2           3       8             4           4
## 1835     107         4           4       2             5           8
## 1836     106         2           1       2             9           8
## 1837     106         3           1       2             3           5
## 1838     123         2           3       2             4           1
## 1839       6         3           1       2             9           5
## 1840     123         2           3       2             1           1
## 1841     123         2           1       2             4           8
## 1842      44         1           4       2             1           8
## 1843     123         2           1       7             7           1
## 1844      59         2           1       2             1           8
## 1845     120         2           1       7             5           1
## 1846      54         2           5       2             1           1
## 1847     123         3           1       4             7           1
## 1848     120         1           1       1             7           1
## 1849      44         2           4       2            10           8
## 1850      92         2           1       8             9           1
## 1851     124         3           1       2             4           5
## 1852      70         2           1       4             1           1
## 1853      41         3           4       2             1           8
## 1854     123         2           1       2             4           8
## 1855      41         3           1       2             7           8
## 1856     124         4           1       2             9           8
## 1857      40         2           4       2             9           5
## 1858      21         2           5       7             1           1
## 1859       6         1           1       2             4           1
## 1860      54         3           4       2             1           8
## 1861      57         4           1       2             4           8
## 1862     123         2           2       7             1           1
## 1863     124         2           5       2             1           1
## 1864      54         3           4       2             9           8
## 1865      49         3           3       2             9           1
## 1866       6         2           4       2             5           4
## 1867      54         2           1       2             1           8
## 1868     122         2           1       7             7           1
## 1870     124         4           4       2             9           8
## 1871     112         4           4       7             5           1
## 1872     106         2           1       5             9           1
## 1873     124         4           1       2             9           1
## 1874      21         2           4       2             4           3
## 1875     130         2           1       1             1           1
## 1876     123         3           4       1            10           5
## 1877      44         3           5       2             9           8
## 1878      54         2           5       2             9           8
## 1879     123         2           1       1             9           5
## 1880     123         2           3       2             9           1
## 1881      59         2           1       4             8           4
## 1882      44         2           1       2             9           8
## 1883     124         4           4       2            10           8
## 1884      44         4           4       2             9           8
## 1885      41         2           4       2             4           8
## 1886     130         3           1       1             1           1
## 1887      21         5           1       2             1           2
## 1888     106         2           3       2             1           8
## 1889      41         2           3       2             9           8
## 1890     124         2           3       2             1           8
## 1891      49         2           1       1             9           4
## 1892     129         2           1       1             9           1
## 1893     124         1           1       6            10           4
## 1894     123         1           3       2             1           1
## 1895       6         2           3       2             9           8
## 1896      96         2           1       7             5           1
## 1897       6         3           4       7             1           8
## 1898     129         2           1       7             5           1
## 1899     123         1           1       2             4           1
## 1900      96         2           1       7             1           5
## 1901      41         2           4       2             2           8
## 1902      54         2           4       2             1           1
## 1903     123         2           4       2            10           4
## 1904      95         2           1       2             1           8
## 1905      81         2           1       7             7           1
## 1906     120         2           1       1             7           4
## 1907     124         2           1       1             9           4
## 1908     124         3           2       2             4           5
## 1909      54         3           1       2             9           6
## 1912     111         2           1       1             9           1
## 1913      31         2           1       4             8           1
## 1914     120         3           1       1             9           1
## 1915     124         2           4       2             4           1
## 1916     106         2           2       7             1           1
## 1917      41         2           4       2             9           8
## 1918      31         3           2       2             9           8
## 1919      11         2           4       2             9           8
## 1920      21         3           4       2             9           8
## 1921      87         2           1       1             8           8
## 1922      52         2           4       2             4           5
## 1923      27         1           1       7            10           8
## 1924      44         3           4       2             9           3
## 1925     106         2           4       2             1           8
## 1926      91         2           1       7             3           1
## 1927      44         2           4       2             1           8
## 1928      54         3           4       2             1           8
## 1929      97         2           1       2             1           1
## 1931     124         3           1       2             9           8
## 1932     124         3           4       2             9           8
## 1933     130         1           3       1             1           1
## 1934      41         2           4       2             9           8
## 1935     129         2           1       1             7           1
## 1936      54         1           4       2             1           8
## 1937     123         3           5       2            10           7
## 1938      18         1           1       7             5           1
## 1939      44         2           3       1             7           5
## 1940      11         3           4       2             1           8
## 1941      11         3           4       2             1           8
## 1942     106         2           3       4             1           8
## 1943      41         2           4       2             2           8
## 1945      41         1           4       2             1           8
## 1946      54         2           4       2             1           8
## 1947      54         1           4       2             1           1
## 1948      54         4           4       2             1           8
## 1949      54         3           4       2            10           8
## 1950     106         2           5       2             1           5
## 1951      54         2           1       2             9           1
## 1952     123         1           1       2             4           8
## 1953      44         1           3       2             9           1
## 1954      81         3           1       2             9           1
## 1955      49         2           1       2            10           8
## 1956       6         2           4       2             6           3
## 1957      96         1           1       7             5           1
## 1958      54         3           4       2             1           8
## 1959      23         4           4       1             4           1
## 1960       6         2           1       2             5           4
## 1961      49         2           4       2             1           1
## 1962      98         1           1       2             1           1
## 1963      54         3           4       2             1           8
## 1964      54         4           3       2             1           8
## 1965      41         3           5       2             5           1
## 1966     124         4           3       2             9           8
## 1967      74         2           1       8             7           6
## 1968      41         3           5       2            10           8
## 1969     124         4           3       2             4           8
## 1970     129         2           1       1             9           1
## 1972      57         3           1       2             1           4
## 1973      86         3           3       7             7           1
## 1974      44         2           1       2            10           8
## 1975      41         2           4       7             9           1
## 1976      54         3           4       2             1           3
## 1977     123         3           4       1             9           4
## 1978       7         1           1       2             4           8
## 1979     120         3           1       4             8           6
## 1980      21         4           4       2             9           8
## 1981     112         3           1       2             2           1
## 1982      21         3           5       2            10           8
## 1983     124         1           3       2             9           8
## 1984      60         1           1       2             4           4
## 1985       6         2           2       2             4           8
## 1986     106         2           3       2             1           8
## 1987     123         2           1       4             4           1
## 1988     124         3           1       2             9           8
## 1990      49         2           1       1             4           1
## 1992      26         2           1       1             7           1
## 1993     120         3           1       1             7           1
## 1994     106         4           4       2             1           8
## 1995      23         4           1       2             9           8
## 1996     123         2           3       1            10           8
## 1998     112         3           4       2             9           8
## 1999     129         4           1       1             8           3
## 2000      11         1           1       2             1           1
## 2001     124         4           4       2            10           8
## 2002     120         2           1       4             5           1
## 2003      44         2           1       2             9           3
## 2004       7         3           1       7             4           3
## 2005       6         2           1       2            10           8
## 2006     123         3           4       2            10           1
## 2007     119         3           1       4             7           4
## 2008     123         2           5       7             1           1
## 2009      21         2           1       2             4           5
## 2010      54         2           3       2             9           5
## 2011     123         2           4       2             9           8
## 2013     124         4           4       2             9           8
## 2014     123         2           5       2             9           8
## 2015      54         2           4       2             5           3
## 2016      54         1           4       2             1           8
## 2018      59         2           1       7             1           1
## 2019      91         1           4       2             1           5
## 2020      96         2           3       7             5           1
## 2021     119         3           1       2             9           8
## 2022      72         2           3       2            10           1
## 2023      54         2           3       2             9           8
## 2024     124         2           4       2             4           8
## 2025       7         3           4       2             9           8
## 2026     129         3           1       1             7           1
## 2027      60         2           4       2             9           8
## 2028      40         3           1       7             9           8
## 2029      18         2           1       7             7           4
## 2030     129         2           3       1            10           8
## 2031     124         3           4       2             9           8
## 2032     124         2           1       2             4           3
## 2033      54         2           5       2            10           1
## 2034     124         2           3       8            10           4
## 2036      85         3           1       2             9           3
## 2037      41         3           5       7             1           1
## 2038       6         3           1       2             4           8
## 2039     124         4           1       2             9           4
## 2040      81         2           1       2             1           4
## 2041      54         1           4       2             1           8
## 2042      41         1           1       7             1           1
## 2043     112         3           4       2             2           1
## 2044      23         2           1       2            10           1
## 2045     123         1           1       2             9           1
## 2046     123         2           1       2             9           1
## 2047     107         4           3       2             9           8
## 2048      90         2           1       2             4           8
## 2049      49         2           1       2             1           1
## 2050       6         2           4       2             9           8
## 2051     124         2           4       2             1           5
## 2052     106         2           1       4             9           8
## 2053      95         2           1       2             9           8
## 2054     129         2           1       1             1           8
## 2055     124         2           1       7            10           1
## 2057     124         4           4       2             9           8
## 2058     106         3           1       4             9           3
## 2059     124         3           4       8             7           8
## 2060      54         2           1       2             1           8
## 2061     124         2           1       2             4           8
## 2062      54         2           4       2             9           8
## 2063      44         3           5       7             9           4
## 2064     107         3           1       2             9           8
## 2065     119         2           3       2             4           4
## 2066      40         2           1       2             5           5
## 2067     124         2           1       6             9           4
## 2069      44         3           5       7             5           1
## 2070      54         1           4       2             1           8
## 2071       4         3           1       2             3           8
## 2072      41         4           3       2             1           3
## 2074     124         2           3       2             9           8
## 2075     120         2           1       2             1           1
## 2076     129         2           1       1             9           1
## 2077     124         3           1       2             4           1
## 2078     123         3           5       4             4           8
## 2079     123         2           3       2             4           8
## 2080     120         2           1       1             9           3
## 2081     124         3           3       2             9           8
## 2082     106         3           1       7             1           4
## 2083      41         2           1       2            10           6
## 2084      21         2           4       7            10           4
## 2085      41         2           5       2            10           1
## 2086     107         2           4       2             9           8
## 2087      44         3           1       4             8           1
## 2088     123         2           4       2             9           8
## 2089       6         2           4       2             9           8
## 2090     124         2           3       1            10           7
## 2091      49         3           3       1            10           8
## 2092      44         3           1       4             5           1
## 2093      54         3           3       2             9           8
## 2094       6         3           1       2             9           1
## 2095      11         2           4       2             1           8
## 2096       6         2           3       2             4           8
## 2097       6         2           4       2             1           1
## 2098     124         2           1       1             9           4
## 2099     129         2           1       1             1           5
## 2100     129         2           1       1             1           3
## 2101      18         3           1       1             1           1
## 2102     123         2           1       5             4           8
## 2103      71         3           3       2             9           8
## 2104     123         2           1       2             9           1
## 2105      21         2           4       2             9           8
## 2107      31         4           3       2             1           8
## 2108     123         5           1       7             9           8
## 2110      54         2           4       2             1           8
## 2111      11         1           1       2             7           1
## 2112      82         3           4       2             9           8
## 2113     106         2           1       2             4           8
## 2114     129         2           1       1             1           1
## 2116     123         2           1       1             7           5
## 2117      49         1           1       1             1           1
## 2118     124         2           1       1             7           4
## 2119      57         4           1       2             9           8
## 2120      41         2           4       2             1           8
## 2121     123         2           2       7             1           1
## 2122     123         4           3       2             9           8
## 2123     106         2           3       1             1           8
## 2124      49         3           3       2             8           1
## 2125     123         1           3       2             1           8
## 2126      82         4           4       2             9           8
## 2127     107         2           4       2             1           8
## 2128     124         2           1       7             9           1
## 2129      54         2           1       2             1           3
## 2130     124         4           4       2             9           5
## 2131      81         2           1       2             4           1
## 2132       6         3           4       2             9           8
## 2133      54         2           4       2             1           8
## 2134       6         2           3       2             4           8
## 2135       6         3           1       2             9           8
## 2136      21         3           1       8             5           5
## 2137      81         2           4       2             1           5
## 2138      44         3           3       2             9           8
## 2139      21         4           4       2             9           8
## 2140      54         2           5       2             1           8
## 2141      44         2           2       7             7           4
## 2143     124         2           1       2            10           8
## 2144      54         2           4       2             1           8
## 2145     123         2           5       7             7           1
## 2146      41         2           2       2            10           1
## 2147      23         2           1       7             7           1
## 2148      31         1           1       7             1           1
## 2149      54         3           4       2             5           8
## 2150      59         2           1       4             8           1
## 2151     106         2           1       2             1           3
## 2152     123         2           1       4             1           1
## 2153      54         3           4       5             2           8
## 2154      54         2           5       2             1           3
## 2155     124         2           1       7             1           1
## 2156     115         2           1       4             4           5
## 2157     124         4           1       2             9           8
## 2158      49         1           1       1             1           3
## 2159     123         2           2       7             1           1
## 2160     129         2           1       1            10           6
## 2161      49         2           4       2             9           1
## 2162     123         3           1       7             5           1
## 2163     112         2           3       2            10           1
## 2164     107         1           4       2             4           1
## 2165     124         2           1       2             9           1
## 2166     124         4           4       2             9           1
## 2167      44         1           3       2             5           8
## 2168     124         4           4       2            10           3
## 2169     124         2           3       7             5           1
## 2170     124         2           1       1             9           5
## 2171      54         3           4       2             1           8
## 2172     130         2           1       1             5           3
## 2173     107         3           1       2            10           5
## 2174      77         2           4       2            10           8
## 2175     102         2           1       2             9           1
## 2176     129         2           1       1             9           1
## 2177      81         2           4       2            10           8
## 2178       7         2           1       2             1           3
## 2179     130         2           3       1             8           1
## 2180     124         3           1       6             5           4
## 2181     123         2           1       6             7           4
## 2182     123         3           2       2             4           4
## 2183     106         3           1       1             9           3
## 2184      59         2           1       4             7           5
## 2185       6         2           1       2             4           8
## 2186      74         2           3       2             1           1
## 2187     120         2           1       7             1           1
## 2188     124         2           3       7             5           4
## 2189      44         1           1       2             4           8
## 2191      34         2           1       7             5           1
## 2192     124         4           4       2            10           8
## 2193     120         2           3       7             1           8
## 2194      54         3           2       2             5           8
## 2195     129         2           1       1             7           1
## 2196     111         3           1       7             7           1
## 2197      26         3           1       7             1           1
## 2198     124         2           1       2             9           5
## 2199     107         2           4       2            10           3
## 2200     124         2           4       2             4           8
## 2201      44         3           5       2             1           1
## 2202     124         2           1       2             9           8
## 2203      41         3           5       2             9           8
## 2204      21         2           4       2             9           1
## 2205     123         2           3       2             4           8
## 2206     107         2           4       2             1           8
## 2207     123         2           4       7             1           1
## 2208      60         3           1       2             9           8
## 2209      44         2           4       2             1           8
## 2210      54         2           4       2             1           8
## 2211      81         3           1       2             9           1
## 2212     120         2           1       7             7           1
## 2213      52         1           1       7             9           1
## 2214     123         2           2       7             1           1
## 2215      54         2           4       2             1           8
## 2216     130         2           1       5             9           1
## 2217     106         3           1       7             9           1
## 2218      41         2           4       2             9           8
## 2219     130         2           1       1             5           1
## 2220      31         1           3       2             5           8
## 2222      18         1           3       2             1           1
## 2223      59         3           3       2            10           1
## 2224      59         2           3       2             1           1
## 2225      91         2           5       4             1           1
## 2227     124         2           4       2             9           8
## 2229      54         3           4       2             1           8
## 2230      41         2           1       2             4           8
## 2231     124         4           1       2             9           1
## 2232     130         2           1       1             1           4
## 2233     124         2           2       2             9           8
## 2234      30         3           1       2             4           1
## 2235     123         4           5       2             3           8
## 2236      85         3           4       2             1           8
## 2237     123         3           5       2             9           4
## 2238     124         2           1       2             4           1
## 2239     123         2           2       7             1           1
## 2241      49         2           1       2             4           8
## 2242     124         3           4       2             9           8
## 2243     129         2           1       1             5           1
## 2244      52         1           1       3             9           8
## 2245     103         1           3       2             9           8
## 2246      59         3           2       2             3           5
## 2247      11         2           1       2             1           3
## 2248     130         2           1       7             7           1
## 2249      34         1           1       7             7           1
## 2250      82         2           3       7             5           8
## 2251     120         2           1       4             9           5
## 2252      31         3           1       2             9           8
## 2254     122         2           1       2             1           1
## 2255     123         1           1       2             4           8
## 2256     124         3           4       7             1           4
## 2257     123         2           3       7             1           1
## 2258      54         3           3       2             4           8
## 2260     129         1           1       7             5           1
## 2261      44         5           3       7             7           1
## 2263      41         2           4       2             1           4
## 2264      57         2           1       2             4           8
## 2265     107         3           4       2             9           1
## 2266     123         2           4       2             1           1
## 2267     130         2           1       1             1           6
## 2268     124         4           4       2             9           8
## 2269     120         2           1       7             1           1
## 2270      96         1           1       1             7           1
## 2271      54         4           1       2            10           3
## 2272     124         2           1       1            10           1
## 2273      52         5           3       2             4           8
## 2275      54         3           1       8             7           6
## 2276     123         2           1       2             9           8
## 2277     120         2           4       2             1           8
## 2278      23         3           4       2             9           8
## 2279     124         2           3       1             9           1
## 2280     120         3           1       7             9           1
## 2281     130         2           1       1             1           1
## 2282      59         2           1       1             7           1
## 2283      59         2           1       4            10           3
## 2284     129         2           1       1             9           1
## 2285      41         2           1       8             5           4
## 2286     124         2           1       2             9           2
## 2287     123         3           1       7             4           8
## 2288     124         3           3       2             9           8
## 2289       6         3           4       2             9           8
## 2290      44         3           1       7             4           8
## 2291      86         2           1       7             9           1
## 2292      54         2           3       2             1           8
## 2293     130         2           3       1             1           1
## 2294      51         2           4       2             1           1
## 2295     130         2           1       1            10           4
## 2296      59         4           4       2             9           1
## 2297      44         2           4       2             9           8
## 2298     109         3           3       2             1           1
## 2299      92         2           4       2             1           8
## 2300     123         2           4       2             1           1
## 2301       6         2           4       2             9           8
## 2302     123         3           1       1             9           1
## 2303     106         3           1       1             8           4
## 2304     124         2           1       4             8           1
## 2305     124         3           2       2             1           3
## 2306     119         3           5       2            10           8
## 2307      44         3           1       2             4           1
## 2308     123         1           3       2            10           8
## 2309     123         2           1       4             8           4
## 2310     106         2           3       4             8           8
## 2311      54         3           4       2             1           8
## 2312     106         3           4       2             1           8
## 2313     124         3           1       2             9           8
## 2315      44         3           4       2            10           8
## 2316     124         3           1       2             9           8
## 2317      26         2           1       7             1           8
## 2318     111         2           4       2             1           8
## 2319      11         2           4       2             1           8
## 2320      11         2           4       2             1           8
## 2321     130         2           1       1             3           8
## 2322       4         3           1       2             9           8
## 2323      81         3           4       2             9           8
## 2324     123         1           1       2             4           1
## 2325     124         2           3       2             4           8
## 2326      21         2           4       2             1           5
## 2327     107         2           1       2             1           1
## 2328      81         3           2       7             5           1
## 2329     124         2           3       2             9           8
## 2330      41         2           1       2             3           3
## 2331     124         3           4       2             9           8
## 2332      34         1           1       7             2           5
## 2333     106         2           3       4             8           8
## 2334     123         4           1       2             1           1
## 2335      54         3           5       2             5           8
## 2336     110         3           5       2            10           8
## 2337      54         2           5       2             1           8
## 2338     107         2           3       2             1           3
## 2339     124         2           1       2             1           5
## 2341     129         1           3       6             5           1
## 2342     124         3           3       2             4           8
## 2343      41         2           3       2             9           8
## 2344     111         2           3       2             9           1
## 2345      86         1           1       2             1           1
## 2347     123         2           4       2             1           8
## 2348     124         4           1       2             9           8
## 2349     129         2           1       1             5           1
## 2350     124         4           1       2             9           8
## 2351     109         2           1       7             1           1
## 2352     124         1           3       2             5           5
## 2353     120         4           1       7             7           1
## 2354      31         2           3       2            10           5
## 2355     129         2           1       5             7           1
## 2356     130         2           1       1             5           8
## 2357      41         2           4       2             9           5
## 2358      18         2           3       7             5           1
## 2359      41         1           1       8             9           1
## 2360     123         3           1       7             9           1
## 2361      44         2           3       2             9           8
## 2362     124         3           1       2             4           3
## 2363     130         2           4       1             9           1
## 2364      44         1           2       2             1           8
## 2365     130         2           1       1             1           4
## 2366      41         3           1       1             9           8
## 2367     123         3           1       7             5           1
## 2368     123         2           3       2             1           3
## 2369      23         4           3       2            10           8
## 2370     123         4           3       7            10           1
## 2371     123         2           5       2             9           8
## 2372      41         3           4       2             1           1
## 2373      44         2           4       2             9           3
## 2374      59         2           3       2             4           5
## 2375     130         2           3       1             1           1
## 2376      44         3           4       2             4           8
## 2377     130         2           4       2             1           1
## 2378      44         3           3       7             7           1
## 2379     124         4           1       2            10           8
## 2380      49         3           1       2             1           8
## 2381      93         3           1       7             2           1
## 2383      11         2           1       2             5           1
## 2384      59         3           1       4             4           4
## 2385     120         3           4       2             5           3
## 2386       6         3           1       7             7           1
## 2387      86         2           5       7             7           1
## 2388      41         3           5       2            10           4
## 2389     124         2           1       2             9           3
## 2390     130         2           1       1            10           1
## 2391     130         2           1       1            10           1
## 2392      44         3           4       2             1           8
## 2394     124         3           4       2             9           5
## 2395     129         1           5       5             7           1
## 2396      44         3           4       2             9           8
## 2398      94         2           3       2             4           1
## 2400      86         1           3       7             7           1
## 2401      44         3           2       7             9           1
## 2402     123         4           1       1             9           1
## 2403      41         3           5       2             9           3
## 2404      54         3           1       2             3           8
## 2405      21         1           1       8             1           8
## 2406     124         3           4       2             9           8
## 2407     123         2           1       4            10           1
## 2408     120         2           1       1             1           1
## 2409     119         2           4       2             1           8
## 2410     124         3           4       2             9           8
## 2411      41         1           5       2            10           8
## 2412     123         2           3       8             5           4
## 2413      60         3           4       2             9           8
## 2414      44         2           4       2             1           1
## 2415       6         1           1       2             9           8
## 2416     112         1           5       2            10           8
## 2417      44         2           1       6             7           1
## 2418     124         3           4       2             9           8
## 2419      54         3           2       2             9           8
## 2420     106         2           3       4             8           7
## 2421     124         4           1       2             9           5
## 2422      49         3           1       2             5           1
## 2423       6         4           4       2             1           8
## 2424      54         2           4       2             1           1
## 2425     123         3           4       2             9           8
## 2427     123         3           3       4             4           5
## 2428     107         3           5       2             9           8
## 2429      41         2           1       2            10           3
## 2430     119         2           1       7             7           1
## 2431     106         2           4       2             3           1
## 2432      44         2           4       2             1           4
## 2433      21         4           3       2             9           8
## 2434      41         2           4       2             9           8
## 2435     124         2           3       7             7           1
## 2436      95         2           1       7             7           1
## 2437      21         3           4       2             1           3
## 2438      23         2           3       2             9           1
## 2439     123         1           1       8             1           1
## 2440       6         2           1       2             9           8
## 2441       6         2           4       2             1           1
## 2442     106         2           1       4             7           4
## 2443      23         3           3       2            10           1
## 2444     123         2           4       7            10           1
## 2445      59         3           1       4             4           7
## 2446     123         2           4       2             9           1
## 2447     123         1           1       6             9           2
## 2448     123         1           1       2             5           8
## 2449     106         3           1       4             9           8
## 2450     110         2           4       2            10           8
## 2451      44         2           3       2             9           8
## 2453      54         1           4       2             1           8
## 2454      41         2           3       2             9           3
## 2455     123         1           3       7             1           1
## 2456      82         3           3       2             9           8
## 2457      44         3           1       1            10           8
## 2458     124         5           5       2             9           1
## 2459     129         2           3       1             1           4
## 2460     129         3           1       7             7           1
## 2461     130         2           1       1             9           8
## 2463     107         3           5       7            10           8
## 2464     107         2           4       2             1           4
## 2465      41         2           4       2             9           8
## 2466      44         3           1       2             8           1
## 2467     124         2           4       2             9           4
## 2468      54         3           5       2             1           8
## 2470      54         2           1       2             9           1
## 2471      31         3           1       2             4           8
## 2473      44         3           1       1             4           3
## 2474      41         3           4       2             9           8
## 2475     123         2           1       2             4           8
## 2476     124         3           4       2             9           1
## 2477      44         2           1       7             4           1
## 2478     129         2           1       7             1           1
## 2479      41         3           3       2             9           8
## 2480     112         1           4       2             7           5
## 2483      21         3           1       2             9           8
## 2484      21         2           4       2             3           8
## 2485      84         3           5       2             9           3
## 2486     124         3           1       1             9           1
## 2487      44         3           1       2            10           1
## 2488      54         3           3       2             9           8
## 2489     106         4           4       2             7           1
## 2490      81         3           1       2             9           8
## 2491     123         3           1       2             5           4
## 2492     106         2           4       2             5           8
## 2493      91         2           5       2             9           8
## 2495       7         3           3       7             9           1
## 2496      59         2           3       1             9           4
## 2497      54         2           4       2             1           5
## 2498       6         3           3       2             9           8
## 2499     124         2           4       2             4           8
## 2500      59         2           1       2             7           1
## 2501      54         2           4       2             1           8
## 2502      44         2           4       2             9           1
## 2503      44         2           4       7             1           1
## 2504     123         2           4       2             1           1
## 2505     123         2           5       2             4           8
## 2506     123         2           3       8            10           8
## 2507     106         2           1       4            10           8
## 2508       6         2           4       2            10           8
## 2509     107         2           3       2             1           1
## 2510     107         2           3       2            10           4
## 2511     123         1           1       8             7           8
## 2512      49         2           1       1             8           4
## 2513      41         2           4       2             1           3
## 2514      54         3           4       2             1           8
## 2515       6         2           4       2            10           8
## 2518     123         3           3       2             9           8
## 2519     123         2           4       2             1           8
## 2520      91         1           3       2             9           8
## 2521       6         2           1       2             9           8
## 2522      81         3           3       2             9           8
## 2523      21         4           1       8             7           5
## 2524     123         2           5       2             9           8
## 2525     123         1           1       2             4           8
## 2526     106         2           1       4            10           3
## 2527      11         3           2       2            10           8
## 2528       6         2           4       2             3           8
## 2529      81         3           4       2            10           8
## 2530      96         1           1       7             7           1
## 2531      59         4           1       1            10           4
## 2532      54         2           4       2             1           8
## 2534     124         3           2       3             1           4
## 2535      54         1           4       2             1           3
## 2536       6         2           1       2             9           8
## 2537      31         2           1       8             7           5
## 2538     112         2           4       2             1           5
## 2539     111         1           1       1             9           3
## 2540      59         2           1       1             9           1
## 2541     123         2           4       2             9           8
## 2542      41         4           4       2             9           1
## 2543     123         2           1       2             4           5
## 2544     130         2           1       2             1           1
## 2545     124         4           4       2             9           8
## 2546     122         3           4       2             2           1
## 2547     106         4           4       2             1           8
## 2548       6         1           1       2             9           1
## 2550     122         3           5       2            10           5
## 2551      41         3           3       7             9           1
## 2552      40         2           4       2             1           8
## 2553      18         3           1       1             9           1
## 2554       6         2           3       2             9           7
## 2555     130         3           1       1             7           8
## 2556       6         3           4       2             5           1
## 2558     130         2           3       1             1           3
## 2559     129         2           1       1             9           1
## 2560     124         3           3       2             9           5
## 2561      41         3           5       2             1           5
## 2562      81         2           1       2             4           8
## 2563      41         2           4       2             9           8
## 2564       6         1           1       2            10           8
## 2565      54         2           4       2             1           8
## 2566      59         3           1       4             4           6
## 2567      44         3           4       2            10           8
## 2568      44         3           3       2             9           5
## 2569      54         3           4       2             3           8
## 2570     129         3           1       1             5           1
## 2571      54         1           4       2             1           8
## 2572     130         2           3       1             5           7
## 2573     124         4           3       2             9           8
## 2574     107         2           4       2             1           8
## 2575     112         3           1       2             9           8
## 2576     124         2           4       2             9           8
## 2577       6         1           3       8             4           4
## 2578      82         2           1       2             4           8
## 2579      81         3           5       2             9           8
## 2580      49         1           1       2             9           8
## 2581      54         2           4       2             1           8
## 2582     129         2           1       7             1           1
## 2583     130         3           4       1             1           1
## 2584     123         2           3       2             9           1
## 2585     124         4           1       2             9           8
## 2586      59         2           1       1             9           4
## 2587      31         3           4       2             9           8
## 2588      54         3           4       2             1           8
## 2589      91         4           1       2             9           3
## 2590      41         2           5       2             1           1
## 2591      41         4           4       2             3           3
## 2592     124         2           3       2             9           8
## 2593      59         2           1       4             8           3
## 2594       6         1           1       8             9           1
## 2595      96         1           1       7             5           1
## 2596     123         3           5       2            10           8
## 2598     123         2           3       2             9           8
## 2599      41         3           4       2             9           1
## 2600      54         3           4       2             1           8
## 2601      41         3           4       2             1           8
## 2602      41         2           5       2             1           8
## 2603     123         2           1       2             4           1
## 2604       6         3           4       2             9           4
## 2605      39         3           1       4             7           8
## 2606     124         4           4       2            10           8
## 2607      54         2           1       2             7           8
## 2608      21         3           3       2             9           8
## 2609      86         3           3       1             8           6
## 2610     123         1           3       2             5           4
## 2611      82         3           1       1             9           5
## 2612     106         2           4       2             9           1
## 2613     107         3           1       2             9           8
## 2614      31         2           4       2             9           8
## 2615     120         2           1       7             7           1
## 2616      44         3           4       2             1           8
## 2617     112         4           4       2            10           8
## 2618      41         2           4       2             1           8
## 2619     129         2           1       1             7           1
## 2620     124         2           1       7             5           1
## 2621      21         3           1       7             7           1
## 2622     124         3           3       1             9           4
## 2623      11         2           2       2             9           8
## 2624      44         3           4       2             9           5
## 2625      81         2           4       2             9           8
## 2626      91         3           4       2             9           8
## 2627     123         3           3       2             1           1
## 2628      18         2           1       1             9           1
## 2629      71         1           1       2             9           8
## 2630      57         1           1       2             7           1
## 2631      44         3           3       2             9           8
## 2632     107         3           4       2            10           8
## 2633      59         2           1       4             4           6
## 2634     123         2           1       7             7           5
## 2635     124         2           1       2             1           8
## 2636     123         2           3       2             4           8
## 2637      41         2           4       2            10           8
## 2638      59         2           4       7             9           1
## 2639      95         1           1       8             7           8
## 2640     129         2           3       1             1           1
## 2641     124         3           4       2            10           8
## 2642      53         3           4       2             1           8
## 2643     124         2           3       2            10           1
## 2644     130         2           1       1             1           8
## 2645     123         1           1       2             5           1
## 2646     119         2           1       1             7           8
## 2648     123         1           1       2             4           8
## 2649      81         2           1       2             8           1
## 2650      59         2           1       4             4           1
## 2651      26         2           1       1             7           1
## 2652     112         4           3       2             9           8
## 2653     124         4           4       2             9           1
## 2654     124         3           3       2            10           8
## 2655      11         2           1       4             8           3
## 2656      11         2           2       2             1           8
## 2657      41         2           4       2            10           8
## 2659      53         2           4       2             9           1
## 2660     124         2           1       7             1           1
## 2661     130         2           1       1             1           1
## 2662      59         3           1       7             7           1
## 2665      41         2           4       2             3           8
## 2666     112         2           3       2             9           8
## 2667     129         2           1       1             1           8
## 2669      81         2           1       2             4           1
## 2670      44         3           2       2            10           8
## 2672      18         2           1       1             7           5
## 2673      44         3           3       7             5           1
## 2674     124         3           5       2             9           8
## 2675     124         2           4       2             9           4
## 2676     102         2           1       2             9           8
## 2677     124         4           1       2             9           3
## 2678     124         3           1       2             1           4
## 2679     124         4           4       2             9           8
## 2680     124         2           4       2             4           8
## 2681     124         4           1       2             9           8
## 2682      44         3           4       2             9           8
## 2684     124         4           3       2             9           8
## 2685     124         2           3       2             4           8
## 2686     124         4           4       2             9           5
## 2687      41         3           5       2            10           8
## 2688     130         2           4       1             9           1
## 2689     124         3           2       2             4           8
## 2690      57         2           2       2             9           8
## 2691     124         2           3       2             9           8
## 2693      59         2           1       4             9           1
## 2695     123         3           3       2             9           4
## 2696      41         1           5       2             9           8
## 2697       6         3           4       2            10           3
## 2698      81         3           3       2             9           8
## 2699      21         2           1       7             1           1
## 2700      41         3           5       2             5           8
## 2701     124         3           1       7             5           1
## 2702     120         2           1       5             7           5
## 2703      31         3           1       2             4           1
## 2704     124         1           3       2            10           8
## 2705     123         1           1       8             1           4
## 2706     129         2           3       1             9           8
## 2707     120         2           3       1            10           1
## 2708      59         2           1       1             7           1
## 2709     123         3           2       2             1           8
## 2710     106         4           4       2             1           8
## 2711      31         3           1       2             9           8
## 2713     123         3           4       2             9           8
## 2714     123         2           1       7             1           1
## 2715      18         1           1       7             5           1
## 2716      66         1           1       5             2           3
## 2717     130         3           1       1             1           1
## 2718     112         2           4       2            10           8
## 2720     124         3           3       2             9           5
## 2721     124         4           4       2            10           8
## 2722     106         3           3       1             9           8
## 2723      54         2           3       2             1           8
## 2724      85         3           4       2             7           5
## 2725      59         2           1       4             4           8
## 2726     102         2           1       1             9           3
## 2727     123         3           1       1             9           8
## 2728      44         3           4       2             9           8
## 2729     124         4           5       2             9           1
## 2730      57         4           1       2             4           8
## 2731     123         4           4       7             7           5
## 2732     124         4           4       2             9           8
## 2733     112         1           1       2             5           5
## 2734      57         2           1       2             9           3
## 2735      54         2           4       2             1           1
## 2737      59         2           1       4             1           1
## 2738     107         4           5       2             1           1
## 2739      44         2           3       2             1           1
## 2740     124         3           4       2             9           8
## 2741      54         2           3       8             7           1
## 2742      54         2           1       2             4           8
## 2743     124         4           1       2             9           8
## 2744      23         2           1       2             1           1
## 2745     124         3           4       2            10           8
## 2746     106         2           1       2             1           3
## 2747     123         2           1       2             4           8
## 2748     123         3           4       2             1           1
## 2749     124         2           3       2             4           8
## 2750      57         2           1       8             7           1
## 2751     123         3           5       2             1           1
## 2752     119         1           1       7             1           1
## 2753      54         3           1       2             1           1
## 2755     123         2           1       2             9           8
## 2756       1         2           1       4             4           1
## 2757      41         1           3       2             1           4
## 2760      41         2           5       2             1           1
## 2761     106         2           1       1             9           8
## 2762      21         2           1       8             9           6
## 2763     123         3           4       2             9           8
## 2764      54         3           3       2            10           8
## 2765      59         2           1       5             7           1
## 2766     123         1           3       2             4           1
## 2767     120         2           1       1            10           1
## 2768      41         2           4       2             4           8
## 2769     123         3           4       2             9           8
## 2770     124         1           1       2             9           8
## 2771       6         3           4       2             1           8
## 2772     124         3           3       2             9           3
## 2773      44         4           4       2             4           8
## 2774     123         2           1       7             5           1
## 2775     106         2           1       4             4           1
## 2776     123         1           1       2             4           8
## 2777     107         1           5       2             1           8
## 2778      81         2           1       2             9           8
## 2779     119         3           1       2             5           1
## 2780     130         2           1       1             1           1
## 2781      41         2           2       2             9           8
## 2782     124         2           1       4             9           1
## 2783      59         2           2       7             5           1
## 2784     130         2           1       1             2           1
## 2785      11         2           4       2             1           4
## 2786      54         2           3       2             9           1
## 2787      49         2           1       4             4           5
## 2788      36         1           1       2             4           1
## 2789       6         1           1       2             9           8
## 2790      96         1           2       7             7           1
## 2791     107         2           4       2             6           1
## 2792     112         1           4       2             9           8
## 2793     124         2           1       2            10           8
## 2794     129         2           1       7             1           1
## 2795      23         2           3       4             1           8
## 2796     124         4           4       2             9           8
## 2797      59         2           1       4             9           1
## 2798      21         2           1       2             1           7
## 2799      44         2           1       4             4           3
## 2800     124         3           1       2             9           8
## 2801      59         2           2       7             1           1
## 2802      59         1           3       7             1           8
## 2803     124         3           1       2             9           1
## 2804      41         3           5       2             1           7
## 2805      91         2           5       2             1           1
## 2806      53         2           3       1            10           1
## 2807      44         2           4       2             3           8
## 2808     123         2           1       2             5           1
## 2809       6         3           1       2             5           8
## 2810      81         2           1       1            10           4
## 2811     124         3           1       2             9           5
## 2813      31         3           4       2             9           4
## 2814     124         3           2       2             7           1
## 2815      11         4           5       2             1           8
## 2816     123         1           1       2             4           3
## 2817     106         3           1       2             7           1
## 2818      41         2           5       2             1           8
## 2821      41         2           4       2             9           8
## 2822     123         1           1       2             2           8
## 2823     129         1           1       7             1           8
## 2824      54         2           3       2             9           8
## 2825     124         2           4       2             9           1
## 2826      44         1           1       7             1           8
## 2827      54         3           4       2             1           8
## 2828     107         1           3       2             9           8
## 2829     120         2           1       1             9           5
## 2831       6         3           4       2            10           8
## 2832      54         2           4       2             1           8
## 2833      44         2           1       2             9           8
## 2834       6         3           1       2            10           8
## 2835     106         3           4       2             1           1
## 2836     124         4           4       2             9           8
## 2837      11         3           5       2             9           8
## 2838       2         3           3       4             9           8
## 2839      54         3           5       2             1           8
## 2840     129         2           1       1             1           1
## 2841      41         2           1       2             4           8
## 2842       6         4           1       2             4           3
## 2843      25         2           1       1             4           8
## 2844     124         4           4       2             9           8
## 2845      54         3           1       2             9           8
## 2846     124         2           4       2             9           8
## 2848     123         1           3       2             4           4
## 2850      54         4           4       2             9           3
## 2851     130         2           4       1             7           1
## 2852      23         4           3       1             9           1
## 2853      54         1           5       2             1           5
## 2854       6         2           1       2             4           1
## 2855      54         2           3       2             1           3
## 2856      54         2           4       2             9           5
## 2857      44         3           1       2             5           1
## 2858      54         2           4       2             1           1
## 2859     124         3           1       2             9           8
## 2860     106         2           1       1             9           8
## 2862     130         2           1       1             5           1
## 2863      41         3           4       2             5           8
## 2864      54         2           2       2             3           2
## 2865      14         2           1       4             8           3
## 2866      54         3           5       2            10           8
## 2868     129         2           1       7             9           1
## 2869      41         3           4       2             1           8
## 2870     106         2           4       2             1           8
## 2871     107         2           1       2             9           8
## 2872      41         5           5       2             9           8
## 2874      26         2           4       1             3           3
## 2875      70         1           1       1             7           1
## 2876      44         2           3       7             1           1
## 2877     123         2           1       2             4           5
## 2878      52         2           4       2             4           8
## 2879     106         2           4       2             1           8
## 2880     123         3           4       2             1           8
## 2881       6         2           1       2             9           8
## 2882     123         2           1       1             7           5
## 2883     124         1           3       6             7           5
## 2885     124         4           4       2             9           8
## 2886      54         3           4       2             1           8
## 2887     107         2           3       2             1           3
## 2888     124         4           2       2             9           8
## 2889     123         1           3       2             9           8
## 2890     124         3           1       2             9           8
## 2891     123         2           4       2             1           5
## 2892      11         2           4       2             1           8
## 2893     123         1           1       6             1           5
## 2894     123         2           3       2             4           8
## 2895      54         2           4       2             1           8
## 2896     120         3           1       7             1           1
## 2897     123         2           3       2             4           3
## 2898     124         3           1       1             7           4
## 2899     112         4           1       2             5           8
## 2900     124         3           5       7             1           1
## 2901      41         2           4       2             5           8
## 2902      41         2           4       2             1           8
## 2903      18         2           1       4             8           5
## 2904      21         5           3       2             9           1
## 2905     120         3           1       1            10           1
## 2906     124         3           4       7             1           1
## 2909     120         1           1       2             7           1
## 2910     129         1           1       5             7           8
## 2911       6         2           4       2             5           8
## 2912     124         2           3       2            10           8
## 2913      44         3           5       2            10           8
## 2914      54         2           1       7             1           1
## 2915     129         2           1       1            10           1
## 2916      49         4           4       2             9           1
## 2917     124         2           1       2             9           8
## 2918      52         2           1       2             4           1
## 2919     124         4           3       8             5           4
## 2921     111         2           3       2             1           1
## 2922      96         2           3       4             8           1
## 2923      21         4           1       1             9           4
## 2924      59         2           1       4             1           1
## 2925     124         2           4       7             7           1
## 2926     101         2           1       4             3           4
## 2927      59         2           1       7             1           3
## 2928     124         2           1       2            10           8
## 2929     123         3           5       2             1           5
## 2930     124         3           3       2             9           8
## 2931     124         4           3       8             7           4
## 2932     120         1           1       7             5           1
## 2933      60         4           4       2             9           8
## 2934      23         2           4       2            10           8
## 2935      34         2           1       2             1           1
## 2936     123         1           1       2             9           8
## 2937      41         3           2       2            10           8
## 2938     123         3           3       2             4           1
## 2939     111         1           4       2             9           8
## 2940      41         3           5       2            10           4
## 2941     123         2           4       2             9           8
## 2942     106         3           1       7             9           1
## 2943     120         2           3       5             1           5
## 2944     129         2           1       1             7           1
## 2946     120         2           1       2             1           1
## 2947     106         2           3       2            10           8
## 2948     106         2           4       2             9           8
## 2949      46         3           3       2            10           8
## 2950     112         2           4       2             1           3
## 2951     123         1           1       2             4           8
## 2952      52         3           1       6             7           5
## 2953      11         3           5       2            10           3
## 2954     123         2           1       1             9           2
## 2955      54         2           4       7             1           1
## 2956     123         1           1       7            10           1
## 2957      21         3           5       2             9           8
## 2958     124         3           1       2             9           8
## 2959      41         1           1       2             4           8
## 2960      59         2           1       7             1           1
## 2961      96         2           1       2             1           3
## 2962      70         3           1       4             1           1
## 2964     123         1           3       2             3           1
## 2965     106         3           4       2             1           8
## 2966     123         1           1       2             4           8
## 2967      18         2           2       7             5           1
## 2968      41         2           4       2             9           8
## 2969     124         3           4       2             9           8
## 2970      82         3           4       2             9           8
## 2971       6         4           4       2             9           8
## 2972      94         2           4       2             1           8
## 2973      44         2           3       2            10           3
## 2974      59         2           1       5             1           8
## 2975      21         1           3       7             9           1
## 2976      82         3           4       2             9           8
## 2977     124         3           4       2             4           8
## 2978     123         2           4       2             4           1
## 2980     129         2           3       1             7           1
## 2982     124         2           3       2             9           8
## 2983     129         1           1       1             3           1
## 2984      31         1           3       2             9           8
## 2985     123         1           1       2             9           6
## 2986      21         3           1       2             4           3
## 2987     124         1           3       2             4           3
## 2988      59         3           1       4             4           1
## 2989     123         1           3       2            10           5
## 2990      44         2           3       7             9           1
## 2991      54         2           3       7             1           1
## 2992       6         4           1       2            10           8
## 2993     107         2           4       2            10           8
## 2994     106         2           1       2             1           8
## 2995     107         3           5       2             9           8
## 2996     123         3           5       2             1           8
## 2997     119         3           3       7             1           1
## 2998      54         2           4       2            10           8
## 2999       6         4           4       2             9           8
## 3000      21         2           1       2             6           8
## 3002      11         3           5       2             1           8
## 3003     107         2           4       2            10           8
## 3004     123         3           1       1             9           8
## 3005     123         2           4       2             1           3
## 3006     106         2           1       1             8           4
## 3007     106         3           3       2             1           8
## 3008     123         3           5       2            10           5
## 3009     124         1           1       2             9           8
## 3010     123         2           4       2            10           8
## 3011      54         2           4       2             1           8
## 3012       6         3           3       8             9           4
## 3013      46         2           4       2             1           8
## 3015     123         2           1       2             9           8
## 3016     120         2           1       7             2           1
## 3017      54         3           5       2             1           8
## 3018     130         2           1       5             7           4
## 3019      23         1           1       2             9           8
## 3020      81         2           3       2             9           8
## 3021     124         4           3       2             4           7
## 3022     124         3           4       2             9           8
## 3023     107         2           1       2            10           8
## 3024     124         1           4       2             4           5
## 3025       6         4           4       2            10           8
## 3027     123         2           1       2             4           8
## 3028      44         2           4       2             9           8
## 3029      81         2           1       4             9           5
## 3030      41         2           5       2             9           8
## 3031      41         3           4       7             9           1
## 3032     124         3           1       2             9           8
## 3033      54         3           2       2             1           8
## 3034     123         3           3       7             7           8
## 3035     124         4           4       2             9           8
## 3036      54         2           1       2             9           5
## 3037     124         4           4       2             9           1
## 3038     112         3           4       7             3           1
## 3039      41         2           4       2             9           8
## 3040       6         4           4       2            10           8
## 3041      18         3           5       7             5           1
## 3042      41         2           4       2             9           8
## 3044       7         2           1       2             4           8
## 3045     129         2           1       1             7           7
## 3046      44         3           5       2            10           3
## 3047      18         3           1       7             5           1
## 3048     123         2           5       2             5           1
## 3049      18         1           3       1             7           1
## 3050      44         2           4       2             9           8
## 3051     124         4           4       2             9           8
## 3053      63         3           1       4             8           4
## 3054      70         2           1       4             1           1
## 3055     123         2           4       2             1           1
## 3056     129         2           1       1             7           1
## 3057      59         3           1       4             5           5
## 3058      97         2           1       2             9           1
## 3059     123         3           4       2             1           8
## 3060     109         2           4       2             1           3
## 3061     123         2           1       1             9           3
## 3062      21         2           1       2             4           3
## 3063      70         1           1       2             9           1
## 3064      11         1           1       2             7           8
## 3065     106         3           1       1             7           3
## 3066       6         1           1       2            10           1
## 3067     124         4           4       2             9           8
## 3068     124         2           3       4             7           1
## 3069      67         3           4       2             1           3
## 3070     124         3           1       1             5           4
## 3071     129         2           1       4             8           1
## 3072      57         2           1       2            10           1
## 3073      41         2           4       2            10           8
## 3074      63         2           4       1             9           1
## 3075       7         3           5       2             1           5
## 3076      54         3           5       2             9           8
## 3078     130         2           4       1             7           1
## 3079      59         2           1       1             1           1
## 3080      54         2           3       7             9           5
## 3081      59         3           1       2             1           5
## 3082     124         2           3       2             9           5
## 3084     112         3           3       2             9           8
## 3085     130         2           1       1             8           7
## 3086     124         4           1       2             9           8
## 3087     124         1           1       8             9           1
## 3088      54         2           4       2             1           1
## 3090     123         1           1       2             4           8
## 3091     124         2           4       2             9           8
## 3092      54         2           1       2             1           8
## 3093     106         2           1       4             8           1
## 3094     124         1           1       7             1           1
## 3095     123         3           1       1            10           3
## 3096      40         3           1       4             7           6
## 3097      21         3           4       2            10           8
## 3098     124         2           1       2             4           8
## 3099     123         2           1       2             4           8
## 3100      44         2           4       2             1           8
## 3101      21         3           4       2             9           4
## 3102      59         3           5       2             1           8
## 3103     130         2           1       1             5           8
## 3104      92         2           4       2            10           8
## 3105     129         2           1       1             7           1
## 3106     112         2           1       7             9           1
## 3107       6         2           1       2             9           8
## 3108      21         3           1       2             1           1
## 3109      54         2           3       2             1           8
## 3110     120         2           1       1             7           7
## 3111     106         2           4       2             1           1
## 3112     129         2           1       1             5           1
## 3113      57         2           1       2             9           8
## 3114      54         2           4       2             9           1
## 3115      41         2           4       2             4           8
## 3116      41         2           5       2             9           8
## 3117      54         3           4       2             1           3
## 3118     106         2           2       7             7           1
## 3119     124         4           4       2             9           8
## 3120     123         3           1       2             4           8
## 3121      54         3           5       2             1           8
## 3122      59         3           1       4             8           4
## 3123      21         4           1       2             9           8
## 3124     123         2           3       2             4           8
## 3126      11         3           1       2             4           8
## 3127     124         3           3       7             9           1
## 3128      54         3           4       2             1           3
## 3129      49         2           4       4             8           8
## 3130       6         2           3       2             4           8
## 3131      44         1           4       2             1           8
## 3132     124         2           1       4             7           4
## 3133     130         3           1       4             4           1
## 3134      21         2           3       2             1           1
## 3136      44         3           5       2             9           3
## 3137     107         2           3       2             9           8
## 3138     123         3           3       2             9           8
## 3139     129         2           1       2             1           1
## 3140     120         2           1       1             1           1
## 3141      41         3           2       2             1           8
## 3142     123         3           4       2             1           8
## 3143      49         3           1       4             9           8
## 3144      21         3           1       2             9           8
## 3145     123         1           3       2             9           4
## 3146     119         2           3       2             1           1
## 3147      41         2           4       2             1           8
## 3148      54         5           1       2             1           8
## 3149     123         3           2       7            10           1
## 3150      31         3           1       7             1           1
## 3151      59         2           1       7             5           1
## 3152      96         2           1       7             1           1
## 3153     124         4           1       2             9           3
## 3154     130         2           1       1            10           7
## 3155     123         2           4       2             1           5
## 3156      49         3           5       4            10           8
## 3157     124         3           4       2             9           5
## 3158      21         2           1       2             9           8
## 3159      52         2           1       2             9           1
## 3160      57         3           1       1             5           4
## 3161     107         2           3       2             3           1
## 3162      54         1           4       2             9           8
## 3163     124         2           3       7             5           1
## 3164      54         3           1       2             9           8
## 3165      44         3           5       2            10           8
## 3166     106         2           1       1            10           3
## 3167     124         4           4       2             9           8
## 3168      91         2           1       2             9           8
## 3169     130         2           1       1            10           1
## 3170      81         3           4       2             9           1
## 3171     123         1           1       1             7           5
## 3172     120         3           3       7             5           1
## 3173     112         1           4       2             1           1
## 3174     124         4           4       2             9           3
## 3175      95         1           4       2            10           1
## 3177     119         2           1       7             7           1
## 3178     123         2           1       4             9           4
## 3179     130         2           1       1             1           3
## 3180      21         2           5       2             9           8
## 3181      81         3           4       2             5           3
## 3182     129         2           1       1             9           8
## 3183     123         2           3       7             1           1
## 3184      57         1           1       7             9           1
## 3185     107         2           4       2             9           8
## 3186      21         3           3       2             9           8
## 3187     124         3           4       2             9           8
## 3188     123         3           1       2             9           1
## 3189      41         2           1       2             1           1
## 3190      41         3           1       2             9           8
## 3191      23         1           3       2             9           3
## 3192     124         3           4       2             9           8
## 3193      11         3           4       2             9           8
## 3194     107         3           3       2            10           8
## 3195      18         2           3       7             5           1
## 3196     107         2           3       2             1           1
## 3197      41         2           4       2             4           1
## 3198      54         2           4       2             1           8
## 3199      78         3           5       7             9           1
## 3200      23         2           1       2             5           1
## 3201     124         4           4       2            10           8
## 3202      41         3           1       2             1           3
## 3203     129         2           1       1             1           1
## 3204     111         3           4       2             1           1
## 3205     124         3           3       2             1           1
## 3206     123         2           4       2            10           8
## 3207      54         2           4       2             1           8
## 3208     123         3           2       2             1           1
## 3210      44         1           3       2             9           8
## 3211      59         3           1       4             8           4
## 3212     107         3           3       2            10           1
## 3213      40         2           1       2             5           5
## 3215     124         4           3       2             9           3
## 3216     106         2           1       2             9           5
## 3217     120         2           1       1             9           8
## 3218      52         1           1       2             4           8
## 3219      59         3           1       4             9           3
## 3221     106         2           1       4             9           2
## 3222     124         2           3       2             4           1
## 3223     120         3           1       7             7           1
## 3224     129         2           1       1             7           1
## 3225     124         4           1       2            10           8
## 3226      60         4           3       2             9           8
## 3227     124         2           1       5             1           1
## 3228     124         3           5       2             9           8
## 3229      81         2           3       2             5           8
## 3230       7         4           1       2             1           8
## 3231      54         2           3       2            10           8
## 3232      59         2           1       7             1           1
## 3233      44         2           1       2             1           8
## 3234     124         4           4       2            10           8
## 3235     123         1           1       2             4           3
## 3236     119         2           1       2             9           1
## 3238     123         2           1       5             1           1
## 3239       6         3           4       2             9           8
## 3240      54         2           4       2             1           8
## 3241     124         2           3       2             9           7
## 3242      81         2           1       2             4           1
## 3243      49         2           3       1             1           8
## 3244      41         2           3       2            10           3
## 3245      59         3           1       4             8           4
## 3246      21         3           4       2             9           5
## 3247      41         3           2       2             1           5
## 3248      87         3           1       1             9           8
## 3249       6         4           1       2             9           8
## 3250      21         3           1       7             5           1
## 3251     123         1           1       7             1           1
## 3252     123         2           5       2             1           1
## 3253      59         2           1       4             4           1
## 3254     124         2           1       2             9           1
## 3255      44         1           1       7             7           1
## 3256      54         2           3       2             1           8
## 3257      18         2           1       6             7           4
## 3258      54         2           4       2             7           5
## 3259     130         2           1       1             8           8
## 3260     124         4           4       2             9           8
## 3261      51         3           4       7            10           1
## 3262     123         3           4       2            10           8
## 3263      54         3           5       2             1           8
## 3264     106         3           4       2             1           8
## 3266     112         1           1       2             5           4
## 3267      23         1           3       2             4           8
## 3268       6         1           1       2             1           8
## 3269      54         2           4       2             1           8
## 3270      21         2           3       2             4           8
## 3271     124         2           1       2             5           1
## 3272      54         2           4       2             1           8
## 3273     120         2           3       7             7           1
## 3274       6         1           1       2             4           8
## 3275      44         2           1       2             4           1
## 3276      30         2           4       2             5           8
## 3277      94         2           4       2             4           8
## 3278      54         2           1       8             9           6
## 3279      21         3           2       7             9           1
## 3280     123         2           4       2             1           8
## 3282     123         2           4       2             9           4
## 3283      21         3           2       2            10           8
## 3284     122         2           3       1             9           1
## 3285     123         2           5       2             9           1
## 3286      54         2           4       2            10           8
## 3287     106         2           4       2             1           8
## 3288      21         2           1       2             4           4
## 3289     124         4           1       2             9           1
## 3290      41         3           4       2             5           8
## 3291       6         3           4       2            10           8
## 3292      21         2           4       2             9           8
## 3293      44         3           5       2            10           1
## 3294       6         4           4       2             9           3
## 3295     107         1           4       2             3           8
## 3296     129         2           1       1             9           3
## 3297      54         2           4       2             1           8
## 3298     124         4           3       2             9           8
## 3299      91         1           3       2             9           8
## 3300       6         3           4       2             1           5
## 3301     123         2           3       2             4           8
## 3302     124         4           4       2            10           8
## 3303      54         3           3       2             9           8
## 3305     120         4           1       7             7           1
## 3306      59         1           1       1             7           1
## 3307      54         1           3       2             1           1
## 3308       6         3           4       2             9           5
## 3309     106         3           4       7             1           1
## 3310      49         3           1       2             9           8
## 3312     130         2           1       1             5           8
## 3313     106         2           4       7             1           8
## 3314     124         3           3       2             4           1
## 3315      44         3           5       7             9           1
## 3316     124         3           3       2             4           1
## 3317      41         3           3       7             1           1
## 3318      59         2           1       2             9           1
## 3319      52         2           3       1            10           7
## 3320      18         2           3       5             7           4
## 3321     120         2           1       7             7           1
## 3322     124         2           3       2            10           1
## 3323      44         4           4       4             1           8
## 3324      40         2           1       7             7           1
## 3325      41         3           3       2             7           8
## 3326     129         2           1       1             1           8
## 3327      81         3           4       2             9           8
## 3328       6         2           1       4             9           5
## 3330     129         3           1       2             1           1
## 3331      21         3           4       2             9           8
## 3332     111         2           3       2             4           1
## 3334     124         3           4       2            10           8
## 3335      54         2           4       2             1           5
## 3336     123         3           5       2             9           1
## 3337     123         2           1       8             9           8
## 3338      54         3           1       2             1           8
## 3339     129         2           1       1             7           1
## 3340      85         2           1       7             4           1
## 3341     112         2           4       2             4           8
## 3342      54         3           1       2             9           8
## 3343      11         2           4       7             1           1
## 3344      44         3           1       4             8           1
## 3346     124         4           3       2             9           8
## 3347     124         2           1       2             9           8
## 3348     124         2           1       2             4           5
## 3349      41         3           4       2             1           8
## 3350     123         3           4       2            10           3
## 3351     130         2           1       1             1           5
## 3352      44         3           4       2             9           8
## 3353     107         2           3       2             9           4
## 3354     106         2           4       2             1           8
## 3355      54         2           4       2             1           4
## 3356     124         3           1       2            10           1
## 3357     120         5           3       7             1           7
## 3358     123         3           5       2             1           8
## 3359     121         2           1       2             4           8
## 3360      54         3           4       2            10           8
## 3361      41         3           5       2             1           5
## 3362     124         4           4       2            10           8
## 3363     124         2           3       1             9           4
## 3364      59         3           1       1             8           1
## 3365      52         2           4       2            10           8
## 3366     130         1           1       1             5           1
## 3367      23         2           1       2             9           5
## 3368      11         3           1       7             9           8
## 3369     123         4           4       2             2           4
## 3370       7         3           4       2             9           8
## 3371      18         2           1       7             9           4
## 3372     112         3           5       2            10           8
## 3373     123         3           5       2             1           8
## 3374      54         2           4       2             1           8
## 3376      25         3           1       4             9           4
## 3377     112         3           4       2             9           8
## 3378      39         2           1       4             9           4
## 3379     124         2           1       1             9           4
## 3380     106         3           4       2             1           8
## 3381      54         2           4       2             1           8
## 3382       6         2           1       2             9           8
## 3383     106         2           4       2             1           8
## 3384     106         3           1       2             1           1
## 3385      77         2           3       2             4           5
## 3386      54         3           4       2             1           8
## 3387     124         3           4       2            10           8
## 3388     111         2           3       7             1           1
## 3389      39         3           3       2             1           8
## 3391      21         4           5       2            10           1
## 3392     112         2           1       2             9           8
## 3393      21         2           3       2             9           8
## 3394     124         4           4       2             9           8
## 3395      23         3           1       4             4           1
## 3396     111         3           1       7             1           1
## 3398     107         2           3       2            10           5
## 3399      41         2           1       4             4           1
## 3400      23         3           4       2             9           8
## 3401      49         3           1       1             9           5
## 3402      91         2           1       2             9           3
## 3403      21         3           4       2             9           1
## 3404       6         4           4       2             9           8
## 3405      44         2           5       7             9           1
## 3406      54         2           5       2             1           1
## 3407      41         2           1       2             9           1
## 3408      41         3           4       2             1           6
## 3409     123         2           1       1             1           1
## 3410      44         2           4       2             9           8
## 3411      44         3           4       2             9           8
## 3413     107         3           3       8             1           1
## 3414     124         2           1       2             1           8
## 3415     120         2           3       5             7           1
## 3416     124         2           4       2             4           5
## 3417      59         2           3       1             5           8
## 3418     123         2           1       2             9           8
## 3419     124         3           4       2             9           6
## 3422      54         1           4       2            10           8
## 3423      95         3           4       2             9           8
## 3424     120         2           1       7             7           1
## 3425     107         2           3       2            10           1
## 3426     124         3           4       2             5           8
## 3428      21         3           4       2             9           4
## 3429      44         2           3       2            10           3
## 3430     123         3           3       2             9           8
## 3431     107         2           4       2            10           8
## 3432     107         2           4       2            10           8
## 3433     123         4           1       7             9           1
## 3434       7         3           1       7             9           1
## 3435     106         2           4       2             1           8
## 3436     129         2           1       1             5           1
## 3437     106         2           3       2             1           8
## 3438      54         2           4       2             1           8
## 3439     124         1           3       7             5           1
## 3440      54         2           5       2             1           7
## 3441      41         4           1       2             9           8
## 3442     124         4           4       2             9           1
## 3443     124         2           1       7             1           1
## 3444     123         3           3       2             9           8
## 3445     107         2           5       2             1           1
## 3446     129         2           4       1             3           8
## 3447     124         2           1       7            10           8
## 3448      44         2           4       2             9           8
## 3449     124         3           4       2             9           8
## 3450     106         2           4       2             1           8
## 3451     102         2           3       2             9           1
## 3452     112         3           4       2             9           8
## 3453     124         4           4       2            10           8
## 3454     112         2           1       7             9           1
## 3455     123         3           4       2             9           8
## 3456      81         3           1       2             5           1
## 3457      79         3           1       4             8           8
## 3458       7         2           4       7             9           1
## 3459     124         4           4       2             1           1
## 3460     124         4           1       2             9           8
## 3461     123         1           1       2             4           8
## 3462     130         2           4       1             7           1
## 3463      85         3           4       2             1           3
## 3464      57         2           1       7             9           1
## 3465      40         3           4       2             1           8
## 3466      54         2           4       2             1           3
## 3467      44         3           4       7             9           1
## 3468      82         2           1       8             5           8
## 3469      54         3           4       2             9           1
## 3470      41         2           4       2             9           8
## 3471     123         2           3       1             9           4
## 3472      41         2           1       1             5           3
## 3473     123         3           1       6             9           6
## 3474      85         2           1       1             9           4
## 3476     129         3           1       7             7           1
## 3477     111         4           4       2             9           1
## 3478      49         3           1       1             9           1
## 3479     123         2           4       2             1           8
## 3480     120         2           4       4             4           8
## 3481      44         3           3       2             4           8
## 3483     124         3           5       2             9           4
## 3484      41         4           1       7             9           1
## 3485     123         3           3       2            10           5
## 3486      41         3           4       2             4           8
## 3487     120         3           1       7             1           1
## 3489      60         4           1       2             9           8
## 3490       6         2           3       2             9           8
## 3491     124         3           3       2             9           8
## 3492     106         2           1       2             1           5
## 3493     124         3           4       2             9           8
## 3494     124         2           4       2             9           5
## 3495     124         4           1       2             9           5
## 3496     107         2           3       2             5           4
## 3497      85         3           1       2             9           1
## 3498     123         1           1       2             4           8
## 3499     129         2           3       1             9           1
## 3500     123         1           1       2             9           1
## 3501     123         3           5       2             5           8
## 3502     124         4           4       2            10           8
## 3503      54         3           4       7             9           1
## 3504      60         3           4       2             9           8
## 3505      41         3           3       2            10           8
## 3506     124         3           1       2             9           8
## 3507      31         3           4       2             9           8
## 3508      41         1           3       8             4           1
## 3510       6         3           1       2             9           8
## 3511      59         2           1       2             1           3
## 3512     123         1           1       2             4           3
## 3513      54         3           3       2             9           8
## 3514       8         2           3       2             9           5
## 3515      44         3           3       2             9           5
## 3516      54         3           1       2             9           3
## 3517     124         4           4       2             9           8
## 3518     129         3           1       1             9           1
## 3519     112         2           4       2             5           8
## 3520      54         2           5       2            10           8
## 3521      71         2           1       1             9           4
## 3522     124         1           3       2             1           1
## 3523      44         3           1       2             9           8
## 3524      54         3           4       2             1           8
## 3525     123         2           4       2             1           8
## 3526      54         4           4       2             9           8
## 3527     119         1           3       7             1           1
## 3528     130         2           1       1             1           8
## 3529      36         2           4       4             4           1
## 3530      59         3           5       7            10           1
## 3531      44         3           4       2             1           5
## 3532     124         2           3       2             9           8
## 3533     123         3           1       1             8           5
## 3534      21         3           4       2             9           8
## 3535     106         2           1       4             9           3
## 3536      54         2           4       2             1           1
## 3537     124         1           1       8             9           1
## 3538      54         1           3       2             1           8
## 3539      80         3           1       4             7           2
## 3540     124         1           1       8             4           1
## 3541     122         2           1       2            10           8
## 3542     123         2           4       2             4           8
## 3544      54         3           4       2             1           1
## 3545      86         2           4       7             7           1
## 3546      21         1           4       2             9           1
## 3547      86         3           1       2             4           8
## 3548      44         3           4       2            10           8
## 3549     129         3           1       7             5           1
## 3550      81         2           3       2             4           1
## 3551       7         3           1       2             9           8
## 3552      28         2           1       8             1           1
## 3553      23         3           1       2             4           8
## 3554     124         4           4       2             9           8
## 3555     106         2           1       2             4           5
## 3556     124         4           1       1             9           3
## 3557     106         2           1       1             9           3
## 3558     124         4           4       2            10           8
## 3559     124         3           4       2            10           8
## 3560      44         2           3       2             7           1
## 3561     129         1           1       2             5           1
## 3562     124         3           2       2            10           8
## 3563     119         2           1       4            10           1
## 3564       6         3           1       2             9           8
## 3565      71         3           3       2             9           8
## 3567      81         4           5       2            10           8
## 3568     130         2           5       2             1           5
## 3569      21         1           3       2             5           1
## 3570       6         2           1       2             9           1
## 3571      41         3           4       2             1           8
## 3573      18         2           5       7             1           1
## 3574     123         3           4       7             7           1
## 3575     124         3           1       2             9           8
## 3576     106         3           1       1             7           4
## 3577      44         2           4       2            10           4
## 3578      81         4           1       7             7           1
## 3579     130         1           1       1             1           1
## 3580     130         3           1       1             7           1
## 3581     111         1           1       2             5           1
## 3582      91         1           4       2             9           8
## 3583      96         2           1       4             1           7
## 3584      15         2           3       2             9           8
## 3585     106         3           4       2             9           1
## 3586     123         2           4       2             9           1
## 3587      59         2           1       4             4           8
## 3588     111         2           1       1             8           1
## 3589      59         3           1       4             8           4
## 3590     130         2           1       1             4           7
## 3591      54         3           4       2             9           3
## 3592     124         2           3       2            10           8
## 3593     123         1           3       2             4           8
## 3594     112         2           1       1             9           4
## 3595      71         3           4       2             9           8
## 3596     120         2           3       4             9           1
## 3597     124         4           4       2             9           8
## 3598      41         1           4       2             1           1
## 3599     105         2           2       2             9           8
## 3600       6         3           1       2             9           8
## 3601     123         2           1       7             9           1
## 3602      59         3           1       1             9           8
## 3603      41         2           3       2             9           8
## 3604      44         1           1       2             1           3
## 3605      44         2           1       1             1           1
## 3606      81         2           4       8             9           1
## 3607     106         2           1       4             1           4
## 3608      54         2           4       2             1           1
## 3609     123         2           1       1             9           8
## 3610     124         2           4       2             9           4
## 3611      92         3           5       2             1           8
## 3612      41         3           5       2             1           3
## 3613      41         3           4       2             4           8
## 3614      41         3           5       2             5           8
## 3615      15         1           1       1            10           1
## 3616     123         1           1       2             9           1
## 3617     129         2           1       1             7           1
## 3618      65         2           3       2             1           8
## 3619      54         3           2       2             5           8
## 3620      41         3           2       2            10           8
## 3621     119         3           1       7             7           1
## 3622      59         3           1       2             1           8
## 3623     124         3           5       7            10           1
## 3624     107         2           3       2             1           3
## 3625     123         3           5       2            10           1
## 3627     123         3           5       2             9           5
## 3628     124         3           4       2             9           8
## 3629      60         3           3       4             8           1
## 3630      54         2           4       2             1           8
## 3631      44         1           4       2             1           8
## 3632      54         2           1       1             9           1
## 3633       6         4           3       2            10           8
## 3634      44         3           5       2             9           1
## 3635      54         1           4       2             1           8
## 3637      95         3           5       2             1           5
## 3638     124         3           3       2             2           1
## 3639      54         2           4       2             1           8
## 3640      49         4           3       4             8           7
## 3641      54         3           2       2             9           8
## 3642      91         5           3       2             9           8
## 3643      85         1           3       2             3           3
## 3644     124         3           4       2             9           8
## 3645      44         3           4       7             1           8
## 3646     123         4           1       2             4           8
## 3647     119         5           1       6             9           8
## 3648     124         3           3       2             9           8
## 3649      57         1           1       8             5           8
## 3650      98         3           1       7             7           1
## 3652     123         2           1       1             7           8
## 3653     130         2           4       1             1           1
## 3654     129         3           1       1             1           1
## 3655     106         2           1       4             8           4
## 3656      54         3           4       2             9           3
## 3657     124         3           4       2             9           8
## 3658      41         2           4       2             5           3
## 3659      40         3           1       7             7           1
## 3660       6         2           4       2             9           8
## 3661      41         2           4       2             1           1
## 3662     119         2           1       2             1           1
## 3663      54         3           4       2             5           8
## 3664      41         2           4       2            10           8
## 3665      59         2           1       2             9           1
## 3667      81         3           4       2             9           8
## 3668      59         3           1       4             4           1
## 3670      59         2           1       4             4           1
## 3671     115         2           1       2             5           5
## 3672      73         2           1       1             7           8
## 3673     119         2           1       2             4           8
## 3674     124         2           1       8             7           1
## 3675      49         2           1       4             8           1
## 3676     110         1           1       7             9           8
## 3677     123         3           5       2             9           8
## 3678      54         4           1       4             9           8
## 3679      44         2           4       2             1           8
## 3680      54         2           3       2             1           4
## 3681      74         4           4       2             9           8
## 3682      41         2           4       2             9           8
## 3683      21         3           3       2             9           3
## 3684      41         2           2       2             1           8
## 3685       6         4           3       2            10           8
## 3686     123         3           3       6             9           1
## 3687      41         2           1       2             1           1
## 3688      85         4           3       2             4           4
## 3689      44         2           1       2             9           8
## 3690      81         1           4       2             1           4
## 3691      59         2           1       5             7           4
## 3692      81         3           4       2             9           4
## 3694     106         2           4       2             1           8
## 3695      54         3           4       7             5           8
## 3696     107         1           1       2             9           8
## 3697      41         3           4       2             9           8
## 3698     123         3           5       2            10           8
## 3699      21         2           4       2             9           8
## 3700     120         2           1       7             7           1
## 3701     120         4           1       6             8           4
## 3702     122         1           1       7             1           8
## 3703     124         4           4       2             9           8
## 3704      81         3           4       2             9           1
## 3706     123         3           4       2             9           5
## 3707     124         2           1       2             9           8
## 3708     124         3           1       2             9           8
## 3709     123         3           3       2             9           8
## 3710      21         3           4       2             9           8
## 3711     112         1           3       2             1           1
## 3712       7         4           1       2             9           8
## 3713     123         2           1       2             4           8
## 3714     124         2           3       2             4           1
## 3715     107         2           5       2             9           8
## 3716      44         2           4       2             1           8
## 3717     123         1           3       2             9           8
## 3718     123         2           1       2             9           8
## 3719      98         3           3       2             7           8
## 3720     107         2           4       2             9           3
## 3721     123         3           5       2             1           5
## 3722      57         4           1       2             9           8
## 3723      54         3           4       2             1           3
## 3724      44         2           3       1             9           8
## 3725      96         2           1       4             8           3
## 3726      44         2           1       4             8           1
## 3727     123         2           4       2            10           8
## 3728     123         1           3       2             9           8
## 3729     124         3           3       4             7           8
## 3730      59         2           3       4             8           3
## 3731      21         4           4       2             5           1
## 3732     123         2           3       2            10           4
## 3733       6         4           1       2            10           8
## 3734      91         1           5       2             1           8
## 3736      59         3           4       7             7           1
## 3737     124         4           4       2             7           4
## 3738     106         1           3       1            10           1
## 3739      42         2           1       7             1           1
## 3740     124         2           1       3             7           5
## 3741     120         2           3       6             7           1
## 3742      54         2           1       4             5           1
## 3743     124         2           4       2             6           8
## 3744      40         3           1       2             9           8
## 3745       7         2           1       2             4           8
## 3746      44         2           4       2             9           8
## 3747      81         3           4       2             9           8
## 3748      41         3           1       4             7           1
## 3749     123         1           3       2             4           8
## 3750     123         2           5       7             7           1
## 3751     124         4           1       2             9           8
## 3752     123         1           1       2             1           8
## 3753     106         2           3       2             5           1
## 3754       6         3           1       2            10           8
## 3755      21         2           1       2             9           8
## 3756     124         2           3       4             1           1
## 3757     123         3           4       2            10           1
## 3758     130         2           1       1             7           8
## 3759     124         2           1       8             9           8
## 3760      44         3           4       2             9           8
## 3761      81         2           4       2             1           4
## 3762      87         3           1       7             1           1
## 3763     124         4           4       2             9           8
## 3764     123         1           1       2             4           8
## 3765      54         2           4       2             1           3
## 3766      44         2           4       2             1           1
## 3767     129         2           1       1             1           1
## 3768       6         3           1       2            10           8
## 3769      59         2           1       1             1           1
## 3770     123         2           1       4             4           5
## 3771      54         2           4       2             1           8
## 3774     123         2           1       4             1           1
## 3775      85         2           1       4             4           8
## 3776     124         3           1       2             9           1
## 3777     123         1           1       2             4           8
## 3778     106         2           3       4             5           1
## 3779       7         3           3       2             4           8
## 3780     124         4           1       2             9           8
## 3781     124         3           4       2             9           8
## 3782     123         2           1       1             8           1
## 3783      49         3           2       2             9           8
## 3784      54         3           5       2             1           8
## 3785      26         2           1       1             7           1
## 3786      85         4           4       2             1           8
## 3787      85         2           1       8             7           1
## 3788      11         1           3       2             1           5
## 3789     129         2           1       1             1           1
## 3790      41         2           4       2             1           1
## 3791       6         4           1       2             9           8
## 3792      85         4           4       2             1           8
## 3793     130         2           1       1             9           1
## 3794      44         2           3       2             9           8
## 3795     112         3           5       2             9           8
## 3796     123         1           1       2             4           1
## 3797     123         1           1       2             4           8
## 3798      18         1           1       7             5           1
## 3800      79         2           4       2             9           5
## 3801     123         3           3       7             1           1
## 3802     112         3           3       2            10           8
## 3803      11         3           5       2             9           8
## 3804      49         2           1       2             9           1
## 3806     123         1           3       2             9           8
## 3807     111         2           3       2             1           1
## 3808     106         3           3       2             1           8
## 3809     122         2           1       1             9           7
## 3810     123         2           4       2             1           8
## 3811      44         2           4       2             9           8
## 3812     106         1           1       1             7           3
## 3813     124         3           4       2             9           8
## 3814      54         2           4       2             1           8
## 3815     123         3           1       1             9           1
## 3816     106         2           3       2            10           8
## 3817     124         1           3       2             4           5
## 3818     124         2           1       2             5           1
## 3819      44         3           4       2             9           8
## 3820     129         3           4       5             7           4
## 3821       6         4           4       2            10           8
## 3822      31         1           4       2             1           8
## 3823     123         2           4       2             9           8
## 3824      21         1           1       7            10           1
## 3825     130         2           4       2             1           1
## 3826     111         4           1       2             5           1
## 3827      44         3           2       2             4           1
## 3828      74         2           1       1             9           4
## 3829      44         3           1       2            10           8
## 3830      54         2           4       2             9           8
## 3831     124         4           4       2             9           8
## 3832     120         2           1       2             7           1
## 3833      54         3           5       2            10           8
## 3834       6         4           1       2            10           8
## 3835     106         3           3       2             1           4
## 3836     112         3           4       2             7           8
## 3837     124         2           1       2             9           1
## 3838       6         4           1       2             9           1
## 3839     106         2           4       2             1           1
## 3840     106         1           3       2             9           8
## 3841     123         4           3       2             9           8
## 3842      41         3           5       2            10           3
## 3843       7         1           1       2             1           1
## 3844      30         1           3       2             1           8
## 3846     124         2           1       2             4           5
## 3847      41         4           4       2             9           3
## 3848     129         3           1       1            10           4
## 3849     123         1           1       2             5           4
## 3850      21         3           3       2             9           1
## 3851      54         3           4       2             1           8
## 3852      54         2           4       2             1           8
## 3853      44         3           1       1             9           4
## 3854     106         2           1       2             1           5
## 3855      15         3           1       2             9           8
## 3856     107         2           4       2            10           3
## 3857     123         3           4       2             9           8
## 3858      91         2           1       1             9           4
## 3859     124         2           3       2             4           8
## 3860      21         2           1       2            10           3
## 3861      21         2           3       8             9           6
## 3862     120         2           1       1             7           1
## 3863     124         3           3       2            10           8
## 3864      59         2           1       1             5           8
## 3865       6         3           1       2            10           8
## 3866     124         3           4       2             9           8
## 3867      31         2           1       2             4           8
## 3868      54         3           1       1             9           1
## 3869     129         2           1       1             5           1
## 3870     124         1           1       2             4           5
## 3871     124         2           1       2             1           8
## 3872      59         3           1       1             9           1
## 3873     124         4           4       2             5           8
## 3874     123         2           1       4             9           5
## 3875     123         2           1       2             4           8
## 3876      21         1           3       2             9           8
## 3877      49         3           4       2             9           8
## 3878      52         3           4       2            10           4
## 3879     124         2           3       2             4           5
## 3880       6         1           1       8             5           4
## 3881     124         4           1       2             9           8
## 3882      81         3           5       2             9           5
## 3883     124         4           4       2             9           8
## 3884      60         2           4       2             9           1
## 3885      11         1           1       2             9           3
## 3886     123         1           1       2             4           8
## 3887      54         3           4       2             3           8
## 3888     124         4           4       2             9           8
## 3889      44         2           1       2             9           8
## 3890     123         2           4       2             1           8
## 3891     124         3           1       2            10           4
## 3892     129         3           3       7             9           1
## 3893      81         3           4       2             9           8
## 3894     124         3           3       2             9           8
## 3895     129         2           1       7             1           1
## 3896     107         1           3       2            10           8
## 3897      59         3           1       7             9           1
## 3898      41         2           1       2             3           8
## 3899      44         3           4       2             1           1
## 3900      81         3           4       7             7           1
## 3902      54         2           4       2             1           8
## 3903     124         4           1       2             9           8
## 3904      54         3           4       2             9           8
## 3905      57         4           1       2             4           8
## 3906      41         2           1       2             9           5
## 3907      44         4           4       2            10           8
## 3908      81         4           4       2             9           8
## 3909      54         3           4       2             1           8
## 3910      59         2           2       2             1           1
## 3911     123         3           5       2             1           5
## 3912      31         2           1       2             9           8
## 3913      41         3           4       2             9           8
## 3914     130         2           3       1             1           1
## 3915     124         3           4       2            10           8
## 3916      54         2           4       7             1           3
## 3917     124         3           4       2             9           8
## 3918     112         2           1       4             8           5
## 3919     123         2           5       2             3           8
## 3920     129         2           1       1             5           1
## 3921     129         2           3       1             7           1
## 3922      21         2           1       4             7           5
## 3923     124         4           4       2            10           8
## 3924      31         2           1       7             1           1
## 3925      49         2           1       1             4           8
## 3926     123         3           1       4             9           1
## 3927      31         3           2       2            10           8
## 3928      49         2           4       2             9           1
## 3929      92         5           3       2             1           8
## 3930     130         2           3       1             9           1
## 3931     124         2           1       2             9           8
## 3932     124         2           1       2             4           8
## 3933     124         1           3       2            10           8
## 3934     107         3           1       2            10           8
## 3935      59         3           1       1             9           7
## 3936      23         2           1       2             1           1
## 3937     124         4           4       2             9           8
## 3939      54         3           4       2             1           8
## 3940     124         3           5       2             4           4
## 3941     114         2           1       8             7           4
## 3943      94         1           1       2             1           1
## 3944     123         2           1       1             7           4
## 3945      96         2           3       4             4           4
## 3946      44         3           5       2             1           1
## 3947      54         2           3       2             1           8
## 3949       6         2           1       2             9           8
## 3950       6         2           4       2             4           8
## 3952     111         2           1       2             1           1
## 3953     130         2           1       1             1           1
## 3954      44         3           5       2             1           8
## 3955     123         2           1       6             8           1
## 3957     124         3           1       2             9           8
## 3958      59         3           1       1             9           4
## 3959     124         3           5       2             9           1
## 3960     106         3           1       4             4           4
## 3961      54         2           4       2             1           1
## 3962     130         3           1       1             2           8
## 3963      21         4           4       2             9           8
## 3964     120         1           3       5             7           1
## 3965     123         5           1       5             7           5
## 3966      41         3           3       2             9           3
## 3967      11         2           1       2             5           1
## 3968     120         3           1       7             7           1
## 3969     124         3           4       2             9           8
## 3970     124         3           3       7             9           8
## 3971     124         2           4       2             9           8
## 3972     123         2           1       2             1           1
## 3973      41         3           4       2             9           8
## 3974     130         2           5       1             9           1
## 3975      11         1           4       2             1           8
## 3976      11         2           3       2             5           4
## 3978     101         2           1       7             9           1
## 3979      54         3           4       2             9           8
## 3980      44         3           5       2             1           5
## 3981     106         3           4       2             1           5
## 3982     130         2           4       1            10           8
## 3983      41         2           5       2             9           8
## 3984     124         4           1       2             9           8
## 3985      44         2           4       2             9           8
## 3986     123         2           4       2             9           8
## 3987     107         3           4       2             1           1
## 3988      18         1           1       7             7           1
## 3989     123         2           1       1             9           1
## 3990     106         3           4       2             1           8
## 3991      54         3           5       2             1           8
## 3992     124         3           4       2             9           8
## 3993     124         2           4       2            10           2
## 3994      54         2           4       2             9           8
## 3995      54         2           4       2             1           8
## 3996     123         3           1       2             2           4
## 3997      41         2           4       2             3           1
## 3998     130         2           1       1             1           1
## 3999      16         3           3       2             1           8
## 4000      41         2           4       2             1           8
## 4001      49         1           1       7             7           1
## 4002      18         2           1       7             5           1
## 4003      44         3           4       2             9           8
## 4004     106         2           1       4             8           2
## 4005      54         2           5       2             1           3
## 4006      49         2           3       7            10           1
## 4007     112         2           4       2             4           4
## 4008     124         2           1       7             1           1
## 4009      35         2           1       4             4           8
## 4010     123         1           3       2             4           8
## 4011     124         2           4       2            10           8
## 4012      21         3           1       2             5           8
## 4013       6         3           1       2             9           8
## 4014     123         2           4       2             9           8
## 4015      34         1           1       1             5           1
## 4016     106         2           1       2            10           8
## 4017      46         1           1       7             5           1
## 4018     124         4           3       7             5           1
## 4019     124         3           4       2            10           8
## 4020      44         3           1       2            10           4
## 4021      86         2           4       2             1           8
## 4022     124         3           1       8             4           6
## 4023      53         3           4       2             9           8
## 4024     106         3           1       4             8           1
## 4025     124         3           4       2            10           8
## 4026     123         3           5       7             9           4
## 4027      49         2           3       1             8           8
## 4028      59         2           1       4             4           1
## 4029     123         3           3       2             9           1
## 4030      49         3           1       1             5           5
## 4031     124         3           4       2             9           8
## 4032      54         2           4       2             1           3
## 4033     106         1           1       1             9           8
## 4034     129         2           1       7             1           1
## 4035     123         3           4       2             1           8
## 4036     123         2           1       2             9           8
## 4037     111         3           3       2             4           4
## 4038      44         2           4       2            10           1
## 4039     112         2           2       2             1           1
## 4040     130         1           4       1             1           1
## 4041       6         4           4       2             9           8
## 4042      21         2           3       8            10           5
## 4043      53         1           3       2             9           1
## 4044      11         2           4       2             4           3
## 4046      11         3           4       2            10           8
## 4047      44         2           1       2             4           8
## 4048      21         1           3       2             1           1
## 4049     107         2           4       2            10           8
## 4050     124         4           3       2             9           8
## 4051      41         3           3       2             5           1
## 4052     112         1           3       2             5           1
## 4053     123         3           4       2             9           8
## 4054     129         2           1       5             7           4
## 4055      54         3           3       2             1           8
## 4056     106         2           5       1             9           3
## 4057     129         2           3       5            10           1
## 4058      23         2           2       7             1           1
## 4061      40         4           3       8             5           1
## 4062      59         3           1       4             7           4
## 4063     123         3           1       1             8           5
## 4064     120         2           3       7             9           1
## 4065      41         3           2       2             6           8
## 4067      54         1           5       2             1           8
## 4068      59         2           1       1             9           3
## 4069     123         3           4       2             3           8
## 4070     107         2           1       7             7           1
## 4071     124         4           1       2             9           3
## 4072      54         2           1       7             9           1
## 4073     107         2           4       2            10           8
## 4074      49         2           2       2             9           8
## 4075      54         1           4       2             1           8
## 4076     124         1           1       2             4           5
## 4077      52         2           1       2             9           8
## 4078     123         2           1       2             4           5
## 4079     123         2           1       7             7           1
## 4080     124         3           1       2             9           8
## 4081      60         4           1       2             5           8
## 4082     123         1           1       2             4           8
## 4083     120         2           3       7             5           3
## 4084     124         3           1       2             9           8
## 4085     124         3           1       2             9           8
## 4086     105         2           1       4             1           1
## 4087     123         4           1       2             9           4
## 4088     124         3           4       2            10           8
## 4089     119         2           1       4             9           8
## 4090      54         2           4       2             9           1
## 4091      74         4           5       2             9           8
## 4092      59         2           3       4             6           6
## 4094      44         3           4       2             9           1
## 4095      11         1           4       2             4           5
## 4096      60         2           3       2             3           5
## 4097       7         4           1       2             9           8
## 4098     130         2           2       7             7           1
## 4099     129         2           1       1             7           1
## 4100      81         2           1       2             9           8
## 4101     123         3           4       2             9           8
## 4102      44         2           4       2             4           8
## 4103     124         3           3       2             9           8
## 4104     107         2           1       2             5           1
## 4105      86         2           4       7             1           1
## 4106      21         2           4       2             2           3
## 4107      41         3           4       2             9           8
## 4108     106         3           4       2             1           8
## 4109     124         2           4       4             4           5
## 4111     119         1           1       7             7           1
## 4112     120         3           1       6             7           5
## 4113      41         3           1       2             5           3
## 4114     124         2           1       7             5           1
## 4115      59         2           1       7             6           1
## 4116     124         2           4       2             9           1
## 4117      54         3           3       2             1           8
## 4118     119         3           1       7             9           5
## 4119      44         2           1       1             8           4
## 4121       6         4           4       2             9           8
## 4122     124         2           1       7             5           1
## 4123      91         2           1       2             4           3
## 4124     120         2           1       5             7           1
## 4126      44         1           1       2             9           1
## 4127      82         3           1       2             9           1
## 4130      23         3           3       1             8           1
## 4131     123         2           5       7             9           1
## 4133      54         3           4       2             1           3
## 4134       6         2           1       2             9           8
## 4135     106         2           3       7             9           1
## 4136      44         2           3       4             8           1
## 4137      41         4           4       2             9           8
## 4138     112         3           4       2             9           8
## 4139      59         2           1       5             7           1
## 4140      44         3           4       2             9           1
## 4141     124         4           4       2             9           8
## 4142      54         1           1       2             5           1
## 4143      81         2           1       2             4           4
## 4144     107         2           3       2             1           8
## 4145      44         4           4       2             9           3
## 4146     129         3           3       4             8           1
## 4147     121         1           3       2             9           8
## 4148     129         2           1       1             1           1
## 4149      81         2           4       2             9           8
## 4150       6         2           1       1            10           1
## 4151      54         2           4       2             1           8
## 4152      62         2           3       2             4           4
## 4153     124         2           4       2             4           1
## 4154      81         1           3       2             5           8
## 4155     130         2           4       1             7           1
## 4156       4         3           4       2            10           8
## 4157      59         1           1       1             7           1
## 4158       6         1           3       2             9           5
## 4159     124         3           4       2            10           8
## 4160     111         1           3       2             9           5
## 4161      23         2           1       2             1           1
## 4162     124         4           4       2            10           8
## 4163     120         2           1       1             9           1
## 4164     111         3           1       4             1           1
## 4165      31         3           1       1             7           4
## 4166     123         3           1       7             7           1
## 4167       6         3           3       2             4           8
## 4168      44         2           1       5             7           4
## 4169     123         2           1       4             8           1
## 4170      96         2           1       7             5           1
## 4171      57         4           1       2             4           8
## 4172      41         2           2       2             9           8
## 4173     129         3           3       1             1           1
## 4174       6         2           4       2             1           4
## 4175      54         2           5       2             1           5
## 4176     124         4           3       2             6           8
## 4177     124         4           4       2             9           5
## 4178      57         3           1       2             9           8
## 4179     106         2           3       1            10           3
## 4180      44         2           1       2             4           8
## 4181     123         1           4       1             2           6
## 4182      59         2           1       1             9           8
## 4183      44         2           1       2             1           1
## 4184      54         3           1       2             9           8
## 4185      21         2           1       2             4           1
## 4186      87         1           4       2             1           5
## 4187      44         3           1       4             8           5
## 4188      85         1           3       2             9           1
## 4189      54         2           1       2             9           8
## 4190      96         2           4       7             7           1
## 4191     123         3           5       2             9           8
## 4192      44         3           4       2             1           1
## 4193     120         2           3       7             1           1
## 4194      95         3           1       2             4           8
## 4195      41         2           3       2             3           1
## 4196     123         3           5       2             9           8
## 4197      49         2           1       1             7           7
## 4198      18         1           1       7             7           1
## 4199      23         2           1       2            10           8
## 4200     129         2           1       1             3           8
## 4201     130         1           3       1            10           6
## 4202     120         5           3       5             7           6
## 4203     124         1           3       7             5           1
## 4204      71         2           1       2             4           1
## 4205      93         3           5       7             9           1
## 4206     130         2           1       1             9           8
## 4207     124         2           1       2             9           8
## 4209      59         2           1       7             1           1
## 4211     107         3           3       2             1           1
## 4212      23         3           1       7             8           1
## 4213     123         1           1       8             7           1
## 4214     124         3           1       4             1           1
## 4215     124         2           5       7             5           1
## 4216     123         3           1       2             1           8
## 4217     123         1           1       2             9           3
## 4218     124         3           4       2             9           1
## 4220      44         3           4       2             1           8
## 4221     107         2           3       2             1           8
## 4222     129         3           1       1            10           1
## 4223      49         2           1       2            10           4
## 4224      18         1           1       1             8           1
## 4225     119         2           3       2             4           1
## 4226      70         3           1       7             1           1
## 4227      91         2           4       2             9           8
## 4228      44         3           3       2             9           8
## 4229     124         3           4       2            10           8
## 4230     120         2           3       7             5           1
## 4232      21         2           1       2             9           5
## 4233     123         2           1       7            10           1
## 4234     124         3           1       2             9           8
## 4235     124         2           4       2            10           8
## 4236      41         2           2       2            10           8
## 4237       6         2           3       2             4           3
## 4238      54         3           3       7            10           4
## 4239      41         2           1       2             7           5
## 4240     123         1           1       2             4           8
## 4241     123         2           3       2             4           8
## 4242     130         2           1       1            10           1
## 4243      52         5           3       5             9           8
## 4244     124         2           4       2             1           8
## 4245      81         2           4       2            10           8
## 4246     123         3           5       2             9           8
## 4247     106         2           4       2             1           5
## 4248      44         3           4       2             1           4
## 4249     112         4           4       2             9           8
## 4250      26         2           1       7             5           1
## 4251      86         2           2       2             7           1
## 4252     124         3           5       2             9           1
## 4253     130         3           1       5             7           4
## 4254      54         3           5       2             9           1
## 4255     124         2           1       4             8           1
## 4257      49         2           4       2            10           8
## 4258      44         3           3       2             9           8
## 4259     124         2           1       1            10           4
## 4260      57         2           1       1             9           8
## 4261      41         2           4       2             1           8
## 4262     124         3           4       2             9           8
## 4263      21         2           1       2             9           5
## 4264      95         2           4       2             1           1
## 4265     124         3           1       2             9           8
## 4266      44         1           1       7             9           1
## 4267     120         2           1       4             7           4
## 4268      44         2           4       2             9           8
## 4269     123         2           1       2            10           1
## 4270      41         2           4       5            10           8
## 4271     123         2           2       2             1           1
## 4272      44         3           5       2             1           1
## 4273     124         3           2       2             9           8
## 4275      71         2           1       1             7           1
## 4276     112         2           4       2             9           8
## 4277       7         3           4       2             4           8
## 4278      21         3           4       2             9           8
## 4279     124         3           1       2             4           8
## 4280     123         1           1       2             4           8
## 4282      23         2           1       2             9           8
## 4283      21         1           4       8             5           1
## 4285     107         2           3       2             5           1
## 4286      49         3           1       7             7           1
## 4287     119         3           1       2             4           1
## 4288     112         2           4       2            10           8
## 4289      81         3           4       2             5           4
## 4290      23         3           3       2            10           8
## 4291     124         2           3       2            10           4
## 4292      81         1           1       8             4           3
## 4293      34         3           1       7             7           4
## 4294     120         2           3       5             7           1
## 4295     124         2           3       2            10           8
## 4296      21         2           4       2             9           8
## 4297      87         2           1       7             1           1
## 4298      39         1           4       2             1           1
## 4299     106         3           1       1             9           1
## 4300     124         4           1       2             9           8
## 4301      54         4           3       7             7           1
## 4302      41         3           4       2            10           8
## 4303     130         2           1       2             1           1
## 4304      41         3           5       2            10           8
## 4305     124         3           4       2            10           8
## 4306      59         2           1       4             8           3
## 4307     119         2           1       2             4           8
## 4308      59         3           1       1             7           1
## 4309     130         2           1       1             7           1
## 4310     123         1           3       2             1           4
## 4311     124         3           3       2             5           4
## 4312     123         1           1       7             1           1
## 4313      21         2           4       2             9           5
## 4314     129         2           3       1             2           1
## 4315       7         2           4       2             9           8
## 4316      91         2           1       2             4           8
## 4317     129         2           1       1             1           1
## 4318       6         3           3       2             9           8
## 4319     123         2           4       2             9           3
## 4320      23         2           3       2             9           8
## 4321     124         2           4       2             9           8
## 4322     124         3           4       2             9           8
## 4323      41         2           1       2             9           8
## 4324     124         2           3       2             9           8
## 4325      54         2           1       2             9           8
## 4326     123         1           3       2             7           2
## 4327      96         1           1       7             9           1
## 4328     124         3           1       2             9           8
## 4329     124         2           3       2             1           4
## 4330     123         2           2       7             9           1
## 4331      21         2           1       2             9           8
## 4332      59         3           1       4             4           4
## 4333       7         2           1       2             5           1
## 4334      44         1           3       2             9           8
## 4335     111         2           4       2             9           1
## 4336      52         2           1       2             4           1
## 4337      53         1           1       7             5           1
## 4338     129         2           4       2             1           1
## 4339     123         1           3       8             7           8
## 4340     106         3           4       2             1           3
## 4341     107         2           3       2             1           3
## 4342     123         2           1       7             3           1
## 4343     124         4           4       2             9           5
## 4344     129         2           1       1             1           1
## 4345     119         2           3       2             1           5
## 4346     130         2           1       1             1           7
## 4347      44         3           3       2             3           4
## 4348      59         2           1       1             7           1
## 4349     120         2           1       4             1           1
## 4350     130         2           1       1             5           1
## 4351      86         2           4       7             5           8
## 4352      54         3           5       2             1           3
## 4353     123         2           1       7             7           1
## 4354     130         2           1       1             7           8
## 4355      41         2           1       4             8           4
## 4356      49         2           1       1             9           4
## 4357      96         1           1       7             5           3
## 4358      21         2           1       2             9           8
## 4359     120         3           4       6             5           8
## 4360      54         2           3       2             1           8
## 4361      41         3           1       2            10           8
## 4362     124         2           3       2             6           8
## 4363      49         2           1       2             1           4
## 4364      87         2           4       2             1           8
## 4365      18         3           1       7             7           1
## 4366     106         2           1       1             9           1
## 4367      52         1           4       2             9           1
## 4368      86         3           4       2             9           8
## 4369      54         2           4       2             1           5
## 4370     107         3           4       2            10           8
## 4371      39         3           1       4             4           4
## 4372       6         1           3       2             4           5
## 4373      49         2           1       4             4           1
## 4374      57         2           4       2             1           8
## 4375      18         1           1       1             5           1
## 4376     124         3           3       7             9           8
## 4377      41         3           2       2            10           8
## 4378     106         3           3       2            10           8
## 4379     129         2           1       7             1           1
## 4380      44         2           1       7             7           1
## 4381     129         1           1       1             1           1
## 4383     106         3           3       2             1           8
## 4384     124         3           3       2             9           8
## 4385      53         3           5       5            10           8
## 4386     119         2           1       2             9           3
## 4387      23         2           3       2             1           3
## 4388     124         2           3       2             9           1
## 4389     107         2           3       2             5           1
## 4390      54         3           5       2             1           8
## 4391      54         3           4       2             1           5
## 4392     112         3           1       2             9           1
## 4393      44         2           3       2             2           1
## 4394     107         2           1       2             9           8
## 4395      71         2           1       2             4           3
## 4396       6         1           3       8             4           1
## 4397     124         4           4       2            10           8
## 4398     124         4           4       2             9           8
## 4400      54         1           3       2             1           8
## 4401     124         3           4       2            10           8
## 4402      41         3           5       2             1           3
## 4403      41         3           5       2             9           8
## 4404      96         2           1       4             5           4
## 4405       6         3           1       2             9           8
## 4406     119         2           3       2             9           8
## 4407     123         3           3       2             4           8
## 4408     123         1           1       5             1           5
## 4409     124         2           3       2             1           1
## 4410      21         4           1       2            10           8
## 4411       7         3           4       2             9           8
## 4412      54         2           4       2             1           8
## 4413      81         1           1       8             5           8
## 4414      44         2           1       1             4           5
## 4415     123         2           1       4             9           1
## 4416     123         3           1       5             7           1
## 4417      21         3           1       2             4           3
## 4419     130         1           3       1            10           8
## 4420      21         3           1       2             9           8
## 4421      21         4           4       2            10           8
## 4422      21         3           4       2             1           1
## 4423      41         3           4       2             1           3
## 4424     123         2           4       2             4           8
## 4425     124         4           4       2            10           3
## 4426     112         3           3       2            10           8
## 4427      54         3           1       2             1           8
## 4428     120         2           1       7             7           1
## 4429      54         3           4       2             1           8
## 4430     112         2           4       2            10           8
## 4431     123         4           4       2             4           8
## 4432      57         4           1       2             9           8
## 4433     124         2           1       2             9           1
## 4434      54         2           1       2             9           8
## 4435     130         2           1       4            10           3
## 4436      54         3           1       2             9           8
## 4437     119         2           1       2             9           8
## 4438      49         2           1       1             7           3
## 4439      41         2           3       2             1           8
## 4440      44         2           3       2             1           4
## 4441     107         2           4       2             1           5
## 4442      53         3           4       2             4           1
## 4443     129         2           1       1             1           8
## 4444     123         2           4       2             2           3
## 4445      49         3           1       1             9           4
## 4446     124         2           5       2             9           8
## 4447      52         2           3       2             4           8
## 4448      54         2           1       6             7           1
## 4449      23         3           1       1             7           8
## 4450      18         2           1       5             7           1
## 4451     111         2           1       2             7           1
## 4452     124         3           4       2            10           8
## 4453      92         2           3       2             4           1
## 4454      54         2           4       2             1           8
## 4455     124         2           1       1             5           8
## 4456      59         2           1       7             1           1
## 4457     124         1           3       7             1           4
## 4458     130         2           1       7             9           2
## 4459     124         4           4       4             9           3
## 4460      44         3           4       2            10           8
## 4461      54         2           4       2             1           8
## 4462       6         4           1       2             9           8
## 4463     124         3           3       2             9           8
## 4464     120         3           5       2             5           3
## 4465       6         3           4       2             9           8
## 4466     123         3           1       6             7           4
## 4467     112         2           1       2             9           8
## 4468      59         2           5       2             1           1
## 4469     123         3           5       2             9           8
## 4471      54         2           4       2             9           8
## 4472     107         2           4       2             9           5
## 4473      54         4           4       2            10           8
## 4474     123         2           1       1             9           4
## 4475       6         2           1       2             5           1
## 4476     120         2           1       1             1           8
## 4477     111         3           1       7             5           1
## 4478      23         1           1       8             7           1
## 4479       6         3           3       2            10           8
## 4480      59         2           1       7             7           1
## 4481     130         2           1       1             9           8
## 4482      96         2           1       7             5           1
## 4483      49         3           3       7            10           1
## 4485      18         1           1       1             7           1
## 4486     130         2           1       1             7           1
## 4487      59         2           1       1             8           8
## 4488     106         3           4       2             9           8
## 4489      54         3           4       2             1           8
## 4490      23         2           1       1             9           8
## 4491      91         3           3       2             1           8
## 4492      21         2           3       2             9           8
## 4493      54         3           4       2             3           8
## 4494     120         3           1       1             5           8
## 4495     106         2           1       1             7           8
## 4496      78         2           1       2             9           1
## 4497      41         2           1       1             7           1
## 4498     130         2           1       1             1           1
## 4499       7         3           1       2             9           8
## 4500      54         3           1       2             9           1
## 4501      44         2           3       2             9           4
## 4502      54         2           3       2             4           8
## 4504     119         2           1       7             1           1
## 4505      23         2           3       2             1           3
## 4506       6         1           1       2             1           8
## 4507     123         2           4       2             1           3
## 4508     124         3           4       2             9           8
## 4509     124         2           3       7             4           1
## 4510      21         3           5       2             9           8
## 4511     130         2           1       1             7           5
## 4512      41         3           4       2             1           8
## 4513      54         3           1       2             1           5
## 4514      53         3           5       2            10           1
## 4515      59         2           1       4             5           8
## 4516      44         3           4       2             1           8
## 4517      86         3           3       7             7           1
## 4518      54         2           1       2             9           8
## 4519     123         3           4       2            10           1
## 4520      54         3           4       2             1           3
## 4521      78         2           3       2             1           5
## 4522      21         2           1       2             9           8
## 4523      54         2           4       2             1           8
## 4524      85         3           1       4             4           8
## 4525     123         3           3       2            10           4
## 4526     124         2           1       7             1           1
## 4528     123         1           3       2            10           8
## 4529       6         4           5       2             9           5
## 4530     129         2           1       1             1           1
## 4531      41         2           1       4             7           6
## 4532     124         3           1       7             9           1
## 4533      59         3           1       1             9           2
## 4534     113         3           4       2            10           8
## 4535      46         2           1       2             9           3
## 4536      67         3           3       2             1           1
## 4537      54         2           5       2            10           8
## 4538     124         2           1       2             9           8
## 4539      54         2           3       2             1           3
## 4540      39         3           1       7             1           1
## 4541     130         2           1       1            10           1
## 4542     129         2           1       1            10           1
## 4543       6         1           1       2             9           8
## 4545      84         2           1       1             9           1
## 4546     124         3           3       2             9           8
## 4547     107         2           4       2             1           1
## 4548     120         2           1       7             9           6
## 4549     106         2           3       2             1           8
## 4550      44         1           1       2             4           1
## 4551     124         2           3       2             9           1
## 4552      54         3           4       2             1           8
## 4553      31         3           3       7             9           1
## 4554     120         1           3       7             3           1
## 4555      54         1           4       2             1           8
## 4556      54         3           5       2             1           8
## 4557      54         2           4       2             1           8
## 4558       6         3           4       2            10           8
## 4559       6         3           4       2            10           5
## 4560     107         2           4       2             1           8
## 4561      59         3           1       1             1           1
## 4562      86         2           4       7             1           1
## 4563     106         3           4       2             1           1
## 4564     111         4           1       2             9           8
## 4565      41         3           4       2             3           3
## 4566       7         2           4       2             9           8
## 4567      54         2           4       2             1           8
## 4568     124         3           4       2             9           8
## 4569     107         2           1       1             5           1
## 4570      59         3           1       1             4           4
## 4571      18         1           1       1             7           1
## 4572      59         2           1       5             7           4
## 4573     123         4           4       2             9           8
## 4574       6         3           3       2            10           8
## 4575     107         3           5       2            10           8
## 4577     106         3           1       7             7           1
## 4578       6         3           1       1             7           3
## 4579     124         3           4       5             7           4
## 4580     129         2           1       1             7           1
## 4581     119         3           1       2             1           8
## 4582      59         3           3       2             4           3
## 4583      49         1           3       2             9           8
## 4584     129         2           1       1             7           1
## 4585      41         3           4       2             5           3
## 4586     120         2           1       4             4           5
## 4587      21         2           4       2             9           8
## 4588      95         2           1       2             4           8
## 4589       6         3           1       2             9           8
## 4590      96         2           1       1             4           5
## 4591       7         3           5       2             9           8
## 4592      59         3           1       1            10           7
## 4593       6         4           1       2             9           8
## 4594      41         2           3       2             3           8
## 4595      41         3           5       2             9           8
## 4596      59         2           1       1            10           4
## 4597     123         2           2       7             1           1
## 4598      81         2           1       2            10           8
## 4599     129         2           1       1             5           1
## 4600     123         1           1       2             4           8
## 4601     124         3           1       1             4           4
## 4602     124         1           1       2             5           1
## 4603     123         1           5       2            10           8
## 4604     124         4           4       2             9           5
## 4605      54         2           4       2             1           1
## 4606     120         2           4       2             1           1
## 4607      44         2           3       2             7           8
## 4608     124         2           4       2             4           8
## 4609     107         2           3       2            10           1
## 4610      81         3           2       2            10           1
## 4611      44         1           1       2             9           8
## 4612      44         3           5       2             9           3
## 4615     112         3           4       2             9           8
## 4616     124         4           4       2             9           8
## 4617      40         2           1       7             9           1
## 4618      81         3           4       2             1           3
## 4619     124         3           3       2             9           8
## 4620     123         2           1       2             9           8
## 4621     129         3           3       4             1           1
## 4622     129         1           1       1             1           1
## 4623     123         2           5       2             7           1
## 4624      54         2           4       2             1           5
## 4625      11         3           1       7             1           1
## 4626     129         2           1       1            10           8
## 4627      81         4           1       2             9           8
## 4628      52         2           1       1             1           4
## 4629      49         3           1       4             8           8
## 4630     124         4           4       2            10           8
## 4631      21         3           1       4             4           3
## 4633     129         2           1       7             5           1
## 4634      44         3           2       7             1           1
## 4635     129         3           1       1             1           6
## 4636      49         4           3       2             9           8
## 4637      49         2           1       1             9           1
## 4638     107         4           5       4             9           8
## 4639      57         3           3       4             9           8
## 4640      21         2           1       2             4           3
## 4641      23         2           1       1             8           1
## 4642     124         4           4       2             9           8
## 4643       6         3           5       2             3           8
## 4644     107         2           3       2             1           1
## 4645     123         2           3       2             4           8
## 4646     106         3           4       2             9           8
## 4647     119         2           4       2             1           8
## 4648     124         4           4       2             9           8
## 4649     119         2           1       4             9           8
## 4650      84         2           1       1             9           5
## 4651      96         2           1       7             7           1
## 4652     124         2           4       2             1           8
## 4654      68         2           1       7             1           1
## 4655      18         1           1       7             5           1
## 4657     112         2           1       4             1           4
## 4658     123         1           3       2             4           8
## 4660     124         4           1       2            10           8
## 4661     100         2           4       2             1           8
## 4662     106         2           1       1             9           6
## 4663     124         2           5       2             9           1
## 4664     124         2           4       7             4           1
## 4665      74         3           1       5             7           4
## 4666     124         4           4       2             9           8
## 4667     124         4           4       2             9           8
## 4670     112         2           4       2             5           4
## 4671      57         3           1       2             9           8
## 4672     124         2           3       2             1           1
## 4673     124         2           3       4             5           5
## 4674     124         4           1       7            10           8
## 4675     123         4           4       2             9           1
## 4676     123         3           5       2             4           8
## 4677     114         1           1       1             7           6
## 4678      11         3           2       2             1           8
## 4679     124         1           1       2            10           1
## 4680      49         2           1       7             5           1
## 4681     129         2           1       1             1           1
## 4682       2         3           1       1             8           5
## 4683     120         2           1       7             7           1
## 4684      85         4           4       4             9           8
## 4685     130         2           1       1             1           3
## 4687      54         2           4       2             3           4
## 4688      41         4           4       2             9           8
## 4689     124         4           1       4             8           8
## 4690      44         3           1       2             5           1
## 4691     129         2           1       4             7           1
## 4692     124         4           1       2             9           8
## 4693      44         3           2       7            10           1
## 4694     130         2           1       1             1           3
## 4695       7         3           4       2             9           5
## 4696      54         2           3       2             9           8
## 4697     124         3           4       2             9           8
## 4698     130         3           1       1             1           4
## 4699     130         1           1       1             1           1
## 4700     130         2           1       1             1           8
## 4701      54         2           3       2             9           8
## 4703     123         2           1       2             9           1
## 4704      82         3           4       2             9           1
## 4705     123         4           4       2            10           8
## 4706     130         2           1       1             1           1
## 4707      54         3           4       2             1           8
## 4708     130         2           1       1             1           1
## 4709     120         2           3       7             5           1
## 4710      44         1           1       8             9           1
## 4712      85         2           3       2             1           4
## 4713      31         4           4       2             9           8
## 4714     130         2           1       1             7           1
## 4715      54         2           4       2             1           8
## 4716      59         2           1       1             9           6
## 4717      57         3           4       2             9           1
## 4718     124         2           3       4             4           4
## 4719      25         2           1       2             1           1
## 4720      54         3           4       2             1           8
## 4721     124         4           4       2            10           8
## 4722     123         4           3       2             9           8
## 4723     106         2           4       2             1           8
## 4724     120         2           1       1             7           1
## 4725     124         3           3       2             9           3
## 4727      54         2           4       2             1           1
## 4728      49         2           1       1             9           4
## 4729      54         3           2       2             1           8
## 4730     124         2           3       4             5           1
## 4731      64         2           1       7             7           4
## 4732     123         2           3       2             4           3
## 4733      54         2           4       8             7           1
## 4734      53         3           4       2             9           8
## 4735     124         2           1       2             9           8
## 4736     112         2           3       7             9           1
## 4737       6         4           4       2             1           8
## 4738     106         3           1       7             1           1
## 4739      60         3           4       2             9           8
## 4740     119         5           1       5             9           8
## 4741     123         2           2       7             9           8
## 4742     106         4           1       1             7           5
## 4743     123         1           1       8             5           3
## 4744      44         3           1       4             8           4
## 4745     124         2           4       2             9           8
## 4746      53         2           4       2             1           8
## 4748     123         1           1       2             1           1
## 4749     124         2           4       2            10           8
## 4750      44         2           1       2             1           1
## 4751      44         2           3       2             5           3
## 4752      59         2           1       7             9           3
## 4754      49         2           3       4             7           3
## 4755       6         1           1       2             9           8
## 4756      11         4           4       2             4           3
## 4757      44         3           4       2             1           8
## 4759     123         2           1       7             1           1
## 4760     110         1           3       2            10           4
## 4761      44         1           3       2             1           1
## 4762     111         4           1       2             9           1
## 4763     129         2           1       1             1           1
## 4764     124         2           3       2             1           5
## 4765      59         2           1       2             1           3
## 4766      21         2           4       2             9           8
## 4767      81         2           4       2            10           3
## 4768      57         2           5       2            10           8
## 4769      96         1           1       7             7           1
## 4770     123         3           4       2             4           8
## 4771     124         3           3       2             9           8
## 4773      41         3           4       2             9           4
## 4774      52         2           4       2             1           8
## 4775      44         1           3       2             5           1
## 4776      44         3           1       2            10           5
## 4777      54         3           4       2             1           3
## 4778      54         2           4       2             1           8
## 4779      44         4           4       2            10           4
## 4780      81         2           3       1             9           1
## 4781      41         1           4       2             1           8
## 4782     106         1           3       2             3           5
## 4783     129         1           1       7             1           1
## 4784     124         3           4       2             9           8
## 4785      54         2           4       2             1           1
## 4787      49         2           1       2             9           8
## 4788       6         4           4       2             4           4
## 4789     120         2           1       5             7           4
## 4790      59         3           5       2             1           8
## 4791       6         2           3       4             5           8
## 4792      97         1           1       2             9           8
## 4793      18         1           1       2             7           7
## 4794      44         2           5       7             1           1
## 4795      11         3           5       2            10           8
## 4796     106         2           1       2             3           1
## 4797       6         2           1       2            10           8
## 4798     129         1           1       1             7           1
## 4799     123         2           2       2             1           1
## 4800      54         3           3       2             1           3
## 4801      49         3           1       1             9           4
## 4802      41         2           2       2             9           8
## 4803      31         2           1       2             4           8
## 4804      59         3           1       4             5           1
## 4805     124         4           4       2             9           8
## 4806      96         3           1       1             9           1
## 4807      59         2           2       7             2           1
## 4808     123         3           1       4             4           1
## 4809      96         2           1       7             1           1
## 4810     130         2           3       1             1           3
## 4811      54         1           3       2             1           1
## 4812      54         2           5       2             1           8
## 4813      53         2           5       2             1           4
## 4815      44         3           4       2             5           8
## 4816     123         2           4       7             7           1
## 4817       6         4           1       2            10           8
## 4818     112         1           3       2            10           1
## 4820     124         2           4       2             9           8
## 4821     124         4           4       2            10           8
## 4822      54         2           4       2             1           8
## 4823     123         2           1       6             7           4
## 4824     120         2           1       1             9           7
## 4825      54         1           3       2            10           4
## 4826      97         3           5       2             9           5
## 4827     123         1           3       2            10           8
## 4828     124         4           4       2            10           8
## 4829     107         4           1       7             9           1
## 4830     123         2           1       2             4           8
## 4831      23         2           1       1             8           8
## 4832     115         2           1       4             4           2
## 4833      54         1           4       2             1           8
## 4834     122         3           3       7             7           1
## 4835     106         3           1       1            10           5
## 4836      86         2           1       7             1           1
## 4837      44         2           4       2             4           4
## 4838     106         2           4       7             1           8
## 4839      81         2           4       2             9           1
## 4840      59         3           1       4             7           5
## 4841      18         1           1       1             1           1
## 4842     112         2           5       2            10           8
## 4843      41         3           5       2             9           8
## 4844     119         3           1       7             7           1
## 4845     111         2           1       7             1           1
## 4846      54         3           4       2             1           8
## 4847      54         4           4       2            10           8
## 4848      41         2           4       2             1           1
## 4849      44         2           1       7             5           1
## 4850      59         2           1       4             8           8
## 4851      96         2           1       1             1           1
## 4852      78         2           1       7             5           1
## 4853     111         1           1       6             9           1
## 4854      54         2           1       2            10           8
## 4855     120         2           1       4             7           3
## 4856     123         2           1       2            10           1
## 4857     129         2           1       1             1           1
## 4858     123         4           4       2             5           4
## 4859     129         2           1       1             9           3
## 4860     124         2           1       2             9           8
## 4861     124         4           1       2             9           8
## 4862     123         2           1       7             7           1
## 4863      44         2           3       2             1           8
## 4864     112         1           3       2             9           8
## 4865     123         3           1       2             4           8
## 4866      54         4           3       8             7           1
## 4867      18         2           3       7             5           3
## 4868     130         2           4       1             7           1
## 4869      31         2           3       2             9           8
## 4870      44         1           1       2             5           1
## 4871     124         3           5       2             4           1
## 4872      41         2           3       2            10           8
## 4873      54         2           4       2             1           8
## 4874      54         2           3       2             3           8
## 4875      49         3           4       2             9           1
## 4876     129         3           1       1             9           5
## 4877     124         4           4       2             9           1
## 4878     106         2           1       4             4           5
## 4879      54         3           4       2             1           8
## 4880      85         3           5       2             9           4
## 4881     129         2           1       1             1           1
## 4882      84         3           3       4             8           6
## 4883       6         3           3       2             4           8
## 4884     124         2           4       2             9           8
## 4885      41         2           1       2             1           8
## 4886     124         3           5       2            10           8
## 4887      41         2           4       2             9           8
## 4888      54         2           4       2             1           8
## 4889     124         2           4       2             9           8
## 4890      44         1           3       2            10           8
## 4892     123         3           2       2             4           8
## 4893     123         2           1       2             4           8
## 4894     107         3           2       2             9           3
## 4895     123         2           1       2             5           8
## 4896      41         2           4       2             9           8
## 4897     123         1           3       2             1           2
## 4898      44         2           4       2             1           8
## 4899     120         2           4       7             5           1
## 4900      44         2           2       7             1           1
## 4901      59         2           2       7            10           1
## 4902      21         1           1       7             7           1
## 4903      81         2           3       1             7           4
## 4904      49         2           1       1             7           6
## 4905     124         3           1       2             5           1
## 4906      54         2           4       2             9           8
## 4907     123         1           4       7             1           1
## 4908     123         3           1       2             7           1
## 4909     120         2           1       7             5           1
## 4910      11         2           4       2             5           4
## 4911      23         3           4       2             9           8
## 4912      11         3           5       2             9           3
## 4913     123         1           2       2             5           1
## 4914     106         3           4       2             5           8
## 4915      59         2           1       1             9           1
## 4916      47         4           3       2             9           8
## 4918     123         3           4       2            10           4
## 4919      54         2           4       2             1           8
## 4920      53         3           3       2             7           4
## 4921     123         2           3       8             1           1
## 4922     124         3           1       4             8           4
## 4923     120         1           4       2             3           1
## 4925     123         2           3       7             9           8
## 4926      41         3           1       2             1           1
## 4927     111         4           1       6             9           1
## 4928     120         4           1       7             7           1
## 4929      49         4           1       2             9           8
## 4930       7         2           3       2             9           8
## 4931       6         3           4       2             9           8
## 4932      44         2           1       4             9           8
## 4933      18         3           4       7             5           1
## 4934      21         2           1       2             1           8
## 4935      44         3           1       2             9           8
## 4936     124         3           4       2             9           8
## 4937     130         3           3       1             1           1
## 4938      72         2           4       2             5           8
## 4939      54         2           4       2             1           1
## 4940     106         3           4       2             4           3
## 4941     129         2           1       1             3           3
## 4944      54         2           1       2             5           3
## 4945      23         1           3       7             1           1
## 4946      54         2           4       2             1           8
## 4947      59         2           1       1             4           1
## 4948      44         2           4       2            10           8
## 4949      59         2           1       7             1           1
## 4950      81         4           3       2             9           8
## 4951     111         3           4       2            10           8
## 4952     123         3           3       2             4           8
## 4953      82         4           1       7             6           1
## 4954      44         3           2       7             9           1
## 4955     124         2           4       2             9           8
## 4956      54         2           4       2             1           5
## 4957      11         3           1       2             9           3
## 4958      59         1           1       4             5           3
## 4959     120         2           4       2             1           8
## 4960      44         3           3       4             4           4
## 4962     130         2           1       1             9           1
## 4963      41         3           4       2             2           8
## 4964      11         3           4       2             1           8
## 4965     123         1           1       2             4           8
## 4966      63         1           1       2             4           8
## 4967      59         2           1       7             7           1
## 4968     123         1           1       2             4           8
## 4969      49         2           1       1             9           4
## 4970     124         3           1       2             9           3
## 4971     124         2           3       2             9           1
## 4972      49         2           1       7             1           4
## 4973     124         3           3       2             5           5
## 4974     124         4           1       2             9           8
## 4975     111         2           3       4             7           8
## 4976      31         3           1       4             8           4
## 4977      41         3           3       2             1           8
## 4978      54         2           5       2             9           8
## 4979     112         3           4       2             1           8
## 4980      91         2           3       2             4           8
## 4981     124         2           3       2             4           8
## 4982     124         3           1       1             7           1
## 4983     123         2           1       2             4           5
## 4984     129         2           3       1            10           1
## 4985     123         3           1       1             8           8
## 4986     122         2           1       2             4           8
## 4987     124         3           4       2             9           3
## 4988     124         2           2       2             9           8
## 4989      54         2           4       2             7           5
## 4990       6         3           1       2            10           8
## 4991      54         3           2       2             1           8
## 4992      54         2           4       2             1           8
## 4993       6         3           4       2             9           8
## 4994     130         1           1       1             7           8
## 4995      54         2           4       2             1           5
## 4996      44         2           4       2            10           4
## 4998     124         2           1       2             4           1
## 4999      49         2           1       1             1           1
## 5000       6         4           4       2             1           8
## 5001      54         2           4       2             1           8
## 5002     106         2           1       7             4           1
## 5003     124         2           1       2             9           1
## 5004     123         2           4       2             1           1
## 5005      54         5           1       2             3           1
## 5006     106         3           1       1             4           3
## 5007      54         2           4       2             1           8
## 5008      54         2           3       2             9           1
## 5009      41         3           4       2             5           8
## 5010       6         3           3       2             9           1
## 5011      81         2           4       2             9           8
## 5012      70         3           1       5             7           4
## 5013      44         3           1       4             8           4
## 5014     124         2           3       2             9           8
## 5015      11         2           3       2             9           8
## 5016      21         4           4       2            10           4
## 5017      63         2           4       2             5           4
## 5019      49         2           1       2             9           8
## 5020      46         2           3       8             7           1
## 5021     124         2           4       2             9           8
## 5022      81         4           1       5             7           4
## 5023     124         3           5       2             9           5
## 5024      11         3           4       2             1           8
## 5025     106         1           1       2             1           3
## 5026      11         3           4       2             1           8
## 5027      54         4           3       2             1           8
## 5028     119         2           1       7             1           1
## 5029       6         3           4       2             9           8
## 5030      86         1           1       2             1           1
## 5032     107         3           5       2            10           8
## 5034      21         2           1       2             9           1
## 5035      18         2           3       1             7           1
## 5036     120         2           1       7             5           1
## 5037     119         2           3       2             1           1
## 5038      49         2           1       1             4           5
## 5039      54         3           1       1             1           8
## 5040      54         2           4       2             1           8
## 5041      31         2           3       8             9           4
## 5043      31         3           1       1             3           3
## 5044     124         4           1       7             7           1
## 5045      71         4           1       2             9           5
## 5046     130         1           1       1             7           2
## 5047     124         2           4       2             9           8
## 5048      81         3           4       2             9           8
## 5049      85         3           1       7             7           4
## 5050      54         2           4       2            10           8
## 5051       6         4           4       2             9           8
## 5052      57         4           1       2             4           8
## 5053     123         2           4       7             1           7
## 5054      44         2           1       7             5           1
## 5055     124         2           1       2             9           1
## 5056      54         3           1       8             7           4
## 5057      44         2           1       2             9           8
## 5058      41         2           4       2            10           8
## 5059     112         3           4       2             9           8
## 5060      81         4           5       2             1           8
## 5061      81         3           4       2             9           8
## 5062      23         2           3       4             1           8
## 5063      21         2           2       7             7           1
## 5064      54         2           4       2             1           8
## 5065      21         2           1       4             1           1
## 5066      41         2           4       2             9           8
## 5067     130         3           4       2             1           8
## 5068      81         2           1       2             9           1
## 5069      44         2           4       2             1           1
## 5070      81         2           4       2            10           5
## 5071      48         4           1       7             2           1
## 5072     106         3           1       2             1           3
## 5073     122         4           3       2             4           8
## 5074      41         2           4       2             3           5
## 5076      44         2           4       2             4           5
## 5077     124         4           4       2             9           8
## 5078     124         3           4       2             9           8
## 5079     124         3           3       2             9           8
## 5080     129         2           3       5             7           1
## 5081      52         2           1       2             4           8
## 5082     124         4           4       2             9           8
## 5083      59         2           1       4             4           1
## 5084     106         2           1       2             1           1
## 5085     130         2           1       1             1           8
## 5086     123         2           4       2             9           8
## 5087      49         2           1       1             8           1
## 5088     123         1           1       2             4           8
## 5089     124         3           4       2             9           8
## 5090     123         3           4       7             1           1
## 5091      41         2           2       2             9           8
## 5092      54         2           4       2             1           8
## 5094      49         2           1       7             1           1
## 5095     123         2           3       7             5           1
## 5097      54         3           4       2             1           8
## 5098     120         2           1       1             9           1
## 5099     123         4           1       2             9           8
## 5100     129         2           1       1             7           1
## 5101      41         3           5       2            10           8
## 5102     111         1           3       7             1           1
## 5103      59         2           1       4             8           8
## 5105      41         2           3       2             1           8
## 5106      96         2           1       7             5           1
## 5108     123         1           4       2             9           4
## 5109     124         2           4       5             9           1
## 5111      60         2           1       7             9           8
## 5112      21         2           3       8             1           4
## 5113       6         2           3       2            10           8
## 5114      21         2           3       7             1           1
## 5115     122         2           1       2             1           1
## 5116       6         3           4       2             9           8
## 5117     124         2           3       2             9           8
## 5118      18         1           1       7             5           1
## 5119      11         1           1       8             5           1
## 5120      70         2           3       4             9           4
## 5121     124         2           1       7             7           4
## 5122      41         2           1       1            10           8
## 5123     124         3           4       2             9           8
## 5124     111         3           4       2             5           1
## 5125      41         3           1       2             4           8
## 5126      54         1           3       8             7           1
## 5127      54         2           4       2             1           8
## 5128      44         3           4       6             3           1
## 5129     119         3           1       2             5           5
## 5130      31         3           4       2             9           1
## 5131      59         2           1       4             7           1
## 5132      41         2           4       2             1           8
## 5133     123         2           3       2             9           8
## 5134     120         2           2       4             8           3
## 5135      59         3           1       1            10           3
## 5136      41         2           4       2             9           8
## 5138      49         2           3       7             7           1
## 5139     124         4           4       2             9           8
## 5140      54         2           4       2             1           8
## 5141      44         3           3       7            10           1
## 5142      59         2           1       7             7           1
## 5143      41         2           3       2             9           8
## 5144      54         3           4       2             9           5
## 5145     129         2           1       7             7           1
## 5146      44         3           1       2             9           8
## 5147       8         3           4       2             1           3
## 5148      44         3           2       2             4           1
## 5149     120         2           1       2             1           1
## 5150      44         3           4       2             9           8
## 5151      41         2           3       2             1           3
## 5152     130         3           1       1            10           8
## 5153      82         2           4       2             9           8
## 5154     124         3           1       2             9           8
## 5155      54         3           1       2             9           8
## 5156      91         2           2       2             1           1
## 5157     111         3           1       7             7           1
## 5158      59         3           1       1             9           8
## 5159      59         3           1       4             4           1
## 5160      44         1           4       2             9           5
## 5161      59         2           1       2             9           1
## 5162      31         5           3       2             4           4
## 5163     123         2           3       2             9           3
## 5164      18         2           1       7             5           1
## 5165     130         3           1       1             9           4
## 5166     123         1           1       2             1           5
## 5167     123         3           5       2             9           8
## 5168     124         2           1       2            10           8
## 5169      41         3           4       2             5           8
## 5170      41         3           5       2             1           8
## 5171       6         1           3       2            10           8
## 5172     122         2           4       2             1           1
## 5173      41         3           5       2             9           8
## 5174      60         2           1       2             1           6
## 5175     106         2           5       2             1           8
## 5176     123         2           4       7             8           1
## 5177      41         4           4       2            10           8
## 5178     121         3           1       5             7           4
## 5179     106         2           5       2             1           5
## 5180     124         2           1       7            10           1
## 5181     124         2           4       2             9           8
## 5183      54         4           3       2             9           8
## 5184      54         2           4       2             1           8
## 5185     112         3           3       7             9           1
## 5186      44         2           3       2             9           1
## 5187     106         3           1       7             7           1
## 5188     107         2           1       7             1           1
## 5190      92         1           1       8             1           8
## 5191      40         1           4       2             9           3
## 5192      44         3           2       2             9           8
## 5193     123         1           1       2             9           1
## 5194      49         2           1       4             8           4
## 5195      54         2           4       2             1           5
## 5196     120         4           1       7             7           1
## 5197     124         2           1       7             7           1
## 5198     121         3           1       2             4           8
## 5199      41         2           1       2            10           1
## 5200      54         3           4       2             1           8
## 5201      18         1           1       7             5           1
## 5202       6         2           1       2             9           1
## 5203     124         2           1       6             9           8
## 5205     123         1           1       2             7           1
## 5206     124         3           4       2            10           8
## 5207     123         2           1       7             5           4
## 5208      44         3           1       2             9           8
## 5209     106         3           3       1             9           1
## 5210      44         3           4       2             1           1
## 5211      96         2           1       1             1           8
## 5212       6         1           4       2             9           1
## 5214      71         2           1       7             1           1
## 5215      49         2           1       7             9           1
## 5216      18         5           1       7             3           3
## 5217     124         2           1       1             7           5
## 5218     124         2           3       2             1           1
## 5219      54         3           4       2             1           8
## 5220      41         2           1       2             9           8
## 5221      93         2           1       1             9           1
## 5222      96         2           1       4             9           3
## 5223      44         2           1       4             5           1
## 5224      21         2           3       4             4           4
## 5225     124         5           1       2             5           8
## 5226      54         2           4       2             1           8
## 5227      21         3           4       2             9           8
## 5228      23         2           3       2             9           8
## 5229     112         2           4       2             9           8
## 5230      73         3           1       7             9           1
## 5232      74         3           1       2             9           8
## 5233     123         2           1       2             4           5
## 5234     130         2           1       1             7           1
## 5235      44         3           5       2             9           8
## 5236     123         1           4       2            10           8
## 5238     124         3           2       2            10           1
## 5239      54         2           5       2             1           8
## 5240     123         2           3       2             9           1
## 5241      44         3           4       2             3           8
## 5242     130         2           1       2             3           8
## 5243     120         3           1       6             7           3
## 5244     129         2           1       1             5           1
## 5245      54         3           1       1             7           3
## 5246     123         4           4       7             9           1
## 5247      44         3           1       4             5           1
## 5249     123         1           3       2             9           8
## 5250     120         1           1       2             5           1
## 5251      21         4           4       2             9           8
## 5252      59         2           1       2             1           1
## 5253     107         2           3       2             9           8
## 5254      44         4           4       7             1           1
## 5255      63         2           3       2             1           8
## 5256     124         3           3       2             9           8
## 5257     123         1           1       2             4           8
## 5258     108         2           1       4             8           1
## 5259     123         1           1       2             1           8
## 5260     129         3           1       2             7           1
## 5261      44         3           3       4             9           8
## 5262     129         2           1       1             7           1
## 5264     124         4           4       2             9           8
## 5265      53         3           1       2             1           8
## 5266      44         3           5       2             1           3
## 5267     119         2           1       4             8           1
## 5268      71         2           3       2             9           8
## 5269     123         1           3       2             1           1
## 5270     106         2           4       2             1           5
## 5271     124         2           4       2             9           8
## 5272     124         3           5       2             9           8
## 5273     124         3           4       2             9           8
## 5274      82         2           3       7             1           1
## 5275      54         3           4       2            10           8
## 5277     106         2           1       1             9           5
## 5278     106         2           4       2             1           8
## 5279     124         2           3       2             9           8
## 5280     108         3           4       7             9           1
## 5281      41         3           5       2             1           4
## 5282      41         2           1       7             9           1
## 5283     124         2           3       2             9           8
## 5284     124         2           5       7             1           1
## 5285     111         2           3       1             9           1
## 5286     123         2           3       2             1           8
## 5287      52         3           5       7             7           1
## 5288      98         4           1       2             4           4
## 5289     120         2           1       4             5           1
## 5290     123         2           2       7             7           1
## 5291      54         2           3       2             1           8
## 5292      44         3           1       2             9           8
## 5293     123         4           4       2             9           3
## 5294      85         2           1       2             5           1
## 5295      54         1           3       8             7           1
## 5296      91         2           5       2            10           8
## 5297      54         2           4       2             4           8
## 5298     120         1           1       4             4           1
## 5300     123         3           4       2             4           8
## 5301     124         3           1       2            10           4
## 5302      57         3           1       2             4           6
## 5303     123         1           1       7             1           8
## 5304     130         2           1       7             1           1
## 5305      11         3           4       2             1           8
## 5306      30         1           3       8             7           1
## 5307     124         3           4       2             9           8
## 5308      81         3           2       2            10           8
## 5309      41         1           5       2             9           8
## 5310      23         2           4       2            10           8
## 5311     111         4           4       2             9           3
## 5312     130         2           1       1             9           8
## 5314     123         2           1       2             9           8
## 5315       6         1           3       2             5           8
## 5316      23         2           4       2             5           3
## 5317     124         3           4       7             7           1
## 5318     123         3           2       2             1           8
## 5319      96         1           3       4             4           6
## 5320     123         2           1       1             9           4
## 5321     106         2           4       2             1           4
## 5322      57         4           4       2            10           8
## 5323      21         3           4       2             1           4
## 5324     129         2           1       1            10           3
## 5325       6         4           1       2             9           8
## 5326     120         2           1       1            10           7
## 5327      54         3           1       2             1           8
## 5328     123         4           3       4             7           4
## 5329      81         3           5       2             9           8
## 5330     124         1           1       7             5           1
## 5331      41         2           3       2             9           3
## 5332      81         2           4       7             9           5
## 5333      41         2           4       2             5           8
## 5334     124         2           4       2             9           8
## 5335      44         2           4       2             1           8
## 5336      59         3           3       1             4           1
## 5337      60         4           1       2             9           8
## 5338      59         3           3       7            10           8
## 5339      23         1           1       2             1           1
## 5340      44         2           4       2             9           8
## 5341      31         1           3       2             5           1
## 5342     124         4           3       2            10           8
## 5343     124         3           4       2             9           8
## 5344      49         1           1       7             4           7
## 5345      41         2           4       2             1           3
## 5346     124         4           4       2             9           8
## 5347      59         2           1       2             1           1
## 5348     123         2           1       2             1           4
## 5349      41         2           5       2             1           4
## 5350     130         2           3       1             1           8
## 5352      54         2           3       2            10           8
## 5353     123         3           5       2             1           8
## 5354      49         3           1       1             7           4
## 5355      54         2           1       2             9           8
## 5357      49         1           1       4             1           4
## 5358      59         2           1       1             7           4
## 5359     129         2           1       1             1           1
## 5360     123         2           4       2             9           8
## 5361     124         3           4       2             9           8
## 5362       6         3           4       2            10           8
## 5363      44         2           1       2            10           8
## 5364      85         4           4       2             5           4
## 5365     111         1           3       2             5           4
## 5366     124         3           4       2             9           8
## 5367      59         2           1       7             1           1
## 5368     124         2           1       2             4           1
## 5369     123         1           1       2             4           8
## 5370     124         3           1       2             9           8
## 5371      44         3           5       2             1           8
## 5372     129         2           1       1             7           1
## 5373       7         1           4       2             9           8
## 5374     123         2           4       2             9           8
## 5376     123         2           1       4             4           5
## 5377      81         2           4       2             9           7
## 5378     130         2           3       5             1           5
## 5379     124         3           4       2             9           8
## 5380      59         3           1       4             4           8
## 5381     107         2           1       2             9           1
## 5382     124         2           4       2             1           8
## 5383      54         2           4       2             1           8
## 5384      21         1           1       6             9           1
## 5385      54         2           4       2             9           8
## 5386     106         2           5       2             1           8
## 5387      54         3           4       2             1           8
## 5388     124         3           1       2             9           1
## 5389      59         2           1       4             1           1
## 5390      41         2           4       2             9           3
## 5391     106         2           1       2             1           8
## 5392     123         3           1       4             4           4
## 5393      82         2           4       2             4           8
## 5394     130         2           1       1             9           4
## 5395     106         2           3       2             1           8
## 5396     107         2           3       7             9           3
## 5398       6         3           1       4             7           5
## 5399      49         3           1       2             9           8
## 5400     124         4           4       2             9           8
## 5401      49         3           1       2             9           8
## 5402     126         3           5       2             9           8
## 5403      41         2           1       2            10           8
## 5404      41         3           3       2             4           4
## 5405     106         3           1       4             8           5
## 5406      44         3           4       2             9           8
## 5407     124         3           2       2             5           5
## 5408      44         2           3       4             8           5
## 5409      44         3           4       2             9           8
## 5410     124         4           4       2             9           3
## 5411     129         2           1       1             1           1
## 5412     124         3           1       2             5           8
## 5413     123         2           3       2             9           5
## 5414      31         1           3       2             1           1
## 5415     129         2           1       1             1           1
## 5416      85         2           1       2             5           3
## 5417       6         3           3       7             1           8
## 5419       6         2           4       2             9           5
## 5420      41         2           4       2             1           1
## 5421      54         2           4       2             9           8
## 5422     130         3           1       1             1           1
## 5423     124         3           3       2             9           1
## 5424      54         2           4       2             1           8
## 5425      61         2           3       2             9           3
## 5426     129         1           1       1             3           3
## 5427     130         2           1       7             7           4
## 5428      59         3           1       4             8           1
## 5429      41         2           5       2             1           8
## 5430     123         2           3       2             4           8
## 5431      82         2           4       2             9           8
## 5432     124         3           4       2             9           8
## 5434     107         3           4       2             1           8
## 5435      41         2           1       4             8           4
## 5436       6         3           1       2             9           8
## 5437     107         2           4       2             9           1
## 5438      82         2           1       7             3           1
## 5439      59         2           1       1             1           1
## 5440      54         2           4       2             9           1
## 5441     129         2           1       7             1           1
## 5442      59         2           1       7             1           1
## 5443      36         1           1       5             4           8
## 5444      41         2           2       2            10           8
## 5445       6         3           1       2             9           3
## 5446     120         2           1       4             8           2
## 5447     124         4           4       2             9           8
## 5448     129         2           1       1             5           1
## 5449      21         1           1       7            10           8
## 5451     112         2           1       2             9           8
## 5452     124         3           1       2            10           8
## 5453     123         3           5       2             9           8
## 5455      31         2           4       2             9           8
## 5456     124         4           4       2             9           8
## 5457     123         1           3       2             5           8
## 5458      54         3           4       2            10           5
## 5459      54         2           3       2             9           8
## 5460     124         2           3       2             9           8
## 5461      54         2           3       2             1           1
## 5462       6         1           1       2             5           8
## 5464      21         1           1       8             9           6
## 5465      11         2           1       2             4           5
## 5466      81         3           4       2             9           8
## 5467      41         2           3       2             4           1
## 5468      54         2           4       2             1           8
## 5469      86         3           1       2             3           1
## 5470      26         2           1       1             7           1
## 5471     106         2           3       1             9           1
## 5472      59         2           1       7             7           1
## 5473      54         3           5       2             1           1
## 5474     120         2           1       7             7           3
## 5475      85         2           3       1             8           8
## 5476     130         2           1       1             4           1
## 5477      21         2           1       2            10           8
## 5478     129         2           3       7             9           1
## 5479       6         3           2       2             9           8
## 5480      91         3           3       2             9           5
## 5481     129         3           1       1             1           1
## 5482      60         2           1       1             9           8
## 5483      44         3           3       2             1           1
## 5484     124         4           4       2             9           8
## 5485     124         2           1       7             1           1
## 5486     129         2           1       5             5           1
## 5487      54         3           4       2             9           8
## 5488      96         1           1       7             5           1
## 5489     107         2           2       2             1           8
## 5490      39         2           1       4             4           5
## 5491      81         3           5       2             9           8
## 5492     111         1           1       6             7           8
## 5493     124         1           1       2             1           8
## 5494       6         3           4       2             9           4
## 5495     123         3           5       2             9           5
## 5496      59         3           1       4             4           4
## 5497      93         2           1       2             9           1
## 5498      44         2           4       2             9           8
## 5499     123         3           5       2             9           8
## 5500      54         2           3       2             1           8
## 5501     124         4           3       2            10           7
## 5502      59         1           3       4             1           4
## 5503     124         2           3       1             5           1
## 5504     112         2           1       2             9           3
## 5505      59         3           3       4             9           1
## 5506     106         2           4       2            10           1
## 5507      41         2           1       4             8           1
## 5508     129         2           1       1             2           1
## 5509     124         1           3       2             5           8
## 5510       8         3           1       4             4           1
## 5511      44         3           1       2             1           8
## 5512      49         3           4       1             9           4
## 5513     123         2           1       1             9           3
## 5514      52         5           3       2             4           1
## 5515     123         3           5       7             1           1
## 5516     124         3           5       2             4           5
## 5517       6         4           1       2             9           8
## 5518     111         3           4       2             1           1
## 5519      54         2           3       2             4           1
## 5520      23         3           1       2             9           8
## 5521      81         2           1       1             9           8
## 5522      49         2           4       7             7           1
## 5523      44         2           4       2             1           8
## 5524     123         2           4       2             9           8
## 5525     124         3           3       2             1           1
## 5526     124         1           3       2             9           8
## 5527     130         3           1       1             5           1
## 5528      23         2           1       7             1           1
## 5529      21         3           4       2             9           8
## 5530     123         2           3       2             2           3
## 5531     124         2           4       2            10           8
## 5532     124         2           1       2            10           1
## 5533      82         3           4       2             4           4
## 5534      49         2           1       1             9           6
## 5535     123         4           3       2             5           1
## 5536      54         2           4       2             1           8
## 5538      90         3           1       1             2           4
## 5539      82         2           4       2             9           8
## 5540     124         2           1       1             9           4
## 5541     123         1           4       4             9           2
## 5542       2         2           1       2             9           6
## 5543      21         3           1       4             4           1
## 5544     124         1           1       7             5           5
## 5545     124         3           1       2             4           4
## 5546      21         2           1       2             9           8
## 5547     111         3           4       2             9           1
## 5548      45         2           1       4             9           1
## 5549     120         2           1       7             9           1
## 5550     123         1           3       8             1           1
## 5551      54         2           4       2             9           8
## 5552     124         4           4       2             9           8
## 5553      92         2           1       1             9           4
## 5555      44         3           4       2             9           8
## 5557      41         1           1       2             9           1
## 5558      44         3           4       2             1           7
## 5559     112         3           4       2            10           8
## 5560      21         2           4       2             9           8
## 5561      81         3           1       4             4           8
## 5562     130         3           4       1             5           1
## 5563      41         2           5       2             9           5
## 5564      59         2           1       4             4           5
## 5565     123         1           1       2             9           8
## 5566      54         2           3       2             9           8
## 5567     124         2           4       2             9           8
## 5568     124         4           3       2             9           8
## 5569      21         2           2       2             7           8
## 5570      57         3           1       2             1           8
## 5571      44         2           4       2             5           8
## 5572     111         1           1       2             5           5
## 5573     123         1           1       2             1           8
## 5574      41         1           4       2             1           3
## 5575      92         1           1       2             9           1
## 5577      53         2           4       2             9           4
## 5578     124         4           4       2            10           8
## 5579      54         2           4       2             1           8
## 5580      52         2           3       2             9           8
## 5581     124         4           1       2             9           8
## 5582      53         2           3       2             9           8
## 5583     124         3           3       2             9           8
## 5584     124         2           4       2             9           8
## 5585     123         1           1       2             4           8
## 5586      41         3           1       2             9           8
## 5587       6         2           1       2             4           1
## 5589     119         2           4       2             9           5
## 5590     129         2           1       1             1           1
## 5591     124         4           4       2            10           8
## 5593     124         2           1       2             9           8
## 5594      81         4           4       2             9           8
## 5595     120         3           3       7             7           3
## 5596      23         2           1       1             1           2
## 5597      91         4           1       2            10           1
## 5598     106         2           4       2             1           1
## 5599      59         3           1       1             3           4
## 5600       2         2           3       7            10           1
## 5601     123         2           3       2             4           8
## 5602      49         2           3       2             1           8
## 5603      54         2           1       2             9           8
## 5604     107         2           1       7            10           5
## 5605      86         2           2       7             7           1
## 5607     106         3           3       4             3           8
## 5608     124         3           4       7             9           1
## 5609      23         2           1       7             9           6
## 5610     124         3           1       1            10           1
## 5611     129         2           1       1             7           1
## 5612       6         3           1       2             9           8
## 5613       6         1           1       1             2           8
## 5614       6         2           1       1             9           3
## 5615     119         2           4       7            10           1
## 5616     106         2           3       2             1           8
## 5617      54         2           1       7             9           1
## 5618     124         3           3       2             9           8
## 5619      59         2           3       4             9           1
## 5620     124         4           3       2             9           8
## 5621     124         4           4       2             9           8
## 5622     111         1           1       7             5           1
## 5623      21         2           4       2             4           8
## 5624      44         2           1       2             5           1
## 5625      41         3           5       2            10           8
## 5626     106         3           1       2             9           8
## 5627      96         2           4       7             5           1
## 5628     123         3           1       2             4           8
## 5629     124         2           3       2             9           8
## 5630     120         3           1       1             9           1
## 5631     130         2           1       1            10           6
## 5632     107         3           4       2             9           8
## 5633     124         3           1       2             9           8
## 5634     106         2           3       2             1           8
## 5635      81         2           4       2             1           5
## 5636      31         2           1       1             3           3
## 5637     124         3           1       2             9           8
## 5638      59         2           3       4             8           3
## 5640      41         2           4       2             1           1
## 5641      22         2           4       2             9           8
## 5642     120         2           1       5             7           4
## 5643     129         2           3       1            10           5
## 5644     106         2           3       1            10           2
## 5645      41         3           5       2             3           5
## 5646      11         2           1       4             9           8
## 5647       6         2           1       2             9           8
## 5649     124         4           1       2            10           8
## 5650     112         3           1       7             1           8
## 5651     124         2           4       2             9           8
## 5652      59         2           1       5             7           4
## 5653     124         2           1       2             4           5
## 5654      84         3           1       1             7           1
## 5655      59         1           1       1             2           1
## 5656      96         2           3       2             1           4
## 5657      41         2           3       2             4           8
## 5658      54         2           4       2             1           8
## 5659      59         3           1       7             5           1
## 5660      23         3           1       1             9           8
## 5661      90         2           1       1             2           3
## 5662      85         2           1       2             1           3
## 5663      54         2           4       5             1           1
## 5664     123         1           1       2             9           8
## 5665      54         2           4       2             9           4
## 5666     123         4           1       1             4           5
## 5667     129         2           1       1             9           1
## 5668      54         2           4       2             1           8
## 5669     129         2           1       4             8           4
## 5670     124         2           1       2             4           1
## 5671     106         2           3       1            10           1
## 5672     124         4           4       2            10           3
## 5673      44         2           3       2             4           5
## 5674       6         3           4       2            10           5
## 5675      81         3           1       2             5           1
## 5676      41         3           4       2            10           3
## 5677     123         2           4       2             9           8
## 5678     124         2           3       2             4           1
## 5679     124         4           4       2            10           8
## 5680       4         2           4       2             1           1
## 5681     123         3           5       2            10           8
## 5682      41         2           4       2             3           3
## 5683     124         3           4       2             9           8
## 5684     124         2           3       5             7           1
## 5685     124         1           3       2             9           8
## 5686     123         3           1       4             9           5
## 5687      41         3           5       2             9           8
## 5688     106         2           1       1             7           8
## 5689     120         2           1       7             1           1
## 5690     107         2           4       2            10           4
## 5691      29         2           3       2            10           5
## 5692      39         2           1       2             9           8
## 5693     124         2           3       2            10           4
## 5694      44         1           3       7             9           8
## 5695       6         3           1       2             9           8
## 5696     124         2           4       2            10           1
## 5697     123         2           1       2             4           8
## 5698      41         2           5       2             9           4
## 5699      23         2           1       7             9           1
## 5700     123         3           3       2             9           8
## 5701      81         3           5       2             9           8
## 5702     123         1           1       2             9           8
## 5703     123         1           1       2             9           6
## 5705     130         2           3       1             7           1
## 5706       3         3           1       1             7           1
## 5707      44         3           1       7             9           1
## 5708      54         2           4       2             1           1
## 5709      54         3           4       2             1           8
## 5710     124         4           4       2             9           5
## 5711      59         2           1       7             7           1
## 5712      21         1           1       2             9           8
## 5713       6         1           1       2            10           8
## 5714      85         2           4       2             4           8
## 5715     120         2           1       4             4           1
## 5716      54         4           4       2            10           8
## 5717      23         3           3       2            10           8
## 5718     111         1           1       2             4           5
## 5719     111         2           1       2             9           8
## 5720     129         2           1       1             2           3
## 5721      54         2           5       2             5           8
## 5722      49         2           1       4             8           5
## 5723     123         2           1       4             9           1
## 5724      54         2           4       2             1           8
## 5725     123         3           5       2             9           8
## 5726     130         2           1       1             1           1
## 5727      11         2           4       2            10           8
## 5728      54         2           1       2             1           8
## 5729      53         2           1       2             9           4
## 5730      87         3           1       1             9           4
## 5731     124         3           3       2            10           8
## 5732       6         2           1       2             9           8
## 5733      44         3           3       4             4           5
## 5734     123         2           3       2             4           8
## 5735      21         3           1       2             4           8
## 5736       6         2           1       2             9           8
## 5737     106         2           1       4             8           8
## 5738      23         2           4       4             8           7
## 5739     124         2           4       2             9           8
## 5740      54         3           5       2             9           8
## 5742     123         2           5       7             7           1
## 5743      41         4           4       2             9           8
## 5744     111         2           1       1             9           1
## 5746       6         3           4       7             9           8
## 5747     123         2           4       2             1           8
## 5748     123         1           2       7            10           1
## 5749     123         2           3       2             4           8
## 5750     124         3           3       2             4           8
## 5751      41         1           3       2            10           8
## 5753      21         1           1       2             9           8
## 5754     124         4           2       2             9           8
## 5756      54         2           3       2             1           8
## 5757     107         1           1       8            10           1
## 5758     124         1           1       6             5           1
## 5759       6         3           1       1             7           4
## 5760      54         3           4       2             1           8
## 5761     120         1           1       7             1           1
## 5762     107         2           3       2             9           1
## 5763       6         4           4       2             7           8
## 5764     124         4           1       2             9           8
## 5766      11         2           4       2             9           8
## 5767     130         2           1       7             7           1
## 5768      57         4           1       2             4           8
## 5769     107         3           4       2            10           8
## 5770       6         2           1       2             9           8
## 5771      21         3           4       2             1           1
## 5772      49         2           1       7             1           1
## 5773      81         3           5       2            10           8
## 5776      44         2           1       2             9           8
## 5777      49         2           4       4             8           1
## 5778     130         2           1       1             7           1
## 5779      41         3           1       2             9           8
## 5780      44         3           2       2             9           8
## 5781      41         3           1       8             7           3
## 5782      14         3           1       1             9           8
## 5783      44         1           4       2             1           5
## 5784      21         5           1       7             7           1
## 5785     112         3           1       4             7           4
## 5786     129         2           1       1             1           1
## 5787     124         4           4       2             9           3
## 5788     129         2           1       1             9           1
## 5789      54         2           3       2             1           8
## 5790      44         3           1       4             8           3
## 5791     124         4           3       2             9           8
## 5792     123         3           4       2             4           8
## 5793      54         2           4       2             1           8
## 5794     112         2           4       2             9           1
## 5795     123         1           1       2             4           8
## 5796     123         3           4       2             1           5
## 5797      54         2           4       2             1           8
## 5798     124         3           1       4             4           8
## 5799     124         3           1       2             9           8
## 5800     130         3           3       1             1           1
## 5801      44         3           1       7             7           1
## 5802     123         2           1       4             7           4
## 5803     124         3           4       2             9           8
## 5804      18         1           1       7             7           7
## 5805     124         4           4       2             9           8
## 5806      54         3           5       2             1           8
## 5807     129         2           4       1             1           1
## 5808      21         2           4       2             9           5
## 5809     123         1           1       8             5           5
## 5810      41         3           4       2             1           8
## 5811      41         3           4       2             1           8
## 5812      52         5           3       2             4           1
## 5813       6         2           1       1             7           1
## 5814     124         4           4       2             9           8
## 5815     124         3           4       2            10           8
## 5816     106         2           5       2             1           5
## 5817      54         3           3       2            10           1
## 5818     124         2           1       4             4           5
## 5819     123         3           5       2             9           3
## 5820     107         3           4       2             9           8
## 5821      60         2           1       2             9           8
## 5822      15         2           1       2             9           8
## 5823     123         1           1       7             1           1
## 5824     123         2           1       1             1           1
## 5826      41         2           4       2             9           3
## 5827      54         1           3       2             9           6
## 5828     124         4           4       2             9           8
## 5829      21         3           1       2             9           3
## 5830       6         3           4       2             4           4
## 5831      70         3           4       5             4           1
## 5832      41         2           4       2             1           8
## 5833     130         2           3       1             1           3
## 5835      70         1           1       5             7           4
## 5836      54         2           3       2             9           8
## 5837     120         2           1       6             3           5
## 5838     106         2           1       2             3           3
## 5839     107         1           3       2             1           8
## 5840     106         2           3       2             1           4
## 5841     123         4           4       7            10           1
## 5842     124         2           4       2            10           8
## 5843      85         2           4       2             3           3
## 5844     112         3           1       1             9           1
## 5845       6         2           1       2             9           8
## 5846     120         2           3       7             7           1
## 5847     123         5           3       2             9           4
## 5848      52         1           3       2            10           4
## 5849     129         2           1       1             1           1
## 5850      81         2           4       2             1           1
## 5851      41         1           3       2            10           1
## 5852     111         2           4       7             1           1
## 5853     129         2           1       1             1           1
## 5854     123         1           2       7             7           1
## 5855     120         2           3       5             1           1
## 5856       6         2           3       2             4           5
## 5857     124         2           4       2             4           1
## 5858     123         2           3       7             9           8
## 5859     106         3           1       1             9           4
## 5860      54         2           5       2             1           1
## 5861      11         3           1       7             7           5
## 5862      44         2           4       2             1           3
## 5863     124         2           1       4             4           8
## 5864      44         3           1       2             2           8
## 5865      23         3           4       2             9           8
## 5866       6         2           3       2             8           8
## 5867      91         3           1       2             5           1
## 5868      57         3           1       7             9           6
## 5869     107         2           4       2             4           5
## 5870      41         2           4       2             9           5
## 5871     123         1           1       2            10           8
## 5872      41         2           4       2             9           8
## 5873      57         4           1       2             4           8
## 5874     124         3           1       2             4           8
## 5875     129         2           1       7             2           1
## 5876     124         2           3       2             4           8
## 5877      98         1           3       2             5           1
## 5878     123         2           1       2             9           8
## 5879      21         3           3       2             9           8
## 5880      54         1           4       1             9           3
## 5881      59         2           1       4             4           4
## 5883     123         1           1       2             4           5
## 5884      41         2           4       2            10           5
## 5885     124         1           1       8             2           8
## 5886     123         1           5       7             1           1
## 5887     120         2           3       4             8           7
## 5889      15         2           1       2            10           4
## 5890      54         3           4       2             1           5
## 5891      96         1           1       7             7           1
## 5892     124         2           3       2            10           5
## 5894     112         3           2       2             9           8
## 5895     124         4           4       2            10           3
## 5896      59         2           4       2             1           1
## 5897     124         4           1       4             5           5
## 5898      18         3           1       4             7           5
## 5899     124         4           1       2             9           8
## 5900      52         2           4       2             9           8
## 5901      41         2           5       2             9           8
## 5902      54         2           1       2             9           8
## 5903      44         2           1       8             4           5
## 5904     124         3           5       2             1           4
## 5905     130         2           4       1             1           1
## 5906     123         3           1       5             8           6
## 5907      54         1           4       2             1           8
## 5908       6         3           4       2             1           5
## 5909      57         2           3       2            10           1
## 5910      59         2           1       4             8           1
## 5911      18         2           1       7             7           1
## 5913     130         2           3       5             7           1
## 5914      71         3           1       2             9           4
## 5915      54         2           4       2             1           1
## 5916      11         2           1       2             2           3
## 5917      44         2           1       2             1           1
## 5918      54         2           3       2            10           5
## 5919     120         2           1       5             7           4
## 5920     130         2           1       1             9           8
## 5921       6         4           4       2             9           8
## 5923     124         2           3       2             9           8
## 5924      59         2           5       1             9           1
## 5925      54         2           3       2             1           1
## 5926      54         2           4       2             9           8
## 5928      44         3           1       2            10           8
## 5929     123         1           1       7             1           1
## 5930      81         2           1       2             4           5
## 5931     124         2           3       7             7           1
## 5932      54         3           4       2             9           8
## 5933       6         3           3       2             9           8
## 5934      41         2           4       2             9           4
## 5935     120         2           1       1             9           1
## 5936     107         2           3       2            10           8
## 5937     124         3           4       2             9           5
## 5939      18         2           2       7             5           1
## 5940     123         2           1       1            10           4
## 5941     123         1           1       2             1           1
## 5942       6         2           1       2             5           5
## 5943     123         1           1       8             5           1
## 5944     125         3           2       2             9           8
## 5945      54         3           3       2             1           7
## 5946     123         3           2       2            10           8
## 5947       6         4           4       2            10           8
## 5948      54         2           4       2             5           3
## 5949     123         3           4       2             9           8
## 5950     124         4           3       2             9           8
## 5951      21         3           4       2             9           8
## 5953     124         3           5       2             1           8
## 5954     124         4           1       2             9           8
## 5955     120         2           1       7             9           1
## 5956      49         2           1       1             8           8
## 5957     124         4           4       2             9           8
## 5958     124         3           4       2            10           8
## 5959     124         4           1       2             9           1
## 5960     129         2           1       1             2           1
## 5961      86         2           5       2             1           1
## 5962      31         1           3       8             5           1
## 5963      59         2           1       1             7           4
## 5964      41         2           1       2             4           8
## 5966      23         2           1       4             9           8
## 5967      78         3           1       4             8           1
## 5968      60         2           1       1             9           1
## 5969      41         2           4       2             9           1
## 5970      54         3           4       2             1           3
## 5972      21         2           4       2             9           8
## 5973      11         2           1       2             3           5
## 5974      59         2           1       4             8           1
## 5975      91         2           5       7             1           5
## 5976     123         3           5       2             9           8
## 5977       6         3           1       2             9           8
## 5978     112         3           1       2             5           1
## 5979      52         3           5       7             9           1
## 5980     123         1           1       2             4           8
## 5982     124         2           4       7             7           1
## 5983     124         3           4       2             9           5
## 5984     124         3           3       2             9           8
## 5985       6         4           1       2             9           8
## 5986      59         3           1       4             4           4
## 5987     123         1           3       2             1           1
## 5988      21         3           5       7            10           5
## 5989      41         2           4       2             1           8
## 5990      41         2           5       2             1           8
## 5991     124         4           4       2             9           8
## 5992      54         2           4       2             1           8
## 5993     124         3           1       2             9           8
## 5994     124         2           3       2             4           1
## 5996     124         3           3       2            10           8
## 5997     124         3           4       2            10           1
## 5998     106         3           1       7             3           1
## 5999      44         2           4       2            10           3
## 6000      78         2           1       1             9           3
## 6001     106         2           1       1             1           8
## 6002     129         2           1       1             7           1
## 6003      59         2           4       2             1           3
## 6004     129         3           1       4             7           4
## 6005     106         2           4       2             1           8
## 6006     123         2           4       2             1           1
## 6007     124         2           4       2             9           8
## 6008      85         3           4       2             9           8
## 6009      54         2           4       2             1           8
## 6010     129         2           1       7             1           1
## 6011      41         2           4       2            10           8
## 6012      59         2           1       1             8           6
## 6013      54         2           2       2             4           8
## 6014      49         2           1       7             1           1
## 6015     120         1           3       2             5           1
## 6016      96         2           1       4             8           1
## 6017     106         3           4       5             3           4
## 6018     107         1           1       8            10           1
## 6019     120         1           1       1             9           1
## 6020      44         2           5       2            10           1
## 6021      44         2           1       1            10           8
## 6022      14         2           1       2             9           3
## 6023      82         2           2       2             4           8
## 6024       6         3           4       2             9           8
## 6025     111         2           4       2             1           1
## 6026     107         2           4       2             9           1
## 6027     123         1           1       2             1           3
## 6028      44         1           3       2             4           8
## 6029     123         1           1       2             4           8
## 6030      54         3           4       2             1           4
## 6031     130         2           1       5             7           1
## 6032      54         2           4       2             5           8
## 6033       6         1           1       2             9           5
## 6034      41         5           3       2             5           1
## 6035     106         2           1       4             8           1
## 6036     124         3           5       2             4           8
## 6037     123         3           4       2             9           8
## 6038     123         2           3       2             4           8
## 6039      44         3           4       2            10           1
## 6040     112         2           3       2            10           8
## 6041      54         2           4       2             9           8
## 6042       7         3           1       4             5           1
## 6043     129         2           1       1             7           1
## 6044      34         1           3       7             5           1
## 6045     130         2           3       1            10           5
## 6046      54         3           4       2             1           8
## 6047      85         2           3       2             4           8
## 6048      41         2           1       4             7           8
## 6049      21         3           5       2             4           8
## 6050      21         3           1       6             7           1
## 6051      11         4           4       2             9           3
## 6052     124         3           4       2            10           1
## 6053      41         3           4       7            10           1
## 6054      21         3           1       2             4           1
## 6055     123         2           3       2             4           8
## 6056     124         2           1       1             9           1
## 6057       7         2           4       2             9           8
## 6059     124         3           4       2             9           1
## 6060      59         2           4       2            10           1
## 6061      59         2           3       5             7           4
## 6062      54         2           1       2             9           8
## 6063      40         2           3       4             9           8
## 6064      49         2           1       1             9           3
## 6065      21         1           3       2             7           8
## 6066      59         2           1       1            10           4
## 6067     119         2           1       7             7           1
## 6068       6         3           1       2            10           8
## 6069     124         3           4       2             9           1
## 6070      41         2           5       2             1           1
## 6071     130         3           1       1             7           1
## 6072      44         2           4       2             9           8
## 6073     111         2           1       7             5           1
## 6074     124         4           1       1             9           4
## 6075      41         2           4       2            10           3
## 6076     124         3           2       7             5           1
## 6077      59         2           1       4             9           8
## 6078      93         1           1       6             7           4
## 6079      94         2           4       2             1           8
## 6080     107         2           4       2             1           8
## 6081     124         4           4       2             9           8
## 6082      49         2           1       4             7           1
## 6083      44         4           4       2             9           8
## 6084     110         2           1       2             5           1
## 6085     106         3           2       2             1           1
## 6086      54         3           4       2             1           8
## 6087     124         2           1       2             1           1
## 6088     123         3           5       2             1           1
## 6089      41         3           4       2            10           8
## 6090     123         1           3       2             1           1
## 6091      44         2           3       2             1           8
## 6092     124         4           4       2             9           3
## 6093     123         1           1       8             9           1
## 6094      31         1           1       2             9           1
## 6095     124         4           4       2             9           8
## 6096     129         2           1       1             7           8
## 6097     124         2           1       7             5           1
## 6098     124         2           3       2             9           1
## 6099     107         2           3       2             9           8
## 6100     107         2           3       2             1           1
## 6101     123         3           1       2             7           1
## 6102      23         2           1       2             4           8
## 6103     124         2           1       2             1           5
## 6104      81         2           4       2             3           1
## 6105     124         3           1       4             4           3
## 6106     112         1           3       2             4           1
## 6107      44         4           4       2             9           8
## 6108     129         2           1       1             1           1
## 6109      86         2           1       1             4           1
## 6110     123         3           1       2             9           8
## 6111      41         3           4       2             9           8
## 6112     123         1           1       2            10           8
## 6113      31         2           3       2             4           1
## 6114       6         3           1       2             1           3
## 6115      54         4           3       2             9           8
## 6116      44         4           4       2             9           3
## 6117     106         3           1       1             7           5
## 6118     123         2           3       8             7           4
## 6119      96         2           1       7             5           1
## 6120      54         3           3       2             9           8
## 6121     123         1           1       2             1           8
## 6122     120         2           1       1             9           7
## 6123      21         4           1       2             4           1
## 6124     124         4           1       2             6           4
## 6125     107         2           1       2             9           3
## 6126     111         2           1       7             9           1
## 6127      59         3           3       4             8           1
## 6128     124         3           3       4             8           1
## 6129      44         4           4       2             9           8
## 6130      96         2           2       7             5           1
## 6132      52         2           4       2            10           8
## 6133      95         2           1       7             9           1
## 6134      54         2           3       8             1           1
## 6135     124         3           4       2             9           8
## 6136     123         1           3       2             4           1
## 6137     107         1           4       2             9           8
## 6138     106         4           1       7             7           1
## 6139     120         1           1       7             7           1
## 6140     123         2           1       7             9           1
## 6141      44         2           1       7             7           1
## 6142     120         4           4       2            10           4
## 6143      54         2           1       2             1           3
## 6144       6         3           1       2            10           3
## 6145     129         2           3       1            10           1
## 6146      41         2           5       2             1           8
## 6147      54         2           4       2             1           8
## 6148     107         2           4       2            10           8
## 6149     124         2           4       2             9           8
## 6150     124         3           1       7             7           1
## 6151     129         2           3       1             1           1
## 6153     124         3           3       2             9           8
## 6154      54         4           5       2             9           8
## 6155      54         2           3       2             9           1
## 6156      49         2           3       4             8           1
## 6157     129         2           1       1             7           8
## 6158      54         2           4       2             5           2
## 6159      15         3           4       2            10           8
## 6160      54         1           4       2             1           1
## 6161      41         2           4       2             1           8
## 6162      44         1           3       2             9           1
## 6163      81         2           4       2             9           5
## 6165      54         2           4       2             9           8
## 6166     124         4           3       2            10           8
## 6167      54         3           4       2             9           8
## 6168     108         3           1       1             9           1
## 6169      44         2           2       2             1           5
## 6170     124         1           1       2             3           3
## 6171     130         2           3       5             5           1
## 6172      54         2           4       2             9           8
## 6173      44         2           1       2             5           8
## 6174     124         2           1       1             1           1
## 6175      54         2           3       2             1           4
## 6176      85         2           1       2             9           8
## 6177      54         3           4       2             1           8
## 6178     124         2           1       2             9           8
## 6179      44         3           4       2            10           8
## 6180     111         4           4       8             1           1
## 6181     123         4           1       4             1           1
## 6182      54         3           3       2             9           8
## 6183     120         1           1       6             1           5
## 6184     124         2           1       2             4           8
## 6185     111         2           4       2             1           3
## 6186      54         2           4       2             1           8
## 6187     120         2           1       7             7           1
## 6188     130         2           1       1            10           1
## 6189     124         3           4       7             9           1
## 6190      54         1           3       2             1           8
## 6191      41         3           5       2             9           8
## 6192     123         2           1       1             9           4
## 6193      11         3           5       2            10           8
## 6194      54         2           4       2             1           8
## 6195      81         3           4       2            10           8
## 6197     124         4           1       2             9           8
## 6198       7         3           4       2             1           8
## 6199      85         3           4       7             9           1
## 6200     123         3           1       7             5           5
## 6201       7         3           4       2             4           8
## 6202      44         3           4       2            10           8
## 6203       6         2           4       2            10           8
## 6204      44         1           3       7             1           1
## 6205     106         3           4       2             9           8
## 6206     111         1           1       8             9           1
## 6207     123         1           3       2             9           1
## 6208      23         2           1       2            10           3
## 6209     124         4           3       2            10           1
## 6210     107         3           5       2             9           8
## 6211     124         2           4       2            10           8
## 6212      85         2           2       2             9           8
## 6213      21         3           4       2             9           8
## 6214     120         2           1       7             7           1
## 6215     130         2           1       1             7           1
## 6216     123         2           1       2             9           8
## 6217     123         4           1       2             9           5
## 6218      59         3           1       7             5           1
## 6219      49         2           1       7             7           1
## 6220      92         2           1       2             4           5
## 6221       6         2           1       2             9           1
## 6222     123         1           1       2             4           8
## 6223       6         4           3       2             9           1
## 6224      81         1           3       5             7           4
## 6225      81         1           3       2            10           8
## 6226      53         3           4       2             1           8
## 6227     129         2           1       1            10           1
## 6228       6         2           4       2             4           8
## 6229      71         2           3       2            10           1
## 6230      46         3           3       2            10           8
## 6231      41         2           3       2             3           3
## 6232     124         4           3       2             9           8
## 6233      54         3           4       2             1           8
## 6234     123         2           1       1             1           8
## 6235     124         3           4       2             9           8
## 6236     120         2           4       2             7           8
## 6237      12         2           3       2             9           8
## 6238     106         2           1       5             7           4
## 6239     106         2           1       1             7           4
## 6240      53         2           1       2             9           1
## 6241     111         1           4       2             4           8
## 6242     104         2           4       2             1           8
## 6244      44         2           3       7             9           8
## 6245     123         1           1       8             1           3
## 6246     107         2           4       2             9           8
## 6247     124         3           4       2             9           8
## 6248       6         3           1       2            10           8
## 6249      41         2           5       2             9           8
## 6250      36         2           4       2             1           3
## 6251     120         3           1       1             5           1
## 6252     123         3           4       2             9           8
## 6253      54         2           1       7             9           1
## 6254     124         4           3       2             9           1
## 6255       7         4           4       2             9           8
## 6256     111         3           1       2             9           4
## 6257       6         1           3       2             5           8
## 6258     124         2           1       2             9           4
## 6259      96         2           1       7             5           1
## 6260      54         2           1       2             1           8
## 6261      54         2           4       2             1           3
## 6262     123         4           1       7             9           1
## 6263     120         2           1       7             1           1
## 6264       6         4           3       2             1           3
## 6265     106         2           1       2             1           1
## 6266     124         3           4       2             9           8
## 6267      54         3           4       2             1           8
## 6268     124         3           3       4             1           8
## 6269     119         3           1       4             8           8
## 6270     107         2           1       1             9           8
## 6271     130         2           1       5             7           1
## 6272      59         3           4       7             8           8
## 6273      40         2           1       7             3           5
## 6274     124         4           4       2            10           1
## 6275     111         2           4       2             1           5
## 6277     111         3           4       1             7           1
## 6278     123         2           1       1            10           3
## 6279      28         1           1       2             1           4
## 6280      84         3           1       1             9           4
## 6281      86         2           1       7             7           1
## 6282      82         3           4       2             4           5
## 6284      59         2           1       7             7           1
## 6286      44         1           4       2             5           8
## 6287      21         1           1       2             9           1
## 6288      41         3           1       2             5           8
## 6289     123         3           4       2             1           8
## 6290      54         2           3       2             1           8
## 6291      81         2           5       7             7           4
## 6292     123         1           3       2             9           7
## 6293     106         3           3       7             1           1
## 6294       6         3           1       2            10           8
## 6295     115         2           1       4             8           4
## 6296      85         3           3       2             1           3
## 6297      31         1           3       2             1           1
## 6298     124         3           4       2             9           8
## 6299      86         3           4       1             8           7
## 6300      41         2           3       2             5           1
## 6301      54         2           4       2             1           8
## 6302      44         2           4       2             9           8
## 6303     129         2           1       1             7           8
## 6305      18         3           1       7             5           1
## 6306      54         3           4       2             1           8
## 6307     124         2           1       7             1           1
## 6308     112         2           5       2             9           8
## 6309     124         1           3       2             5           6
## 6310     124         3           4       2             9           8
## 6311     123         3           1       2             1           1
## 6312     124         3           3       2             9           4
## 6314      21         1           1       2             9           8
## 6315     120         3           1       1             9           4
## 6316      82         2           4       2            10           8
## 6317     123         2           3       2             4           8
## 6318      49         2           3       2            10           8
## 6319     124         3           1       2             9           8
## 6320      41         3           5       2             9           8
## 6321      85         2           4       7             9           1
## 6322     129         1           1       1             1           1
## 6323     124         5           3       2             5           8
## 6324      53         1           1       8             5           5
## 6325       6         2           4       2             9           8
## 6326      49         1           1       2             1           1
## 6328      59         3           1       4             9           1
## 6329     124         4           4       2             9           8
## 6330      53         2           1       2             9           2
## 6331      54         3           5       2             1           8
## 6332      41         2           3       2             4           3
## 6333     106         2           1       1             9           8
## 6334      20         3           1       4             4           1
## 6335       6         1           1       8             4           4
## 6336      95         2           2       2             1           8
## 6337      54         3           4       2             1           1
## 6338     130         2           1       1            10           8
## 6339      59         2           1       4             7           3
## 6340     129         2           1       7             9           1
## 6341      92         2           4       2             1           8
## 6342     119         2           1       7             7           4
## 6343     130         3           1       7             1           4
## 6344     124         3           1       1             7           1
## 6345      96         2           1       5             5           4
## 6346     124         2           4       2             9           8
## 6347     124         4           3       2             9           3
## 6348      54         1           3       2             1           1
## 6350      41         3           5       2            10           8
## 6351      15         2           4       2            10           5
## 6354      81         2           1       2             9           1
## 6355     124         2           4       2             9           8
## 6356       6         1           1       7             7           1
## 6357      18         2           1       4             1           4
## 6358     124         2           4       2             9           8
## 6359     129         2           1       1             9           8
## 6360     124         3           1       2             9           3
## 6361     129         2           1       7             9           5
## 6362      41         2           1       2             4           8
## 6363      39         2           1       7             1           4
## 6364     129         2           1       1             1           8
## 6365     106         3           4       2             1           3
## 6366     123         3           2       2             9           8
## 6367     130         2           3       5             1           8
## 6368      54         2           4       2             1           8
## 6369     123         2           1       4             8           1
## 6370     130         2           1       1             1           1
## 6371     119         2           4       2             4           5
## 6372     123         2           3       2             9           8
## 6374      41         2           4       2             7           4
## 6375     123         3           3       2             4           8
## 6376     124         4           4       2             9           8
## 6377      54         2           4       2             1           5
## 6378      21         4           4       2             9           8
## 6379      21         2           5       2             9           5
## 6380      44         4           2       7             5           1
## 6381     106         2           4       2             1           5
## 6382     120         1           4       2             1           5
## 6383      41         2           3       2             9           3
## 6384     124         2           4       2             9           8
## 6386      59         2           1       5             7           4
## 6387      41         2           4       2             4           8
## 6388     124         4           1       2             2           8
## 6389      34         1           1       1             5           1
## 6390      44         2           3       7             1           1
## 6391      54         2           4       2             1           8
## 6392      54         2           4       2             1           8
## 6394     123         2           3       2            10           4
## 6395      44         3           4       2             1           4
## 6396      26         1           1       1             1           1
## 6397     130         2           3       1             8           3
## 6398      11         4           1       7             9           8
## 6399      54         2           4       2             1           8
## 6400     124         3           4       2             4           8
## 6402      54         3           4       2             9           8
## 6403      59         2           3       5             1           1
## 6404     109         2           5       2             5           4
## 6405     129         2           1       1             9           1
## 6406      44         1           1       2             9           8
## 6407      21         3           4       2             9           8
## 6408      41         2           3       2             9           7
## 6409     107         2           4       2             1           8
## 6410      18         2           2       7             5           1
## 6411     124         3           1       4             3           4
## 6412      53         3           5       2            10           8
## 6413      81         3           4       2            10           8
## 6414     106         2           1       1             1           8
## 6415     125         3           1       2             9           8
## 6416     107         1           3       2             9           8
## 6417     123         2           3       2             9           5
## 6418     123         3           2       2             9           8
## 6419     123         1           3       2             5           4
## 6420      41         2           1       2             1           8
## 6422       6         3           4       2            10           8
## 6423      44         2           4       2             1           1
## 6424     106         2           4       2             1           8
## 6425     124         1           1       2            10           3
## 6426      96         1           1       7             5           1
## 6427     123         1           1       7             9           1
## 6429     124         4           1       2            10           8
## 6430      26         2           1       5             7           8
## 6431      21         3           4       2             9           1
## 6432     130         2           1       1            10           7
## 6433      52         1           1       2             4           1
## 6434      59         2           1       4             7           4
## 6435      23         1           1       2             1           1
## 6436     111         1           3       2             2           1
## 6437      41         2           5       2             1           8
## 6438      41         3           5       2             9           8
## 6439      41         3           4       2             9           8
## 6440      39         2           1       2             9           1
## 6441      44         2           1       2             5           1
## 6443     124         1           3       1             1           8
## 6444     119         2           1       7             1           1
## 6445      21         5           3       7             9           1
## 6446     123         3           4       2             9           8
## 6447      85         3           4       2             9           8
## 6448     111         3           2       2             1           3
## 6449     106         3           3       1            10           1
## 6450      44         1           4       2             1           8
## 6451     123         2           1       4             5           1
## 6452      82         2           5       2            10           5
## 6453      41         2           3       2             9           8
## 6454     129         3           1       1             7           1
## 6455     124         3           2       2             9           8
## 6456      74         3           3       7             5           1
## 6457      44         3           3       2             3           4
## 6458      57         3           1       2             7           4
## 6459     115         3           1       2             9           8
## 6462      49         2           1       7             9           1
## 6463       8         2           4       2             1           5
## 6464     130         2           1       1             7           1
## 6465     119         2           1       2             1           1
## 6466     124         3           4       2             9           8
## 6467      49         2           1       4             7           3
## 6468      53         1           1       2             9           1
## 6469     119         3           4       2             6           1
## 6470     124         4           2       2            10           8
## 6471     129         2           1       1             9           1
## 6472      41         2           4       2             9           8
## 6473       7         3           1       8             9           4
## 6474     130         2           1       1             1           1
## 6475      54         3           4       2            10           8
## 6476      54         1           4       2             1           8
## 6477     124         2           3       2             1           8
## 6478     130         2           3       1             1           1
## 6479     124         4           4       2            10           8
## 6480     124         2           1       2             4           1
## 6481       6         3           4       2             9           8
## 6482     106         2           3       2             9           8
## 6483      81         2           4       2            10           3
## 6484      44         3           1       1             7           4
## 6485      54         2           5       2             9           1
## 6486     106         4           1       4             4           1
## 6487      75         3           2       2             9           1
## 6488     107         2           1       7             1           1
## 6489     124         3           4       2             9           8
## 6491      54         2           4       2             9           5
## 6492      54         2           1       2             1           8
## 6494      36         3           1       2            10           6
## 6495     130         2           1       1             7           8
## 6496      23         2           3       2             1           8
## 6497      59         2           1       4             8           5
## 6498      85         3           4       2             9           8
## 6499      59         2           1       2             1           8
## 6500      44         3           5       2            10           3
## 6501     111         3           1       4             5           4
## 6502       6         3           1       2             4           8
## 6503      30         2           4       2             1           5
## 6504      41         2           2       2             1           8
## 6505      52         2           3       2             4           8
## 6506     124         3           1       1             8           4
## 6507     106         2           3       2            10           8
## 6508      81         3           1       4             9           8
## 6509     123         2           1       7             9           1
## 6510      59         2           1       7             1           4
## 6511     123         1           3       2             9           8
## 6512      41         3           5       2             1           5
## 6513      21         2           3       2             4           5
## 6514     107         2           4       2             9           8
## 6515      41         3           3       2             1           8
## 6516     129         2           1       1             1           2
## 6517     124         2           1       6             1           1
## 6518     124         3           4       2             9           1
## 6519      23         2           1       1             8           8
## 6520     120         2           1       4             9           1
## 6521     107         2           4       2            10           8
## 6522      44         2           3       2             9           8
## 6523     107         2           4       2            10           8
## 6525      54         2           4       2            10           8
## 6526     120         2           1       1            10           1
## 6527      31         4           1       2             2           1
## 6528      41         2           5       2             9           8
## 6529     106         2           1       7             9           1
## 6530      54         3           4       2             1           8
## 6532     123         1           2       2            10           1
## 6533      59         2           4       2             1           1
## 6534     124         4           4       7            10           1
## 6535      59         2           1       5             7           4
## 6537      21         2           4       2             9           3
## 6538      92         3           1       2             1           5
## 6540     124         3           4       2             9           1
## 6542     124         4           4       2             9           8
## 6543     123         2           3       2             5           8
## 6544     119         3           1       7             4           1
## 6545     123         3           4       2             3           1
## 6547     107         3           1       2             9           8
## 6548      54         3           4       2             1           8
## 6549      54         2           4       2             1           1
## 6550     124         2           3       2             5           3
## 6551      52         1           5       2             1           1
## 6552     124         2           3       2             9           1
## 6553      41         2           3       4            10           8
## 6554      41         3           3       2             1           8
## 6555      49         3           3       2             7           8
## 6556     107         2           4       2             9           2
## 6557      41         2           4       2             1           3
## 6558     107         3           4       2            10           1
## 6559     123         4           4       2             9           5
## 6560      44         3           1       2             8           3
## 6561     123         2           3       2             4           8
## 6562      54         3           4       2             9           8
## 6563      54         2           3       8             7           6
## 6564     124         2           1       2             4           1
## 6565     124         3           4       2             9           5
## 6566     106         3           1       2             3           1
## 6567     123         3           1       2             9           3
## 6568      11         4           5       2             9           3
## 6569      54         2           1       2             1           5
## 6570     124         2           4       2             9           8
## 6571     130         3           1       1             8           1
## 6573      70         1           1       5             7           4
## 6574     130         3           3       1             7           1
## 6575      49         2           3       1             9           4
## 6576      60         2           1       2             9           1
## 6578     124         2           3       2             4           8
## 6579     124         3           1       2             9           8
## 6580     123         2           2       7             7           1
## 6581     123         2           4       2             4           8
## 6582      21         2           4       2             4           8
## 6584     120         2           1       7             7           1
## 6585      54         2           4       2             1           8
## 6586     124         3           1       2             9           8
## 6587     129         2           1       1             1           1
## 6588      60         3           4       2             9           8
## 6589      44         4           4       2            10           8
## 6590     124         4           4       2             9           4
## 6591     130         2           1       1             7           1
## 6592      99         2           2       2             3           3
## 6593     119         2           3       2             9           8
## 6595      41         2           4       2             1           3
## 6596      54         3           3       2             1           8
## 6599     116         2           1       2             4           8
## 6600      44         3           4       2             9           8
## 6601     129         2           1       1             7           1
## 6602      54         3           3       7             1           8
## 6603       7         3           4       2             4           8
## 6604     123         1           1       2             9           6
## 6605     123         2           5       7             7           1
## 6606     130         2           1       1             5           8
## 6607      54         2           1       8             5           1
## 6608     106         3           4       2             3           3
## 6609       7         2           1       2             9           4
## 6610     124         3           1       2             5           1
## 6611      59         1           1       2             7           1
## 6612      54         1           1       7             9           1
## 6613      23         3           1       2             9           8
## 6615     123         1           1       2             9           6
## 6616     106         2           3       1            10           8
## 6617     123         2           1       7             1           1
## 6618      44         4           1       2             9           8
## 6619     124         3           5       2             9           8
## 6620      49         2           1       1             7           1
## 6621     124         1           3       2             5           8
## 6622      54         2           1       2             9           8
## 6623     106         2           1       1             4           5
## 6624      96         1           3       7             5           1
## 6625      81         2           4       2            10           1
## 6626      86         5           1       7             7           5
## 6627     124         2           4       2             1           8
## 6628       6         3           3       2             4           8
## 6629     124         3           1       2             9           8
## 6630      63         2           1       7             2           1
## 6631      59         3           1       7             7           1
## 6632      52         2           4       2             1           1
## 6633      11         1           1       2             5           8
## 6634     130         2           1       1             1           1
## 6635      41         2           1       2             1           8
## 6636     106         2           5       2             1           8
## 6637       6         2           1       2             9           8
## 6638     123         3           5       2             9           8
## 6639     129         2           1       1             1           3
## 6640     124         3           5       2             9           8
## 6641      88         4           1       7             7           1
## 6642     124         4           4       2             9           8
## 6643     122         2           1       7             1           6
## 6644     124         2           5       2             9           8
## 6645     123         2           1       1             9           7
## 6646     123         3           5       2             9           8
##      tour_arrangement package_transport_int package_accomodation package_food
## 1                   2                     2                    2            2
## 2                   2                     2                    2            2
## 3                   2                     2                    2            2
## 4                   1                     1                    1            1
## 5                   2                     2                    2            2
## 6                   2                     2                    2            2
## 7                   1                     1                    1            1
## 8                   1                     1                    1            1
## 9                   1                     1                    1            1
## 10                  2                     2                    2            1
## 11                  2                     1                    2            2
## 12                  2                     2                    2            1
## 13                  2                     2                    2            1
## 14                  2                     2                    2            1
## 15                  1                     1                    1            1
## 16                  2                     1                    2            2
## 17                  1                     1                    1            1
## 18                  2                     2                    2            2
## 19                  2                     1                    2            2
## 20                  1                     1                    1            1
## 21                  1                     1                    1            1
## 22                  1                     1                    1            1
## 23                  1                     1                    1            1
## 24                  2                     2                    2            2
## 26                  2                     1                    2            2
## 27                  2                     2                    1            1
## 28                  1                     1                    1            1
## 29                  1                     1                    1            1
## 30                  2                     1                    2            2
## 31                  2                     1                    2            2
## 32                  1                     1                    1            1
## 33                  2                     1                    2            2
## 34                  1                     1                    1            1
## 35                  2                     2                    2            2
## 36                  2                     1                    2            2
## 37                  1                     1                    1            1
## 38                  2                     2                    2            2
## 39                  1                     1                    1            1
## 40                  2                     2                    2            1
## 41                  1                     1                    1            1
## 42                  1                     1                    1            1
## 43                  1                     1                    1            1
## 44                  1                     1                    1            1
## 45                  2                     1                    2            1
## 46                  1                     1                    1            1
## 47                  1                     1                    1            1
## 48                  2                     1                    2            2
## 49                  1                     1                    1            1
## 50                  2                     1                    2            2
## 51                  1                     1                    1            1
## 52                  1                     1                    1            1
## 53                  2                     2                    2            2
## 54                  1                     1                    1            1
## 55                  2                     2                    2            2
## 56                  1                     1                    1            1
## 57                  2                     1                    2            2
## 58                  1                     1                    1            1
## 59                  2                     2                    2            2
## 60                  1                     1                    1            1
## 61                  1                     1                    1            1
## 62                  2                     1                    2            2
## 63                  1                     1                    1            1
## 64                  2                     1                    2            2
## 65                  1                     1                    1            1
## 66                  1                     1                    1            1
## 67                  1                     1                    1            1
## 68                  1                     1                    1            1
## 69                  1                     1                    1            1
## 70                  1                     1                    1            1
## 71                  2                     2                    2            2
## 72                  2                     1                    2            2
## 73                  1                     1                    1            1
## 74                  1                     1                    1            1
## 75                  2                     1                    2            2
## 76                  1                     1                    1            1
## 77                  2                     2                    2            2
## 78                  2                     1                    2            2
## 79                  2                     1                    2            2
## 80                  2                     2                    2            2
## 81                  2                     2                    2            2
## 83                  1                     1                    1            1
## 84                  1                     1                    1            1
## 85                  1                     1                    1            1
## 86                  2                     2                    2            1
## 87                  2                     1                    2            1
## 88                  2                     2                    2            1
## 89                  1                     1                    1            1
## 90                  1                     1                    1            1
## 91                  1                     1                    1            1
## 92                  2                     2                    2            2
## 93                  2                     2                    2            2
## 94                  2                     1                    2            2
## 96                  1                     1                    1            1
## 97                  1                     1                    1            1
## 98                  2                     1                    2            2
## 99                  2                     2                    2            2
## 100                 1                     1                    1            1
## 101                 1                     1                    1            1
## 102                 1                     1                    1            1
## 103                 1                     1                    1            1
## 104                 1                     1                    1            1
## 105                 2                     2                    2            2
## 106                 2                     1                    2            2
## 107                 2                     1                    2            2
## 108                 2                     1                    2            2
## 109                 2                     1                    2            2
## 110                 1                     1                    1            1
## 111                 2                     2                    2            2
## 112                 1                     1                    1            1
## 113                 1                     1                    1            1
## 114                 2                     2                    2            2
## 115                 1                     1                    1            1
## 117                 2                     1                    2            2
## 118                 2                     2                    2            2
## 119                 2                     1                    2            2
## 120                 2                     2                    2            2
## 121                 2                     2                    2            2
## 123                 1                     1                    1            1
## 124                 1                     1                    1            1
## 125                 2                     1                    2            2
## 126                 1                     1                    1            1
## 127                 2                     2                    2            2
## 128                 1                     1                    1            1
## 129                 2                     2                    2            2
## 130                 2                     2                    2            2
## 131                 1                     1                    1            1
## 132                 2                     2                    2            2
## 133                 2                     1                    2            2
## 134                 1                     1                    1            1
## 135                 2                     2                    2            2
## 136                 2                     2                    2            2
## 138                 2                     1                    2            1
## 139                 2                     1                    1            1
## 140                 1                     1                    1            1
## 141                 2                     2                    2            2
## 142                 1                     1                    1            1
## 143                 2                     2                    2            2
## 144                 1                     1                    1            1
## 145                 1                     1                    1            1
## 146                 1                     1                    1            1
## 147                 2                     1                    2            2
## 148                 2                     1                    2            2
## 149                 2                     2                    2            2
## 150                 1                     1                    1            1
## 151                 1                     1                    1            1
## 152                 2                     1                    2            2
## 153                 2                     2                    2            2
## 154                 1                     1                    1            1
## 155                 2                     2                    2            2
## 156                 2                     2                    2            2
## 157                 1                     1                    1            1
## 158                 1                     1                    1            1
## 159                 2                     2                    2            2
## 160                 2                     1                    2            2
## 161                 2                     1                    2            2
## 162                 2                     1                    2            2
## 163                 2                     2                    2            2
## 164                 2                     2                    2            2
## 165                 2                     2                    2            2
## 166                 2                     2                    2            2
## 167                 2                     1                    2            2
## 168                 2                     2                    2            1
## 169                 1                     1                    1            1
## 170                 1                     1                    1            1
## 171                 1                     1                    1            1
## 173                 2                     1                    2            2
## 174                 1                     1                    1            1
## 175                 1                     1                    1            1
## 176                 2                     2                    2            2
## 177                 1                     1                    1            1
## 178                 2                     2                    2            2
## 179                 2                     2                    1            1
## 180                 1                     1                    1            1
## 181                 2                     2                    2            2
## 182                 1                     1                    1            1
## 183                 2                     2                    2            2
## 184                 2                     2                    2            2
## 185                 2                     2                    2            2
## 186                 1                     1                    1            1
## 187                 2                     1                    2            2
## 188                 2                     1                    2            2
## 189                 2                     2                    2            2
## 190                 2                     2                    2            2
## 191                 1                     1                    1            1
## 192                 2                     2                    2            2
## 193                 2                     1                    2            2
## 194                 2                     2                    2            1
## 195                 2                     2                    2            2
## 196                 1                     1                    1            1
## 197                 1                     1                    1            1
## 198                 1                     1                    1            1
## 199                 2                     2                    2            2
## 200                 2                     2                    2            2
## 201                 1                     1                    1            1
## 202                 2                     2                    2            2
## 203                 2                     2                    2            2
## 204                 1                     1                    1            1
## 205                 2                     1                    2            2
## 206                 2                     2                    2            2
## 207                 2                     1                    2            2
## 208                 2                     1                    2            2
## 209                 2                     1                    2            2
## 210                 2                     2                    2            2
## 211                 1                     1                    1            1
## 212                 2                     2                    2            2
## 213                 2                     2                    2            2
## 214                 1                     1                    1            1
## 215                 1                     1                    1            1
## 216                 2                     2                    2            2
## 217                 2                     2                    2            2
## 218                 1                     1                    1            1
## 219                 2                     2                    2            2
## 220                 2                     2                    2            2
## 221                 2                     2                    2            2
## 222                 2                     1                    2            2
## 223                 1                     1                    1            1
## 224                 1                     1                    1            1
## 225                 2                     1                    2            2
## 226                 1                     1                    1            1
## 228                 1                     1                    1            1
## 229                 1                     1                    1            1
## 230                 1                     1                    1            1
## 231                 1                     1                    1            1
## 232                 1                     1                    1            1
## 233                 2                     1                    2            1
## 234                 2                     2                    2            2
## 235                 1                     1                    1            1
## 237                 2                     2                    2            2
## 238                 2                     1                    2            2
## 239                 1                     1                    1            1
## 241                 1                     1                    1            1
## 242                 2                     2                    2            2
## 243                 1                     1                    1            1
## 244                 1                     1                    1            1
## 245                 2                     2                    2            2
## 246                 1                     2                    2            2
## 247                 1                     1                    1            1
## 248                 2                     2                    2            2
## 249                 2                     2                    2            2
## 250                 2                     2                    2            2
## 251                 2                     1                    2            2
## 252                 2                     2                    2            2
## 253                 2                     2                    2            2
## 254                 2                     2                    2            2
## 255                 2                     2                    2            2
## 256                 1                     1                    1            1
## 257                 1                     1                    1            1
## 258                 2                     2                    1            1
## 259                 2                     2                    2            2
## 260                 1                     1                    1            1
## 261                 2                     1                    2            2
## 262                 2                     1                    2            2
## 264                 1                     1                    1            1
## 265                 2                     1                    2            1
## 266                 2                     1                    2            2
## 267                 1                     1                    1            1
## 268                 2                     1                    2            2
## 269                 2                     2                    2            2
## 270                 1                     1                    1            1
## 271                 1                     1                    1            1
## 272                 1                     1                    1            1
## 273                 2                     2                    2            2
## 274                 2                     1                    1            2
## 275                 1                     1                    1            1
## 276                 2                     2                    2            2
## 277                 2                     1                    2            2
## 278                 1                     1                    1            1
## 279                 1                     1                    1            1
## 280                 1                     1                    1            1
## 282                 2                     1                    2            2
## 283                 1                     1                    1            1
## 284                 2                     2                    2            2
## 285                 2                     2                    2            2
## 286                 2                     1                    1            1
## 287                 2                     2                    2            2
## 288                 1                     1                    1            1
## 289                 1                     1                    1            1
## 290                 1                     1                    1            1
## 291                 2                     2                    1            1
## 292                 1                     1                    1            1
## 293                 1                     1                    1            1
## 294                 1                     1                    1            1
## 295                 2                     2                    2            2
## 296                 1                     1                    1            1
## 297                 1                     1                    1            1
## 298                 1                     1                    1            1
## 299                 1                     1                    1            1
## 300                 1                     1                    1            1
## 302                 1                     1                    1            1
## 303                 2                     2                    1            1
## 305                 2                     1                    2            2
## 306                 1                     1                    1            1
## 307                 1                     1                    1            1
## 308                 1                     1                    1            1
## 309                 1                     1                    1            1
## 310                 2                     2                    2            2
## 311                 2                     2                    2            2
## 312                 1                     1                    1            1
## 313                 1                     1                    1            1
## 314                 2                     1                    2            2
## 315                 2                     1                    2            2
## 316                 1                     1                    1            1
## 320                 1                     1                    1            1
## 321                 1                     1                    1            1
## 322                 1                     1                    1            1
## 323                 1                     1                    1            1
## 324                 1                     1                    1            1
## 325                 1                     1                    1            1
## 326                 1                     1                    1            1
## 327                 1                     1                    1            1
## 328                 2                     2                    2            2
## 329                 1                     1                    1            1
## 330                 1                     1                    1            1
## 331                 2                     1                    2            2
## 332                 2                     2                    2            2
## 333                 2                     2                    2            2
## 334                 2                     2                    2            2
## 335                 1                     1                    1            1
## 336                 1                     1                    1            1
## 337                 1                     1                    1            1
## 338                 2                     2                    2            2
## 339                 1                     1                    1            1
## 340                 2                     1                    2            2
## 341                 2                     1                    2            2
## 342                 1                     1                    1            1
## 343                 1                     1                    1            1
## 344                 1                     1                    1            1
## 345                 1                     1                    1            1
## 346                 2                     2                    2            2
## 347                 2                     1                    2            2
## 348                 1                     1                    1            1
## 349                 1                     1                    1            1
## 350                 2                     2                    2            2
## 351                 2                     1                    2            2
## 352                 2                     2                    2            2
## 354                 1                     1                    1            1
## 355                 1                     1                    1            1
## 356                 2                     2                    2            1
## 357                 2                     2                    2            2
## 358                 2                     2                    1            1
## 359                 2                     2                    2            1
## 360                 1                     1                    1            1
## 361                 2                     2                    2            2
## 362                 2                     2                    2            2
## 363                 2                     1                    2            2
## 364                 2                     2                    2            2
## 365                 1                     1                    1            1
## 366                 1                     1                    1            1
## 367                 1                     1                    1            1
## 368                 1                     1                    1            1
## 369                 2                     2                    2            2
## 370                 2                     2                    2            1
## 371                 2                     2                    2            2
## 372                 1                     1                    1            1
## 373                 2                     1                    1            2
## 374                 1                     1                    1            1
## 375                 2                     2                    2            2
## 376                 2                     2                    2            2
## 377                 1                     1                    1            1
## 378                 2                     2                    1            2
## 379                 2                     1                    2            2
## 380                 1                     1                    1            1
## 381                 1                     1                    1            1
## 382                 1                     1                    1            1
## 383                 1                     1                    1            1
## 384                 1                     1                    1            1
## 385                 1                     1                    1            1
## 386                 2                     1                    2            1
## 387                 1                     1                    1            1
## 388                 2                     2                    2            2
## 389                 1                     1                    1            1
## 390                 1                     1                    1            1
## 391                 1                     1                    1            1
## 392                 2                     1                    2            2
## 393                 1                     1                    1            1
## 394                 1                     1                    1            1
## 396                 2                     1                    2            2
## 397                 1                     1                    1            1
## 398                 1                     1                    1            1
## 399                 1                     1                    1            1
## 400                 1                     1                    1            1
## 401                 2                     2                    2            2
## 402                 1                     1                    1            1
## 403                 2                     2                    2            2
## 404                 2                     2                    2            2
## 405                 1                     1                    1            1
## 406                 1                     1                    1            1
## 407                 2                     2                    2            2
## 408                 1                     1                    1            1
## 409                 2                     1                    2            2
## 410                 1                     1                    1            1
## 411                 2                     2                    2            2
## 412                 1                     1                    1            1
## 413                 1                     1                    1            1
## 414                 1                     1                    1            1
## 415                 1                     1                    1            1
## 416                 1                     1                    1            1
## 417                 2                     1                    2            2
## 418                 1                     1                    1            1
## 419                 1                     1                    1            1
## 420                 1                     1                    1            1
## 422                 2                     2                    2            2
## 423                 1                     1                    1            1
## 424                 1                     1                    1            1
## 426                 1                     1                    1            1
## 427                 1                     1                    1            1
## 428                 2                     2                    2            2
## 429                 2                     2                    2            1
## 430                 1                     1                    1            1
## 431                 2                     2                    2            2
## 432                 2                     1                    2            2
## 433                 1                     1                    1            1
## 435                 2                     1                    2            2
## 436                 1                     1                    1            1
## 437                 2                     2                    2            2
## 439                 1                     1                    1            1
## 440                 1                     1                    1            1
## 441                 1                     1                    1            1
## 442                 1                     1                    1            1
## 443                 2                     2                    2            2
## 444                 2                     2                    2            1
## 445                 1                     1                    1            1
## 446                 2                     2                    1            2
## 447                 1                     1                    1            1
## 448                 1                     1                    1            1
## 449                 2                     1                    2            2
## 450                 2                     2                    2            1
## 451                 2                     2                    2            2
## 452                 1                     1                    1            1
## 453                 1                     1                    1            1
## 454                 1                     1                    1            1
## 456                 1                     1                    1            1
## 457                 1                     1                    1            1
## 458                 2                     2                    2            2
## 459                 2                     2                    2            2
## 460                 1                     1                    1            1
## 461                 1                     1                    1            1
## 462                 2                     2                    2            2
## 463                 2                     2                    2            2
## 464                 2                     2                    2            2
## 465                 2                     1                    2            2
## 466                 1                     1                    1            1
## 467                 2                     1                    2            2
## 468                 2                     1                    2            2
## 469                 2                     1                    2            2
## 470                 2                     2                    2            2
## 471                 1                     1                    1            1
## 472                 1                     1                    1            1
## 473                 2                     2                    2            2
## 474                 2                     2                    2            2
## 475                 2                     1                    2            2
## 476                 2                     2                    2            2
## 477                 2                     1                    2            2
## 478                 2                     2                    2            2
## 479                 1                     1                    1            1
## 480                 2                     1                    1            1
## 481                 1                     1                    1            1
## 482                 1                     1                    1            1
## 483                 1                     1                    1            1
## 484                 2                     1                    1            1
## 485                 1                     1                    1            1
## 486                 1                     1                    1            1
## 487                 2                     1                    2            2
## 488                 2                     2                    2            2
## 489                 2                     2                    2            1
## 490                 1                     1                    1            1
## 491                 1                     1                    1            1
## 492                 1                     1                    1            1
## 493                 1                     1                    1            1
## 494                 2                     2                    2            2
## 495                 2                     2                    2            2
## 497                 2                     1                    2            1
## 498                 1                     1                    1            1
## 499                 2                     2                    2            1
## 500                 1                     1                    1            1
## 501                 2                     2                    1            1
## 502                 2                     1                    2            2
## 503                 1                     1                    1            1
## 504                 1                     1                    1            1
## 505                 1                     1                    1            1
## 506                 1                     1                    1            1
## 507                 1                     1                    1            1
## 508                 1                     1                    1            1
## 509                 2                     1                    2            2
## 510                 1                     1                    1            1
## 511                 2                     2                    2            2
## 512                 2                     2                    2            2
## 513                 2                     2                    2            1
## 514                 1                     1                    1            1
## 515                 2                     2                    2            2
## 516                 2                     2                    2            2
## 517                 2                     1                    2            2
## 518                 2                     2                    2            2
## 519                 1                     1                    1            1
## 520                 2                     1                    2            1
## 521                 1                     1                    1            1
## 522                 1                     2                    2            2
## 523                 1                     1                    1            1
## 524                 2                     2                    2            2
## 526                 2                     2                    2            2
## 527                 1                     1                    1            1
## 528                 2                     1                    2            2
## 529                 1                     1                    1            1
## 530                 1                     1                    1            1
## 531                 2                     1                    2            2
## 532                 1                     1                    1            1
## 533                 2                     2                    2            2
## 534                 2                     2                    2            2
## 535                 2                     1                    2            2
## 536                 2                     1                    1            1
## 537                 2                     2                    2            2
## 538                 2                     2                    1            2
## 539                 2                     2                    2            2
## 540                 2                     1                    2            2
## 541                 2                     1                    2            2
## 542                 1                     1                    1            1
## 543                 1                     1                    1            1
## 544                 1                     1                    1            1
## 545                 2                     2                    2            2
## 546                 1                     1                    1            1
## 547                 1                     1                    1            1
## 548                 1                     1                    1            1
## 549                 2                     1                    2            1
## 550                 2                     2                    2            1
## 551                 1                     1                    1            1
## 552                 1                     1                    1            1
## 553                 2                     1                    2            1
## 554                 2                     2                    2            2
## 555                 2                     2                    2            1
## 556                 2                     2                    2            2
## 557                 1                     1                    1            1
## 558                 1                     1                    1            1
## 559                 2                     2                    2            2
## 560                 2                     1                    2            2
## 561                 2                     1                    2            2
## 562                 2                     1                    2            2
## 563                 1                     1                    1            1
## 564                 2                     1                    2            2
## 565                 2                     2                    2            2
## 566                 1                     1                    1            1
## 567                 2                     2                    2            2
## 568                 2                     1                    2            2
## 570                 2                     2                    2            2
## 571                 1                     1                    1            1
## 572                 2                     2                    2            2
## 573                 1                     2                    2            2
## 574                 2                     2                    2            2
## 575                 2                     1                    2            2
## 576                 2                     2                    2            2
## 577                 1                     1                    1            1
## 578                 2                     2                    2            2
## 579                 1                     1                    1            1
## 581                 1                     1                    1            1
## 582                 1                     1                    1            1
## 583                 2                     2                    2            2
## 584                 1                     1                    1            1
## 585                 1                     1                    1            1
## 586                 2                     2                    2            2
## 587                 2                     2                    2            2
## 588                 1                     1                    1            1
## 589                 1                     1                    1            1
## 590                 2                     1                    2            2
## 591                 2                     1                    2            2
## 592                 2                     1                    2            2
## 593                 2                     1                    2            2
## 594                 2                     2                    2            2
## 595                 1                     1                    1            1
## 596                 2                     1                    2            2
## 597                 1                     1                    1            1
## 598                 2                     2                    2            2
## 599                 2                     2                    2            2
## 600                 2                     2                    2            2
## 601                 2                     2                    2            2
## 602                 2                     1                    2            2
## 603                 1                     1                    1            1
## 604                 2                     2                    2            2
## 605                 2                     2                    2            1
## 606                 2                     2                    2            2
## 607                 2                     1                    2            2
## 608                 2                     1                    2            2
## 609                 2                     2                    2            2
## 611                 2                     1                    2            2
## 612                 1                     1                    1            1
## 613                 1                     1                    1            1
## 614                 1                     1                    1            1
## 615                 1                     1                    1            1
## 616                 1                     1                    1            1
## 617                 1                     1                    1            1
## 618                 2                     2                    2            2
## 619                 2                     1                    1            1
## 620                 2                     1                    2            2
## 621                 2                     2                    2            2
## 622                 2                     2                    2            1
## 623                 2                     2                    2            2
## 624                 2                     1                    2            2
## 625                 1                     1                    1            1
## 626                 2                     1                    2            2
## 627                 1                     1                    1            1
## 628                 1                     1                    1            1
## 629                 2                     2                    2            2
## 631                 1                     1                    1            1
## 632                 2                     2                    2            2
## 633                 1                     1                    1            1
## 634                 1                     1                    1            1
## 635                 1                     1                    1            1
## 636                 2                     1                    2            2
## 638                 2                     2                    2            2
## 639                 2                     1                    2            2
## 640                 1                     1                    1            1
## 641                 1                     1                    1            1
## 642                 2                     1                    2            2
## 643                 2                     1                    2            2
## 644                 2                     2                    2            2
## 645                 2                     2                    2            2
## 646                 2                     1                    1            1
## 647                 2                     1                    2            2
## 648                 2                     1                    2            2
## 649                 2                     2                    2            1
## 650                 1                     1                    1            1
## 651                 1                     1                    1            1
## 652                 2                     1                    2            1
## 653                 1                     1                    1            1
## 654                 1                     1                    1            1
## 655                 2                     2                    2            2
## 656                 2                     2                    2            2
## 657                 1                     1                    1            1
## 658                 1                     1                    1            1
## 659                 2                     1                    2            2
## 660                 2                     1                    2            2
## 661                 1                     1                    1            1
## 662                 1                     1                    1            1
## 663                 2                     2                    2            2
## 664                 1                     1                    1            1
## 665                 1                     1                    1            1
## 666                 1                     1                    1            1
## 667                 1                     1                    1            1
## 669                 1                     1                    1            1
## 670                 2                     2                    2            2
## 671                 1                     1                    1            1
## 672                 2                     2                    2            2
## 673                 2                     2                    2            2
## 674                 2                     1                    2            2
## 675                 1                     1                    1            1
## 676                 2                     2                    2            2
## 677                 2                     1                    2            2
## 678                 1                     1                    1            1
## 679                 1                     1                    1            1
## 680                 1                     1                    1            1
## 681                 2                     2                    2            2
## 682                 1                     1                    1            1
## 683                 1                     1                    1            1
## 684                 2                     2                    2            2
## 685                 2                     1                    2            2
## 686                 1                     1                    1            1
## 688                 2                     2                    2            2
## 690                 2                     2                    2            2
## 691                 2                     2                    2            2
## 692                 2                     1                    2            2
## 693                 1                     1                    1            1
## 694                 2                     2                    2            2
## 695                 2                     1                    2            2
## 696                 1                     1                    1            1
## 697                 2                     2                    2            2
## 698                 1                     1                    1            1
## 699                 2                     1                    2            2
## 700                 2                     2                    2            2
## 701                 1                     1                    1            1
## 702                 1                     1                    1            1
## 703                 2                     1                    2            1
## 704                 1                     1                    1            1
## 705                 1                     1                    1            1
## 706                 1                     1                    1            1
## 707                 2                     2                    2            2
## 708                 1                     1                    1            1
## 709                 2                     1                    2            2
## 710                 2                     2                    2            1
## 711                 2                     2                    2            2
## 712                 2                     2                    2            2
## 713                 1                     1                    1            1
## 714                 1                     1                    1            1
## 715                 1                     1                    1            1
## 716                 2                     2                    2            2
## 717                 1                     1                    1            1
## 718                 2                     2                    2            2
## 719                 2                     2                    2            2
## 720                 2                     2                    2            2
## 721                 2                     2                    2            1
## 722                 1                     1                    1            1
## 723                 2                     2                    2            2
## 724                 1                     1                    1            1
## 725                 2                     2                    2            2
## 726                 1                     1                    1            1
## 727                 1                     1                    1            1
## 728                 1                     1                    1            1
## 729                 2                     2                    2            1
## 731                 2                     2                    2            2
## 732                 1                     1                    1            1
## 733                 1                     1                    1            1
## 734                 2                     2                    1            1
## 735                 2                     1                    2            2
## 736                 2                     1                    2            1
## 737                 1                     1                    1            1
## 738                 2                     2                    2            2
## 739                 2                     2                    2            2
## 741                 1                     1                    1            1
## 742                 2                     2                    2            2
## 743                 1                     1                    1            1
## 744                 1                     1                    1            1
## 745                 2                     2                    2            2
## 746                 2                     1                    2            2
## 747                 1                     1                    1            1
## 748                 2                     2                    2            2
## 749                 1                     1                    1            1
## 750                 1                     1                    1            1
## 751                 2                     1                    2            2
## 752                 1                     1                    1            1
## 753                 2                     2                    2            2
## 754                 2                     1                    2            2
## 755                 1                     1                    1            1
## 756                 1                     2                    1            1
## 757                 2                     2                    2            2
## 758                 2                     1                    2            2
## 759                 2                     2                    2            2
## 760                 1                     1                    1            1
## 761                 2                     1                    2            2
## 762                 2                     2                    2            2
## 763                 2                     2                    2            2
## 764                 1                     1                    1            1
## 765                 1                     1                    1            1
## 766                 2                     2                    2            2
## 767                 2                     1                    2            2
## 768                 2                     2                    2            2
## 769                 2                     1                    2            2
## 770                 1                     1                    1            1
## 771                 1                     1                    1            1
## 772                 2                     1                    2            2
## 773                 1                     1                    1            1
## 774                 1                     1                    1            1
## 775                 1                     1                    1            1
## 776                 2                     2                    2            2
## 777                 1                     1                    1            1
## 778                 2                     2                    2            2
## 779                 1                     1                    1            1
## 780                 2                     1                    2            2
## 781                 1                     1                    1            1
## 782                 2                     2                    2            2
## 783                 2                     2                    2            2
## 784                 2                     2                    2            1
## 785                 2                     1                    2            2
## 786                 2                     1                    2            2
## 787                 2                     1                    2            2
## 788                 2                     2                    2            2
## 789                 2                     2                    2            1
## 790                 2                     2                    2            1
## 791                 2                     2                    2            2
## 792                 2                     2                    2            2
## 793                 1                     1                    1            1
## 794                 2                     2                    2            2
## 795                 2                     2                    2            2
## 797                 1                     1                    1            1
## 798                 2                     2                    2            2
## 799                 2                     2                    2            2
## 800                 2                     2                    2            2
## 801                 1                     1                    1            1
## 802                 1                     1                    1            1
## 803                 2                     2                    2            1
## 804                 2                     2                    1            1
## 805                 1                     1                    1            1
## 806                 1                     1                    1            1
## 807                 1                     1                    1            1
## 808                 2                     2                    2            2
## 809                 2                     2                    2            2
## 810                 2                     2                    2            2
## 811                 2                     2                    2            1
## 812                 1                     1                    1            1
## 814                 1                     1                    1            1
## 815                 1                     1                    1            1
## 816                 1                     1                    1            1
## 817                 2                     2                    2            2
## 818                 2                     2                    2            2
## 820                 2                     1                    2            2
## 821                 2                     1                    2            2
## 822                 2                     2                    2            2
## 823                 1                     1                    1            1
## 824                 1                     1                    1            1
## 825                 2                     2                    2            2
## 826                 2                     2                    2            2
## 827                 1                     1                    1            1
## 828                 2                     2                    2            2
## 829                 1                     1                    1            1
## 831                 1                     1                    1            1
## 832                 2                     2                    2            2
## 833                 1                     1                    1            1
## 834                 1                     1                    1            1
## 835                 2                     2                    2            2
## 836                 1                     1                    1            1
## 837                 2                     1                    2            2
## 838                 2                     2                    2            1
## 839                 1                     1                    1            1
## 841                 1                     1                    1            1
## 842                 1                     1                    1            1
## 845                 2                     1                    2            2
## 846                 1                     1                    1            1
## 847                 2                     2                    2            2
## 848                 1                     1                    1            1
## 849                 1                     1                    1            1
## 850                 1                     1                    1            1
## 851                 1                     1                    1            1
## 852                 2                     2                    2            2
## 853                 1                     1                    1            1
## 854                 1                     1                    1            1
## 855                 2                     2                    2            2
## 856                 2                     1                    2            2
## 857                 1                     1                    1            1
## 858                 2                     1                    2            2
## 859                 2                     2                    2            2
## 860                 1                     1                    1            1
## 861                 2                     1                    2            2
## 862                 1                     1                    1            1
## 863                 2                     1                    2            2
## 864                 2                     2                    2            1
## 865                 2                     2                    2            2
## 866                 1                     1                    1            1
## 867                 1                     1                    1            1
## 868                 2                     2                    2            2
## 869                 1                     1                    1            1
## 870                 2                     1                    1            1
## 871                 1                     1                    1            1
## 872                 2                     2                    2            2
## 873                 2                     1                    2            2
## 874                 2                     2                    2            2
## 875                 2                     2                    2            2
## 876                 1                     1                    1            1
## 877                 1                     1                    1            1
## 878                 1                     1                    1            1
## 879                 2                     2                    2            2
## 880                 2                     1                    2            2
## 881                 1                     1                    1            1
## 882                 2                     1                    2            2
## 883                 1                     1                    1            1
## 885                 1                     1                    1            1
## 886                 2                     1                    2            1
## 887                 1                     1                    1            1
## 889                 1                     1                    1            1
## 890                 2                     1                    1            2
## 891                 2                     1                    2            2
## 892                 1                     1                    1            1
## 893                 1                     1                    1            1
## 894                 1                     1                    1            1
## 895                 1                     1                    1            1
## 896                 2                     1                    2            2
## 897                 2                     1                    2            2
## 898                 2                     2                    2            2
## 899                 1                     1                    1            1
## 900                 1                     1                    1            1
## 902                 1                     1                    1            1
## 903                 2                     2                    2            2
## 904                 2                     2                    2            2
## 905                 1                     1                    1            1
## 906                 2                     2                    2            2
## 907                 2                     1                    2            2
## 908                 1                     1                    1            1
## 909                 2                     2                    2            2
## 910                 1                     1                    1            1
## 911                 1                     1                    1            1
## 912                 1                     1                    1            1
## 913                 2                     2                    2            2
## 914                 2                     1                    2            2
## 915                 1                     1                    1            1
## 916                 1                     1                    1            1
## 917                 1                     1                    1            1
## 918                 2                     1                    2            1
## 919                 2                     2                    2            2
## 920                 1                     1                    1            1
## 921                 2                     2                    2            2
## 922                 2                     2                    2            2
## 923                 2                     1                    2            2
## 924                 2                     2                    2            2
## 925                 1                     1                    1            1
## 926                 2                     2                    2            2
## 927                 2                     1                    2            2
## 928                 2                     1                    2            2
## 929                 1                     1                    1            1
## 930                 1                     1                    1            1
## 931                 2                     2                    2            2
## 932                 1                     1                    1            1
## 933                 1                     1                    1            1
## 934                 2                     2                    2            2
## 935                 1                     1                    1            1
## 936                 2                     1                    2            2
## 937                 1                     1                    1            1
## 938                 1                     1                    1            1
## 939                 1                     1                    1            1
## 940                 1                     1                    1            1
## 941                 2                     2                    2            2
## 942                 2                     2                    2            2
## 943                 2                     2                    2            2
## 945                 2                     1                    2            2
## 946                 2                     1                    2            2
## 947                 2                     2                    2            2
## 948                 2                     2                    2            2
## 950                 2                     2                    2            2
## 951                 2                     2                    2            2
## 952                 1                     1                    1            1
## 953                 2                     1                    2            2
## 954                 2                     2                    2            2
## 955                 1                     1                    1            1
## 956                 1                     1                    1            1
## 957                 1                     1                    1            1
## 958                 1                     1                    1            1
## 959                 2                     2                    2            2
## 960                 2                     2                    2            2
## 961                 2                     2                    2            2
## 962                 1                     1                    1            1
## 963                 1                     1                    1            1
## 964                 1                     1                    1            1
## 965                 1                     1                    1            1
## 966                 1                     1                    1            1
## 967                 1                     1                    1            1
## 968                 1                     1                    1            1
## 969                 1                     1                    1            1
## 970                 2                     2                    2            2
## 971                 2                     1                    2            2
## 972                 2                     2                    2            2
## 973                 1                     1                    1            1
## 974                 2                     1                    2            2
## 975                 2                     1                    2            2
## 976                 1                     1                    1            1
## 977                 2                     2                    2            2
## 978                 2                     2                    2            2
## 979                 1                     1                    1            1
## 980                 1                     1                    1            1
## 981                 2                     2                    2            2
## 982                 2                     1                    1            1
## 983                 2                     2                    2            2
## 985                 1                     1                    1            1
## 986                 1                     1                    1            1
## 987                 2                     1                    1            1
## 989                 1                     1                    1            1
## 990                 1                     1                    1            1
## 991                 1                     1                    1            1
## 992                 1                     1                    1            1
## 993                 1                     1                    1            1
## 994                 2                     1                    2            2
## 995                 1                     1                    1            1
## 996                 2                     2                    2            2
## 997                 1                     1                    1            1
## 998                 2                     1                    2            2
## 999                 1                     1                    1            1
## 1000                2                     2                    2            2
## 1001                2                     2                    2            2
## 1002                2                     2                    2            2
## 1003                1                     1                    1            1
## 1004                2                     1                    2            1
## 1005                2                     2                    2            1
## 1006                1                     1                    1            1
## 1007                2                     2                    2            2
## 1008                1                     1                    1            1
## 1009                1                     1                    1            1
## 1010                2                     2                    2            2
## 1011                2                     2                    2            2
## 1012                1                     1                    1            1
## 1013                2                     2                    2            2
## 1014                2                     2                    2            2
## 1016                2                     2                    2            2
## 1017                1                     1                    1            1
## 1018                2                     1                    2            2
## 1019                1                     1                    1            1
## 1020                2                     2                    2            2
## 1021                1                     1                    1            1
## 1022                2                     2                    2            2
## 1023                2                     2                    2            2
## 1024                2                     1                    2            2
## 1026                1                     1                    1            1
## 1027                1                     1                    1            1
## 1028                2                     2                    1            2
## 1029                2                     2                    2            2
## 1030                1                     1                    1            1
## 1031                2                     1                    2            2
## 1032                1                     1                    1            1
## 1033                1                     1                    1            1
## 1034                1                     1                    1            1
## 1035                1                     1                    1            1
## 1036                1                     1                    1            1
## 1037                2                     2                    2            2
## 1038                2                     2                    2            2
## 1040                1                     1                    1            1
## 1041                1                     1                    1            1
## 1042                2                     2                    2            2
## 1043                2                     2                    2            2
## 1044                2                     2                    2            2
## 1045                1                     1                    1            1
## 1046                1                     1                    1            1
## 1047                2                     1                    2            2
## 1048                2                     2                    2            2
## 1049                1                     1                    1            1
## 1050                1                     1                    1            1
## 1051                2                     2                    2            2
## 1052                2                     2                    2            2
## 1053                2                     2                    2            2
## 1054                2                     2                    2            2
## 1055                1                     1                    1            1
## 1056                1                     1                    1            1
## 1057                1                     1                    1            1
## 1058                2                     1                    2            2
## 1059                1                     1                    1            1
## 1060                1                     1                    1            1
## 1061                2                     2                    2            2
## 1062                1                     1                    1            1
## 1063                1                     1                    1            1
## 1065                1                     1                    1            1
## 1066                1                     1                    1            1
## 1067                1                     1                    1            1
## 1068                2                     1                    2            2
## 1069                1                     1                    1            1
## 1070                2                     1                    2            1
## 1071                2                     2                    2            1
## 1072                1                     1                    1            1
## 1073                1                     1                    1            1
## 1074                2                     1                    2            2
## 1075                2                     2                    2            2
## 1076                1                     1                    1            1
## 1077                2                     2                    2            2
## 1078                1                     1                    1            1
## 1079                2                     1                    2            2
## 1080                1                     1                    1            1
## 1081                2                     2                    2            2
## 1082                2                     2                    1            2
## 1083                2                     1                    1            1
## 1084                2                     2                    2            2
## 1085                1                     1                    1            1
## 1087                2                     2                    2            2
## 1088                2                     2                    2            1
## 1091                2                     2                    2            2
## 1092                1                     1                    1            1
## 1093                1                     1                    1            1
## 1094                2                     2                    2            2
## 1095                2                     2                    2            2
## 1096                1                     1                    1            1
## 1098                1                     1                    1            1
## 1099                2                     2                    2            2
## 1100                2                     1                    2            2
## 1101                2                     1                    2            2
## 1102                1                     1                    1            1
## 1103                1                     1                    1            1
## 1104                1                     1                    1            1
## 1105                1                     1                    1            1
## 1106                2                     1                    2            2
## 1108                1                     1                    1            1
## 1109                2                     2                    1            1
## 1110                1                     1                    1            1
## 1111                1                     1                    1            1
## 1112                2                     2                    2            2
## 1113                1                     1                    2            2
## 1114                1                     1                    1            1
## 1115                1                     1                    1            1
## 1116                1                     1                    1            1
## 1117                2                     1                    2            2
## 1118                2                     2                    1            2
## 1120                1                     1                    1            1
## 1121                2                     2                    2            2
## 1122                1                     1                    1            1
## 1123                2                     2                    2            2
## 1124                1                     1                    1            1
## 1125                1                     1                    1            1
## 1126                2                     1                    2            2
## 1127                1                     1                    1            1
## 1128                1                     1                    1            1
## 1129                1                     1                    1            1
## 1130                2                     2                    2            2
## 1131                2                     1                    2            1
## 1132                1                     1                    1            1
## 1133                2                     2                    2            2
## 1134                1                     1                    1            1
## 1135                2                     1                    2            2
## 1136                1                     1                    1            1
## 1137                1                     1                    1            1
## 1138                2                     2                    2            2
## 1139                2                     2                    2            2
## 1140                2                     2                    2            2
## 1141                2                     1                    2            2
## 1142                2                     1                    2            2
## 1143                2                     2                    2            2
## 1144                2                     2                    2            2
## 1146                2                     2                    2            2
## 1147                1                     1                    1            1
## 1148                2                     1                    2            2
## 1149                2                     2                    2            2
## 1150                1                     1                    1            1
## 1151                2                     2                    2            2
## 1152                1                     1                    1            1
## 1153                2                     2                    2            2
## 1154                1                     1                    1            1
## 1155                1                     1                    1            1
## 1156                2                     2                    2            2
## 1157                1                     1                    1            1
## 1158                2                     2                    2            2
## 1159                2                     2                    2            2
## 1160                1                     1                    1            1
## 1161                2                     1                    2            1
## 1162                1                     1                    1            1
## 1163                2                     2                    2            2
## 1164                2                     2                    2            2
## 1165                2                     1                    2            2
## 1166                1                     1                    1            1
## 1167                2                     2                    2            2
## 1168                2                     1                    2            2
## 1169                2                     1                    2            2
## 1170                1                     1                    1            1
## 1172                1                     1                    1            1
## 1173                1                     1                    1            1
## 1175                2                     1                    2            2
## 1177                1                     1                    1            1
## 1178                2                     2                    2            2
## 1179                2                     1                    2            2
## 1180                1                     1                    1            1
## 1181                2                     2                    2            2
## 1182                1                     1                    1            1
## 1184                2                     2                    2            1
## 1185                1                     1                    1            1
## 1186                1                     1                    1            1
## 1187                1                     1                    1            1
## 1189                2                     2                    2            2
## 1190                2                     2                    2            2
## 1191                2                     2                    2            2
## 1192                2                     2                    2            2
## 1193                2                     2                    2            2
## 1194                1                     1                    1            1
## 1196                2                     1                    2            2
## 1197                1                     1                    1            1
## 1198                1                     1                    1            1
## 1199                2                     2                    2            2
## 1200                2                     2                    2            2
## 1201                1                     1                    1            1
## 1202                2                     2                    1            1
## 1203                2                     2                    2            1
## 1204                1                     1                    1            1
## 1205                1                     1                    1            1
## 1206                1                     1                    1            1
## 1207                1                     1                    1            1
## 1208                2                     2                    2            2
## 1209                2                     1                    2            2
## 1210                2                     1                    2            2
## 1211                2                     1                    2            1
## 1212                2                     2                    2            2
## 1213                1                     1                    1            1
## 1214                1                     1                    1            1
## 1215                2                     1                    2            2
## 1216                1                     1                    1            1
## 1217                2                     2                    2            1
## 1218                1                     1                    1            1
## 1221                1                     1                    1            1
## 1223                2                     2                    2            2
## 1224                1                     1                    1            1
## 1225                2                     2                    2            2
## 1227                2                     2                    2            1
## 1228                1                     1                    1            1
## 1229                2                     2                    2            2
## 1230                2                     1                    2            2
## 1231                2                     1                    2            2
## 1232                1                     1                    1            1
## 1233                2                     2                    2            2
## 1234                1                     1                    1            1
## 1235                1                     1                    1            1
## 1236                2                     1                    2            2
## 1237                1                     1                    1            1
## 1238                1                     1                    1            1
## 1239                2                     2                    2            2
## 1240                1                     1                    1            1
## 1241                2                     1                    2            2
## 1242                1                     1                    1            1
## 1243                1                     1                    1            1
## 1244                2                     2                    2            2
## 1245                1                     1                    1            1
## 1246                1                     1                    1            1
## 1247                2                     2                    2            2
## 1248                1                     1                    1            1
## 1249                2                     2                    2            2
## 1250                1                     1                    1            1
## 1251                1                     1                    1            1
## 1252                2                     2                    2            2
## 1253                2                     2                    2            2
## 1254                2                     2                    2            2
## 1255                1                     1                    1            1
## 1256                1                     1                    1            1
## 1257                2                     1                    2            2
## 1259                2                     1                    2            2
## 1260                1                     1                    1            1
## 1261                1                     1                    1            1
## 1262                2                     2                    2            2
## 1263                2                     2                    2            2
## 1264                2                     2                    2            2
## 1265                1                     1                    1            1
## 1266                1                     1                    1            1
## 1267                1                     1                    1            1
## 1268                2                     2                    2            2
## 1269                2                     2                    2            2
## 1270                1                     1                    1            1
## 1271                2                     1                    2            2
## 1272                2                     2                    2            2
## 1273                2                     1                    1            1
## 1274                2                     1                    2            2
## 1275                2                     1                    2            2
## 1276                2                     2                    2            2
## 1277                1                     1                    1            1
## 1278                1                     1                    1            1
## 1279                2                     2                    2            2
## 1280                2                     2                    2            2
## 1281                1                     1                    1            1
## 1282                2                     2                    2            2
## 1283                2                     2                    2            2
## 1284                2                     1                    2            2
## 1285                2                     2                    2            2
## 1286                1                     1                    1            1
## 1287                2                     1                    2            2
## 1288                1                     1                    1            1
## 1289                2                     1                    2            2
## 1290                2                     2                    1            2
## 1291                1                     1                    1            1
## 1292                2                     2                    2            2
## 1293                2                     2                    2            2
## 1294                2                     1                    2            2
## 1295                2                     2                    2            2
## 1296                2                     2                    2            2
## 1298                1                     1                    1            1
## 1299                2                     2                    2            2
## 1300                1                     1                    1            1
## 1301                2                     2                    2            2
## 1302                2                     1                    1            1
## 1303                1                     1                    1            1
## 1304                1                     1                    1            1
## 1305                2                     1                    2            2
## 1306                1                     1                    1            1
## 1307                2                     1                    2            2
## 1308                2                     1                    2            2
## 1309                2                     2                    2            2
## 1310                1                     1                    1            1
## 1311                2                     2                    2            2
## 1312                1                     1                    1            1
## 1313                2                     2                    2            2
## 1314                1                     1                    1            1
## 1315                2                     2                    2            2
## 1316                1                     1                    1            1
## 1317                1                     1                    1            1
## 1318                1                     1                    1            1
## 1319                1                     1                    1            1
## 1320                1                     1                    1            1
## 1321                2                     2                    2            2
## 1322                2                     2                    2            2
## 1323                2                     1                    2            2
## 1324                1                     1                    1            1
## 1326                2                     2                    2            2
## 1327                2                     1                    2            2
## 1328                1                     1                    1            1
## 1330                1                     1                    1            1
## 1331                2                     1                    2            2
## 1332                2                     2                    2            2
## 1333                2                     2                    2            1
## 1334                1                     1                    1            1
## 1335                1                     1                    1            1
## 1336                2                     1                    2            2
## 1337                1                     1                    1            1
## 1338                1                     1                    1            1
## 1339                1                     1                    1            1
## 1340                1                     1                    1            1
## 1341                1                     1                    1            1
## 1342                1                     1                    1            1
## 1343                1                     1                    1            1
## 1345                1                     1                    1            1
## 1346                2                     1                    2            2
## 1347                1                     1                    1            1
## 1348                1                     1                    1            1
## 1349                1                     1                    1            1
## 1350                2                     2                    2            2
## 1351                2                     1                    2            1
## 1352                1                     1                    1            1
## 1354                1                     1                    1            1
## 1355                2                     1                    2            2
## 1356                1                     1                    1            1
## 1357                1                     1                    1            1
## 1358                2                     1                    2            1
## 1359                2                     1                    2            2
## 1360                1                     1                    1            1
## 1361                2                     2                    2            2
## 1362                1                     1                    1            1
## 1363                2                     1                    2            2
## 1364                2                     1                    2            1
## 1365                1                     1                    1            1
## 1366                1                     1                    1            1
## 1367                2                     1                    2            2
## 1368                1                     1                    1            1
## 1369                2                     1                    2            2
## 1370                2                     2                    2            2
## 1371                1                     1                    1            1
## 1372                2                     1                    2            2
## 1373                2                     1                    2            2
## 1374                2                     2                    2            2
## 1375                1                     1                    1            1
## 1376                2                     1                    2            2
## 1377                1                     1                    1            1
## 1378                2                     2                    2            2
## 1379                2                     2                    2            2
## 1380                1                     1                    1            1
## 1381                2                     1                    2            2
## 1382                2                     1                    2            2
## 1383                1                     1                    1            1
## 1385                1                     1                    1            1
## 1386                1                     1                    1            1
## 1387                1                     1                    1            1
## 1388                2                     2                    2            2
## 1389                1                     1                    1            1
## 1390                1                     1                    1            1
## 1391                2                     2                    2            2
## 1392                2                     1                    2            2
## 1393                1                     1                    1            1
## 1394                1                     1                    1            1
## 1395                2                     1                    2            2
## 1396                1                     1                    1            1
## 1397                2                     2                    2            2
## 1398                2                     2                    2            2
## 1400                2                     1                    2            2
## 1401                2                     2                    2            2
## 1402                1                     1                    1            1
## 1403                2                     2                    2            2
## 1404                1                     1                    1            1
## 1405                1                     1                    1            1
## 1406                1                     1                    1            1
## 1407                2                     2                    2            2
## 1408                1                     1                    1            1
## 1409                1                     1                    1            1
## 1410                1                     1                    1            1
## 1411                2                     2                    2            2
## 1412                2                     2                    1            1
## 1413                1                     1                    1            1
## 1414                1                     1                    1            1
## 1415                2                     2                    2            2
## 1416                1                     1                    1            1
## 1417                2                     2                    2            2
## 1418                1                     1                    1            1
## 1420                2                     2                    1            1
## 1421                2                     1                    2            2
## 1422                2                     2                    2            2
## 1423                1                     1                    1            1
## 1424                2                     1                    1            2
## 1425                1                     1                    1            1
## 1426                2                     1                    2            2
## 1428                2                     1                    2            1
## 1429                1                     1                    1            1
## 1430                1                     1                    1            1
## 1431                1                     1                    1            1
## 1432                2                     1                    2            2
## 1433                2                     2                    2            2
## 1434                2                     1                    2            2
## 1435                1                     1                    1            1
## 1436                2                     2                    2            2
## 1437                1                     1                    1            1
## 1438                1                     1                    1            1
## 1439                1                     1                    1            1
## 1441                1                     1                    1            1
## 1442                2                     2                    2            2
## 1443                1                     1                    1            1
## 1444                1                     1                    1            1
## 1445                2                     2                    2            2
## 1446                1                     1                    1            1
## 1447                2                     1                    2            2
## 1448                2                     2                    2            2
## 1449                2                     2                    2            2
## 1450                2                     2                    1            2
## 1451                1                     1                    1            1
## 1452                2                     2                    1            2
## 1453                1                     1                    1            1
## 1454                1                     1                    1            1
## 1455                1                     1                    1            1
## 1456                2                     2                    2            2
## 1457                2                     2                    2            2
## 1458                1                     1                    1            1
## 1459                2                     1                    2            2
## 1460                1                     1                    1            1
## 1461                1                     1                    1            1
## 1462                2                     2                    2            2
## 1463                2                     2                    2            2
## 1464                2                     1                    2            2
## 1465                2                     2                    2            2
## 1466                2                     2                    2            2
## 1467                1                     1                    1            1
## 1468                2                     1                    2            2
## 1469                1                     1                    1            1
## 1470                1                     1                    1            1
## 1471                1                     1                    1            1
## 1472                2                     1                    2            2
## 1473                2                     1                    2            2
## 1474                2                     2                    2            2
## 1475                2                     2                    2            2
## 1476                2                     2                    2            2
## 1478                1                     1                    1            1
## 1479                1                     1                    1            1
## 1480                2                     2                    2            2
## 1481                2                     2                    2            2
## 1482                1                     1                    1            1
## 1483                2                     2                    2            2
## 1484                2                     1                    2            2
## 1485                1                     1                    1            1
## 1486                1                     1                    1            1
## 1487                2                     2                    2            2
## 1488                1                     1                    1            1
## 1490                1                     1                    1            1
## 1491                2                     2                    2            2
## 1492                2                     1                    2            2
## 1493                2                     2                    2            2
## 1494                2                     2                    2            2
## 1495                1                     1                    1            1
## 1496                1                     1                    1            1
## 1497                1                     1                    1            1
## 1498                1                     1                    1            1
## 1499                1                     1                    1            1
## 1500                2                     2                    2            2
## 1501                2                     2                    2            2
## 1502                2                     1                    2            2
## 1503                1                     1                    1            1
## 1504                1                     1                    1            1
## 1505                2                     2                    2            2
## 1506                2                     2                    2            1
## 1507                2                     1                    2            2
## 1508                1                     1                    1            1
## 1509                2                     2                    2            2
## 1511                2                     2                    2            2
## 1512                2                     2                    2            2
## 1513                1                     1                    1            1
## 1514                2                     1                    2            1
## 1515                1                     1                    1            1
## 1516                1                     1                    1            1
## 1517                1                     1                    1            1
## 1518                2                     1                    2            2
## 1519                2                     2                    2            2
## 1520                2                     2                    2            2
## 1521                1                     1                    1            1
## 1522                2                     2                    2            2
## 1523                2                     2                    2            2
## 1524                1                     1                    1            1
## 1525                2                     2                    2            2
## 1526                1                     1                    1            1
## 1527                2                     2                    2            2
## 1528                1                     1                    1            1
## 1529                1                     1                    1            1
## 1530                2                     2                    2            2
## 1531                1                     1                    1            1
## 1532                2                     2                    2            2
## 1533                1                     1                    1            1
## 1534                1                     1                    1            1
## 1536                1                     1                    1            1
## 1537                1                     1                    1            1
## 1538                1                     1                    1            1
## 1539                2                     2                    2            2
## 1540                2                     2                    2            2
## 1541                2                     2                    2            2
## 1542                2                     2                    2            2
## 1543                2                     2                    2            2
## 1544                1                     1                    1            1
## 1545                2                     1                    2            2
## 1546                1                     1                    1            1
## 1547                1                     1                    1            1
## 1548                1                     1                    1            1
## 1549                2                     1                    1            1
## 1550                2                     1                    2            2
## 1551                2                     2                    2            2
## 1552                2                     2                    2            2
## 1553                2                     2                    2            2
## 1554                2                     1                    2            2
## 1555                2                     2                    2            2
## 1556                1                     1                    1            1
## 1557                1                     1                    1            1
## 1558                2                     1                    2            2
## 1559                1                     1                    1            1
## 1560                2                     2                    2            2
## 1561                2                     2                    2            2
## 1562                2                     2                    2            2
## 1563                1                     1                    1            1
## 1564                1                     1                    1            1
## 1565                1                     1                    1            1
## 1566                2                     2                    2            2
## 1567                1                     1                    1            1
## 1568                2                     2                    2            1
## 1569                1                     1                    1            1
## 1570                1                     1                    1            1
## 1571                2                     1                    2            2
## 1574                2                     2                    2            2
## 1575                2                     1                    2            2
## 1576                2                     1                    2            2
## 1578                2                     1                    2            2
## 1579                2                     2                    2            2
## 1580                2                     2                    2            2
## 1581                2                     2                    2            2
## 1582                1                     1                    1            1
## 1584                1                     1                    1            1
## 1585                2                     2                    2            2
## 1586                2                     2                    2            2
## 1587                1                     1                    1            1
## 1588                1                     1                    1            1
## 1589                2                     2                    2            2
## 1590                2                     1                    1            1
## 1591                1                     1                    1            1
## 1592                1                     1                    1            1
## 1593                1                     1                    1            1
## 1594                1                     1                    1            1
## 1595                1                     1                    1            1
## 1596                2                     2                    2            2
## 1597                1                     1                    1            1
## 1598                1                     1                    1            1
## 1600                2                     2                    2            2
## 1601                2                     1                    2            2
## 1602                2                     1                    2            2
## 1603                1                     1                    1            1
## 1604                1                     1                    1            1
## 1605                2                     2                    2            2
## 1606                2                     2                    2            2
## 1607                2                     1                    2            2
## 1608                2                     2                    2            2
## 1609                1                     1                    1            1
## 1610                2                     2                    2            2
## 1611                1                     1                    1            1
## 1612                2                     1                    2            2
## 1613                2                     2                    2            2
## 1614                1                     1                    1            1
## 1615                1                     1                    1            1
## 1616                1                     1                    1            1
## 1617                2                     1                    2            2
## 1618                2                     2                    2            1
## 1619                1                     1                    1            1
## 1620                1                     1                    1            1
## 1621                2                     1                    2            2
## 1622                1                     1                    1            1
## 1624                1                     1                    1            1
## 1625                2                     1                    2            2
## 1626                2                     2                    2            1
## 1627                1                     1                    1            1
## 1629                1                     1                    1            1
## 1630                1                     1                    1            1
## 1631                1                     1                    1            1
## 1633                1                     1                    1            1
## 1634                1                     1                    1            1
## 1635                2                     2                    2            2
## 1636                2                     2                    2            2
## 1637                1                     1                    1            1
## 1638                2                     2                    2            2
## 1640                2                     1                    2            2
## 1641                2                     2                    1            2
## 1642                1                     1                    1            1
## 1643                2                     2                    2            1
## 1644                1                     1                    1            1
## 1645                2                     2                    2            2
## 1646                1                     1                    1            1
## 1647                1                     1                    1            1
## 1648                2                     1                    2            2
## 1649                2                     1                    2            2
## 1651                1                     1                    1            1
## 1652                2                     2                    2            2
## 1653                2                     2                    2            2
## 1654                1                     1                    1            1
## 1655                2                     2                    2            2
## 1656                2                     2                    2            2
## 1657                1                     1                    1            1
## 1658                2                     2                    2            2
## 1659                1                     1                    1            1
## 1662                1                     1                    1            1
## 1663                2                     2                    2            2
## 1664                1                     1                    1            1
## 1665                2                     2                    2            2
## 1666                1                     1                    1            1
## 1667                2                     2                    2            2
## 1669                1                     1                    1            1
## 1670                1                     1                    1            1
## 1671                1                     1                    1            1
## 1672                1                     1                    1            1
## 1673                2                     1                    2            2
## 1674                2                     2                    2            1
## 1675                2                     2                    2            2
## 1676                2                     1                    2            2
## 1677                1                     1                    1            1
## 1678                1                     1                    1            1
## 1679                1                     1                    1            1
## 1680                2                     2                    2            2
## 1681                2                     2                    2            2
## 1682                1                     1                    1            1
## 1683                1                     1                    1            1
## 1684                2                     1                    2            2
## 1685                1                     1                    1            1
## 1687                2                     1                    2            2
## 1688                1                     1                    1            1
## 1689                1                     1                    1            1
## 1690                1                     1                    1            1
## 1691                1                     1                    1            1
## 1692                2                     2                    2            2
## 1693                2                     2                    2            2
## 1694                1                     1                    1            1
## 1695                1                     1                    1            1
## 1696                1                     1                    1            1
## 1697                1                     1                    1            1
## 1698                2                     2                    2            2
## 1699                1                     1                    1            1
## 1700                1                     1                    1            1
## 1701                2                     2                    2            2
## 1702                2                     1                    2            2
## 1703                2                     1                    2            2
## 1704                1                     1                    1            1
## 1705                2                     1                    2            2
## 1706                2                     2                    2            2
## 1707                2                     2                    2            2
## 1708                1                     1                    1            1
## 1709                2                     2                    2            1
## 1710                1                     1                    1            1
## 1711                2                     2                    2            2
## 1712                1                     1                    1            1
## 1713                1                     1                    1            1
## 1714                1                     1                    1            1
## 1715                1                     1                    1            1
## 1716                1                     1                    1            1
## 1717                2                     2                    2            2
## 1718                1                     1                    1            1
## 1719                2                     1                    1            2
## 1720                1                     1                    1            1
## 1721                1                     1                    1            1
## 1723                1                     1                    1            1
## 1724                1                     1                    1            1
## 1725                1                     1                    1            1
## 1726                2                     1                    2            2
## 1727                1                     1                    1            1
## 1728                1                     1                    1            1
## 1729                2                     1                    2            2
## 1730                1                     1                    1            1
## 1731                2                     2                    2            2
## 1732                1                     1                    1            1
## 1733                1                     1                    1            1
## 1734                1                     1                    1            1
## 1735                1                     1                    2            2
## 1736                2                     2                    2            2
## 1737                1                     1                    1            1
## 1738                1                     1                    1            1
## 1739                2                     2                    2            2
## 1740                1                     1                    1            1
## 1741                1                     1                    1            1
## 1742                1                     1                    1            1
## 1743                2                     2                    2            2
## 1744                1                     1                    1            1
## 1745                2                     2                    2            2
## 1746                2                     1                    2            2
## 1747                2                     1                    2            2
## 1748                1                     1                    1            1
## 1749                2                     1                    2            2
## 1750                1                     1                    1            1
## 1751                1                     1                    1            1
## 1752                1                     1                    1            1
## 1753                2                     2                    2            2
## 1754                2                     2                    2            2
## 1756                2                     2                    2            2
## 1757                1                     1                    1            1
## 1758                1                     1                    1            1
## 1759                1                     1                    1            1
## 1760                2                     2                    1            2
## 1761                1                     1                    1            1
## 1762                2                     2                    2            2
## 1763                1                     1                    1            1
## 1764                1                     1                    1            1
## 1765                1                     1                    1            1
## 1766                1                     1                    1            1
## 1768                1                     1                    1            1
## 1769                2                     2                    2            2
## 1770                2                     2                    2            2
## 1771                2                     2                    2            2
## 1772                2                     1                    2            2
## 1773                2                     1                    2            2
## 1774                2                     2                    2            2
## 1775                2                     2                    2            2
## 1776                1                     1                    1            1
## 1777                1                     1                    1            1
## 1778                1                     1                    1            1
## 1779                2                     1                    2            2
## 1780                2                     1                    2            2
## 1781                1                     1                    1            1
## 1782                2                     1                    2            2
## 1783                1                     1                    1            1
## 1784                2                     2                    2            2
## 1785                1                     1                    1            1
## 1786                2                     1                    2            2
## 1787                2                     2                    2            2
## 1788                2                     2                    2            2
## 1789                2                     2                    2            2
## 1790                1                     1                    1            1
## 1791                1                     2                    1            1
## 1792                2                     2                    2            2
## 1793                2                     2                    2            2
## 1794                1                     1                    1            1
## 1795                1                     1                    1            1
## 1796                2                     2                    1            1
## 1797                2                     1                    2            2
## 1798                2                     1                    2            2
## 1799                2                     2                    2            2
## 1801                2                     2                    2            2
## 1802                1                     1                    1            1
## 1803                1                     1                    1            1
## 1804                2                     2                    2            2
## 1805                2                     2                    2            1
## 1806                1                     1                    1            1
## 1808                2                     1                    2            2
## 1809                2                     2                    2            2
## 1810                2                     1                    2            2
## 1811                2                     2                    2            2
## 1812                2                     1                    2            2
## 1813                2                     2                    1            1
## 1814                2                     2                    2            1
## 1815                1                     1                    1            1
## 1816                1                     1                    1            1
## 1817                1                     1                    1            1
## 1818                1                     1                    1            1
## 1819                2                     2                    2            2
## 1820                2                     2                    2            2
## 1821                1                     1                    1            1
## 1822                2                     1                    2            2
## 1823                1                     1                    1            1
## 1824                2                     1                    2            2
## 1825                1                     1                    1            1
## 1826                1                     1                    1            1
## 1827                1                     1                    1            1
## 1828                2                     1                    2            2
## 1829                2                     1                    2            2
## 1830                2                     2                    2            2
## 1831                2                     1                    2            2
## 1832                1                     1                    1            1
## 1833                2                     1                    2            2
## 1834                1                     1                    1            1
## 1835                2                     2                    2            2
## 1836                1                     1                    1            1
## 1837                2                     2                    2            2
## 1838                2                     2                    1            1
## 1839                2                     2                    2            2
## 1840                1                     1                    1            1
## 1841                2                     1                    2            2
## 1842                2                     2                    2            2
## 1843                1                     1                    1            1
## 1844                1                     1                    1            1
## 1845                1                     1                    1            1
## 1846                2                     2                    2            2
## 1847                1                     1                    1            1
## 1848                1                     1                    1            1
## 1849                2                     2                    2            2
## 1850                1                     1                    1            1
## 1851                2                     1                    2            2
## 1852                1                     1                    1            1
## 1853                2                     1                    2            2
## 1854                2                     2                    2            2
## 1855                2                     2                    2            2
## 1856                2                     2                    2            2
## 1857                2                     1                    1            1
## 1858                1                     1                    1            1
## 1859                1                     1                    1            1
## 1860                2                     2                    2            2
## 1861                2                     2                    2            2
## 1862                1                     1                    1            1
## 1863                1                     1                    1            1
## 1864                2                     1                    1            1
## 1865                2                     2                    2            1
## 1866                2                     2                    2            2
## 1867                1                     1                    1            1
## 1868                1                     1                    1            1
## 1870                1                     1                    1            1
## 1871                1                     1                    1            1
## 1872                1                     1                    1            1
## 1873                2                     2                    2            2
## 1874                1                     1                    1            1
## 1875                1                     1                    1            1
## 1876                1                     1                    1            1
## 1877                2                     2                    2            2
## 1878                2                     2                    2            2
## 1879                1                     1                    1            1
## 1880                2                     2                    2            2
## 1881                1                     1                    1            1
## 1882                2                     2                    2            1
## 1883                2                     1                    2            2
## 1884                2                     2                    2            2
## 1885                2                     2                    2            2
## 1886                1                     1                    1            1
## 1887                1                     1                    1            1
## 1888                1                     1                    1            1
## 1889                2                     2                    1            2
## 1890                2                     2                    2            1
## 1891                1                     1                    1            1
## 1892                1                     1                    1            1
## 1893                2                     1                    2            2
## 1894                1                     1                    1            1
## 1895                1                     1                    1            1
## 1896                1                     1                    1            1
## 1897                1                     1                    1            1
## 1898                1                     1                    1            1
## 1899                1                     1                    1            1
## 1900                1                     1                    1            1
## 1901                2                     2                    1            1
## 1902                2                     1                    2            2
## 1903                1                     1                    1            1
## 1904                1                     1                    1            1
## 1905                1                     1                    1            1
## 1906                1                     1                    1            1
## 1907                1                     1                    1            1
## 1908                2                     1                    2            2
## 1909                1                     1                    1            1
## 1912                1                     1                    1            1
## 1913                2                     2                    2            1
## 1914                1                     1                    1            1
## 1915                2                     1                    2            2
## 1916                1                     1                    1            1
## 1917                2                     1                    2            1
## 1918                2                     2                    2            2
## 1919                2                     1                    2            2
## 1920                2                     1                    2            2
## 1921                1                     1                    1            1
## 1922                2                     1                    2            2
## 1923                1                     1                    1            1
## 1924                2                     1                    1            1
## 1925                2                     2                    2            2
## 1926                1                     1                    1            1
## 1927                2                     2                    2            2
## 1928                2                     2                    2            2
## 1929                1                     1                    1            1
## 1931                2                     2                    2            2
## 1932                2                     1                    2            2
## 1933                1                     1                    1            1
## 1934                2                     2                    2            2
## 1935                1                     1                    1            1
## 1936                2                     2                    2            2
## 1937                1                     1                    1            1
## 1938                1                     1                    1            1
## 1939                1                     1                    1            1
## 1940                2                     2                    2            2
## 1941                2                     1                    2            2
## 1942                2                     2                    2            2
## 1943                2                     2                    1            2
## 1945                2                     2                    2            2
## 1946                2                     2                    2            2
## 1947                2                     2                    2            2
## 1948                2                     2                    2            2
## 1949                2                     2                    2            2
## 1950                2                     1                    2            2
## 1951                1                     1                    1            1
## 1952                2                     2                    2            2
## 1953                1                     1                    1            1
## 1954                2                     2                    2            2
## 1955                1                     1                    1            1
## 1956                1                     1                    1            1
## 1957                1                     1                    1            1
## 1958                2                     2                    2            2
## 1959                1                     1                    1            1
## 1960                1                     1                    1            1
## 1961                1                     1                    1            1
## 1962                1                     1                    1            1
## 1963                2                     2                    2            2
## 1964                2                     2                    2            2
## 1965                2                     2                    1            2
## 1966                2                     1                    2            2
## 1967                1                     1                    1            1
## 1968                2                     1                    2            2
## 1969                2                     2                    2            2
## 1970                1                     1                    1            1
## 1972                1                     1                    1            1
## 1973                1                     1                    1            1
## 1974                2                     2                    2            2
## 1975                1                     1                    1            1
## 1976                2                     2                    2            2
## 1977                1                     1                    1            1
## 1978                2                     1                    1            1
## 1979                1                     1                    1            1
## 1980                2                     2                    2            2
## 1981                1                     1                    1            1
## 1982                2                     2                    2            2
## 1983                2                     1                    2            2
## 1984                1                     1                    1            1
## 1985                2                     2                    2            2
## 1986                1                     1                    1            1
## 1987                1                     1                    1            1
## 1988                2                     2                    2            2
## 1990                1                     1                    1            1
## 1992                1                     1                    1            1
## 1993                1                     1                    1            1
## 1994                2                     1                    2            2
## 1995                2                     2                    2            2
## 1996                1                     1                    1            1
## 1998                2                     2                    2            2
## 1999                1                     1                    1            1
## 2000                1                     1                    1            1
## 2001                2                     2                    2            2
## 2002                1                     1                    1            1
## 2003                1                     1                    1            1
## 2004                2                     2                    2            2
## 2005                2                     2                    2            2
## 2006                2                     2                    2            2
## 2007                1                     1                    1            1
## 2008                2                     2                    2            2
## 2009                2                     2                    2            2
## 2010                1                     1                    1            1
## 2011                2                     1                    2            2
## 2013                2                     2                    2            2
## 2014                2                     2                    2            2
## 2015                2                     2                    2            2
## 2016                2                     2                    2            2
## 2018                2                     2                    2            2
## 2019                1                     1                    1            1
## 2020                1                     1                    1            1
## 2021                2                     1                    2            2
## 2022                2                     2                    2            2
## 2023                1                     1                    1            1
## 2024                1                     1                    1            1
## 2025                2                     1                    2            2
## 2026                1                     1                    1            1
## 2027                1                     1                    1            1
## 2028                1                     1                    1            1
## 2029                1                     1                    1            1
## 2030                2                     1                    2            2
## 2031                2                     2                    2            2
## 2032                1                     1                    1            1
## 2033                2                     2                    2            2
## 2034                1                     1                    1            1
## 2036                1                     1                    1            1
## 2037                1                     1                    1            1
## 2038                2                     2                    2            1
## 2039                2                     1                    2            2
## 2040                1                     1                    1            1
## 2041                1                     1                    1            1
## 2042                1                     1                    1            1
## 2043                1                     1                    1            1
## 2044                1                     1                    1            1
## 2045                1                     1                    1            1
## 2046                2                     1                    2            2
## 2047                2                     1                    1            1
## 2048                1                     1                    1            1
## 2049                1                     1                    1            1
## 2050                2                     2                    2            2
## 2051                1                     1                    1            1
## 2052                1                     1                    1            1
## 2053                1                     1                    1            1
## 2054                1                     1                    1            1
## 2055                1                     1                    1            1
## 2057                2                     1                    2            2
## 2058                1                     1                    1            1
## 2059                2                     2                    2            2
## 2060                2                     2                    2            2
## 2061                2                     1                    2            1
## 2062                2                     2                    2            2
## 2063                1                     1                    1            1
## 2064                2                     1                    2            2
## 2065                2                     1                    2            2
## 2066                1                     1                    1            1
## 2067                1                     1                    1            1
## 2069                2                     2                    1            2
## 2070                2                     2                    2            2
## 2071                2                     1                    2            2
## 2072                2                     1                    2            2
## 2074                2                     1                    2            2
## 2075                1                     1                    1            1
## 2076                1                     1                    1            1
## 2077                2                     1                    2            2
## 2078                1                     1                    1            1
## 2079                2                     2                    1            1
## 2080                1                     1                    1            1
## 2081                2                     2                    2            2
## 2082                1                     1                    1            1
## 2083                2                     1                    2            1
## 2084                1                     1                    1            1
## 2085                2                     2                    2            1
## 2086                2                     2                    2            2
## 2087                1                     1                    1            1
## 2088                2                     1                    2            2
## 2089                2                     1                    2            2
## 2090                1                     1                    1            1
## 2091                1                     1                    1            1
## 2092                1                     1                    1            1
## 2093                1                     1                    1            1
## 2094                2                     1                    2            2
## 2095                2                     2                    2            2
## 2096                1                     1                    1            1
## 2097                2                     2                    2            2
## 2098                1                     1                    1            1
## 2099                1                     1                    1            1
## 2100                1                     1                    1            1
## 2101                1                     1                    1            1
## 2102                2                     1                    2            2
## 2103                2                     2                    2            2
## 2104                1                     1                    1            1
## 2105                2                     2                    2            2
## 2107                2                     2                    2            2
## 2108                1                     1                    1            1
## 2110                2                     2                    2            2
## 2111                2                     1                    2            2
## 2112                2                     1                    1            1
## 2113                2                     2                    1            2
## 2114                1                     1                    1            1
## 2116                1                     1                    1            1
## 2117                1                     1                    1            1
## 2118                1                     1                    1            1
## 2119                1                     1                    1            1
## 2120                2                     2                    2            2
## 2121                1                     1                    1            1
## 2122                1                     1                    1            1
## 2123                1                     1                    1            1
## 2124                1                     1                    1            1
## 2125                2                     2                    2            2
## 2126                2                     2                    2            2
## 2127                2                     1                    2            2
## 2128                1                     1                    1            1
## 2129                1                     1                    1            1
## 2130                2                     2                    2            2
## 2131                1                     1                    1            1
## 2132                1                     1                    1            1
## 2133                2                     2                    2            2
## 2134                2                     2                    2            1
## 2135                2                     2                    2            2
## 2136                1                     1                    1            1
## 2137                1                     1                    1            1
## 2138                2                     2                    2            2
## 2139                2                     2                    2            2
## 2140                2                     2                    2            2
## 2141                1                     1                    1            1
## 2143                2                     1                    2            2
## 2144                2                     2                    2            2
## 2145                1                     1                    1            1
## 2146                1                     1                    1            1
## 2147                1                     1                    1            1
## 2148                1                     1                    1            1
## 2149                2                     2                    2            2
## 2150                1                     1                    1            1
## 2151                1                     1                    1            1
## 2152                1                     1                    1            1
## 2153                2                     2                    2            2
## 2154                2                     2                    2            2
## 2155                1                     1                    1            1
## 2156                1                     1                    1            1
## 2157                2                     2                    2            2
## 2158                1                     1                    1            1
## 2159                1                     1                    1            1
## 2160                1                     1                    1            1
## 2161                2                     2                    1            1
## 2162                1                     1                    1            1
## 2163                2                     2                    2            2
## 2164                2                     1                    2            2
## 2165                1                     1                    1            1
## 2166                2                     1                    2            2
## 2167                2                     2                    2            2
## 2168                2                     2                    2            2
## 2169                1                     1                    1            1
## 2170                1                     1                    1            1
## 2171                2                     2                    2            2
## 2172                1                     1                    1            1
## 2173                2                     1                    2            1
## 2174                2                     1                    2            2
## 2175                2                     1                    2            2
## 2176                1                     1                    1            1
## 2177                2                     2                    2            2
## 2178                2                     1                    2            1
## 2179                1                     1                    1            1
## 2180                1                     1                    1            1
## 2181                1                     1                    1            1
## 2182                2                     2                    2            2
## 2183                1                     1                    1            1
## 2184                1                     1                    1            1
## 2185                2                     2                    2            2
## 2186                1                     1                    1            1
## 2187                1                     1                    1            1
## 2188                1                     1                    1            1
## 2189                2                     1                    2            2
## 2191                1                     1                    1            1
## 2192                2                     1                    2            2
## 2193                1                     1                    1            1
## 2194                2                     2                    2            2
## 2195                1                     1                    1            1
## 2196                1                     1                    1            1
## 2197                1                     1                    1            1
## 2198                1                     1                    1            1
## 2199                2                     2                    2            2
## 2200                2                     2                    2            2
## 2201                1                     1                    1            1
## 2202                2                     1                    2            2
## 2203                2                     2                    2            2
## 2204                2                     1                    2            2
## 2205                2                     1                    2            2
## 2206                2                     2                    2            2
## 2207                1                     1                    1            1
## 2208                2                     1                    2            2
## 2209                2                     2                    2            2
## 2210                2                     2                    2            2
## 2211                2                     2                    2            2
## 2212                1                     1                    1            1
## 2213                1                     1                    1            1
## 2214                1                     1                    1            1
## 2215                2                     2                    2            2
## 2216                1                     1                    1            1
## 2217                1                     1                    1            1
## 2218                2                     2                    2            2
## 2219                1                     1                    1            1
## 2220                1                     1                    1            1
## 2222                1                     1                    1            1
## 2223                1                     1                    1            1
## 2224                1                     1                    1            1
## 2225                1                     1                    1            1
## 2227                2                     1                    2            2
## 2229                2                     2                    2            2
## 2230                2                     2                    2            2
## 2231                2                     1                    1            1
## 2232                1                     1                    1            1
## 2233                2                     1                    2            2
## 2234                2                     1                    2            2
## 2235                2                     2                    2            2
## 2236                2                     1                    2            2
## 2237                2                     1                    2            2
## 2238                2                     1                    2            2
## 2239                1                     1                    1            1
## 2241                1                     1                    1            1
## 2242                2                     1                    2            2
## 2243                1                     1                    1            1
## 2244                1                     1                    1            1
## 2245                2                     2                    2            2
## 2246                1                     1                    1            1
## 2247                1                     1                    1            1
## 2248                1                     1                    1            1
## 2249                1                     1                    1            1
## 2250                2                     2                    2            1
## 2251                1                     1                    1            1
## 2252                1                     1                    1            1
## 2254                1                     1                    1            1
## 2255                2                     2                    2            2
## 2256                1                     1                    1            1
## 2257                1                     1                    1            1
## 2258                2                     2                    2            2
## 2260                1                     1                    1            1
## 2261                1                     1                    1            1
## 2263                1                     1                    1            1
## 2264                2                     1                    2            1
## 2265                2                     2                    2            2
## 2266                1                     1                    1            1
## 2267                1                     1                    1            1
## 2268                2                     2                    2            2
## 2269                1                     1                    1            1
## 2270                1                     1                    1            1
## 2271                2                     2                    2            2
## 2272                1                     1                    1            1
## 2273                2                     2                    2            2
## 2275                1                     1                    1            1
## 2276                1                     1                    1            1
## 2277                1                     1                    1            1
## 2278                2                     1                    2            2
## 2279                1                     1                    1            1
## 2280                1                     1                    1            1
## 2281                1                     1                    1            1
## 2282                2                     1                    1            1
## 2283                1                     1                    1            1
## 2284                1                     1                    1            1
## 2285                1                     1                    1            1
## 2286                1                     1                    1            1
## 2287                2                     2                    2            2
## 2288                1                     2                    2            2
## 2289                2                     1                    1            1
## 2290                2                     2                    2            2
## 2291                1                     1                    1            1
## 2292                2                     2                    2            2
## 2293                2                     2                    2            2
## 2294                2                     2                    2            2
## 2295                1                     1                    1            1
## 2296                1                     1                    1            1
## 2297                2                     2                    2            2
## 2298                1                     1                    1            1
## 2299                2                     2                    2            2
## 2300                1                     1                    1            1
## 2301                2                     2                    2            2
## 2302                1                     1                    1            1
## 2303                1                     1                    1            1
## 2304                1                     1                    1            1
## 2305                1                     1                    1            1
## 2306                2                     2                    2            2
## 2307                2                     2                    2            2
## 2308                1                     1                    1            1
## 2309                1                     1                    1            1
## 2310                1                     1                    1            1
## 2311                2                     2                    2            2
## 2312                2                     2                    2            2
## 2313                2                     2                    2            2
## 2315                2                     1                    2            2
## 2316                2                     2                    2            1
## 2317                1                     1                    1            1
## 2318                1                     1                    1            1
## 2319                1                     1                    1            1
## 2320                2                     2                    2            2
## 2321                1                     1                    1            1
## 2322                2                     1                    2            2
## 2323                2                     2                    2            2
## 2324                2                     2                    2            2
## 2325                2                     2                    2            2
## 2326                1                     1                    1            1
## 2327                1                     1                    1            1
## 2328                1                     1                    1            1
## 2329                2                     1                    2            2
## 2330                1                     1                    1            1
## 2331                2                     1                    2            2
## 2332                1                     1                    1            1
## 2333                1                     1                    1            1
## 2334                1                     1                    1            1
## 2335                2                     2                    2            2
## 2336                2                     2                    2            2
## 2337                2                     2                    2            2
## 2338                1                     1                    1            1
## 2339                1                     1                    1            1
## 2341                1                     1                    1            1
## 2342                2                     2                    2            2
## 2343                2                     2                    2            2
## 2344                2                     2                    2            2
## 2345                1                     1                    1            1
## 2347                1                     1                    1            1
## 2348                2                     2                    2            2
## 2349                1                     1                    1            1
## 2350                2                     2                    2            2
## 2351                1                     1                    1            1
## 2352                1                     1                    1            1
## 2353                1                     1                    1            1
## 2354                2                     2                    2            2
## 2355                1                     1                    1            1
## 2356                1                     1                    1            1
## 2357                2                     2                    2            2
## 2358                1                     1                    1            1
## 2359                1                     1                    1            1
## 2360                1                     1                    1            1
## 2361                2                     2                    2            1
## 2362                2                     1                    2            2
## 2363                1                     1                    1            1
## 2364                2                     2                    2            2
## 2365                1                     1                    1            1
## 2366                2                     2                    2            2
## 2367                1                     1                    1            1
## 2368                1                     1                    1            1
## 2369                2                     2                    2            2
## 2370                1                     1                    1            1
## 2371                2                     2                    2            2
## 2372                2                     2                    2            2
## 2373                1                     1                    1            1
## 2374                1                     1                    1            1
## 2375                1                     1                    1            1
## 2376                2                     2                    2            2
## 2377                1                     1                    1            1
## 2378                1                     1                    1            1
## 2379                2                     1                    2            2
## 2380                1                     1                    1            1
## 2381                1                     1                    1            1
## 2383                2                     2                    2            2
## 2384                1                     1                    1            1
## 2385                1                     1                    1            1
## 2386                1                     1                    1            1
## 2387                1                     1                    1            1
## 2388                2                     2                    2            1
## 2389                1                     1                    1            1
## 2390                1                     1                    1            1
## 2391                1                     1                    1            1
## 2392                2                     2                    2            2
## 2394                2                     2                    2            2
## 2395                1                     1                    1            1
## 2396                2                     1                    2            2
## 2398                2                     2                    2            2
## 2400                1                     1                    1            1
## 2401                1                     1                    1            1
## 2402                1                     1                    1            1
## 2403                2                     2                    2            2
## 2404                2                     2                    2            2
## 2405                2                     2                    2            1
## 2406                2                     2                    2            2
## 2407                1                     1                    1            1
## 2408                1                     1                    1            1
## 2409                2                     2                    2            2
## 2410                2                     2                    2            1
## 2411                2                     2                    2            2
## 2412                1                     1                    1            1
## 2413                2                     1                    2            2
## 2414                2                     2                    2            2
## 2415                2                     1                    2            2
## 2416                2                     1                    2            2
## 2417                2                     2                    2            1
## 2418                2                     1                    2            2
## 2419                2                     2                    2            2
## 2420                1                     1                    1            1
## 2421                2                     1                    2            2
## 2422                1                     1                    1            1
## 2423                2                     2                    2            2
## 2424                2                     2                    2            2
## 2425                2                     2                    2            1
## 2427                1                     1                    1            1
## 2428                2                     2                    2            2
## 2429                1                     1                    1            1
## 2430                1                     1                    1            1
## 2431                1                     1                    1            1
## 2432                2                     2                    2            1
## 2433                1                     2                    2            2
## 2434                2                     2                    2            2
## 2435                1                     1                    1            1
## 2436                1                     1                    1            1
## 2437                2                     2                    2            2
## 2438                1                     1                    1            1
## 2439                1                     1                    1            1
## 2440                2                     1                    2            2
## 2441                1                     1                    1            1
## 2442                1                     1                    1            1
## 2443                2                     1                    2            2
## 2444                1                     1                    1            1
## 2445                1                     1                    1            1
## 2446                2                     1                    2            2
## 2447                2                     1                    2            2
## 2448                1                     1                    1            1
## 2449                1                     1                    1            1
## 2450                2                     2                    2            2
## 2451                2                     1                    1            1
## 2453                2                     2                    2            2
## 2454                1                     1                    1            1
## 2455                1                     1                    1            1
## 2456                2                     2                    2            2
## 2457                1                     1                    1            1
## 2458                2                     2                    2            2
## 2459                1                     1                    1            1
## 2460                1                     1                    1            1
## 2461                1                     1                    1            1
## 2463                2                     2                    2            2
## 2464                1                     1                    1            1
## 2465                2                     2                    2            2
## 2466                1                     1                    1            1
## 2467                2                     1                    2            2
## 2468                2                     2                    2            2
## 2470                2                     1                    2            2
## 2471                2                     2                    1            2
## 2473                1                     1                    1            1
## 2474                2                     1                    2            2
## 2475                2                     1                    2            2
## 2476                2                     2                    2            2
## 2477                1                     1                    1            1
## 2478                1                     1                    1            1
## 2479                2                     2                    1            1
## 2480                2                     2                    2            2
## 2483                2                     1                    1            1
## 2484                2                     1                    2            2
## 2485                2                     1                    2            1
## 2486                1                     1                    1            1
## 2487                1                     1                    1            1
## 2488                2                     2                    2            2
## 2489                1                     1                    1            1
## 2490                1                     1                    1            1
## 2491                1                     1                    1            1
## 2492                2                     2                    2            2
## 2493                2                     2                    2            2
## 2495                2                     2                    2            1
## 2496                1                     1                    1            1
## 2497                2                     2                    2            2
## 2498                2                     2                    2            2
## 2499                2                     1                    2            2
## 2500                1                     1                    1            1
## 2501                2                     2                    2            2
## 2502                2                     2                    1            2
## 2503                1                     1                    1            1
## 2504                1                     1                    1            1
## 2505                2                     1                    2            2
## 2506                2                     1                    2            2
## 2507                1                     1                    1            1
## 2508                2                     2                    2            2
## 2509                1                     1                    1            1
## 2510                1                     1                    1            1
## 2511                1                     1                    1            1
## 2512                1                     1                    1            1
## 2513                2                     2                    2            2
## 2514                2                     2                    2            2
## 2515                2                     2                    2            1
## 2518                2                     2                    2            2
## 2519                2                     1                    2            2
## 2520                2                     2                    2            2
## 2521                2                     1                    2            2
## 2522                2                     2                    2            2
## 2523                1                     1                    1            1
## 2524                2                     2                    2            2
## 2525                2                     2                    2            2
## 2526                1                     1                    1            1
## 2527                2                     2                    2            2
## 2528                2                     2                    2            2
## 2529                2                     1                    2            2
## 2530                1                     1                    1            1
## 2531                1                     1                    1            1
## 2532                2                     2                    2            2
## 2534                1                     1                    1            1
## 2535                1                     1                    1            1
## 2536                2                     1                    2            2
## 2537                1                     1                    1            1
## 2538                1                     1                    1            1
## 2539                1                     1                    1            1
## 2540                1                     1                    1            1
## 2541                2                     1                    2            2
## 2542                1                     1                    1            1
## 2543                1                     1                    1            1
## 2544                1                     1                    1            1
## 2545                2                     1                    2            2
## 2546                1                     1                    1            1
## 2547                2                     2                    2            2
## 2548                2                     1                    2            2
## 2550                2                     2                    2            2
## 2551                1                     1                    1            1
## 2552                2                     2                    2            1
## 2553                1                     1                    1            1
## 2554                2                     2                    2            2
## 2555                1                     1                    1            1
## 2556                1                     1                    1            1
## 2558                1                     1                    1            1
## 2559                1                     1                    1            1
## 2560                2                     2                    2            2
## 2561                1                     1                    1            1
## 2562                2                     2                    2            2
## 2563                2                     2                    2            2
## 2564                2                     1                    2            2
## 2565                2                     2                    2            2
## 2566                1                     1                    1            1
## 2567                2                     2                    2            2
## 2568                2                     2                    2            2
## 2569                2                     2                    2            2
## 2570                1                     1                    1            1
## 2571                2                     2                    2            2
## 2572                1                     1                    1            1
## 2573                2                     2                    2            2
## 2574                2                     2                    2            2
## 2575                2                     2                    2            2
## 2576                2                     1                    2            2
## 2577                2                     2                    1            1
## 2578                2                     1                    2            2
## 2579                2                     2                    2            2
## 2580                1                     1                    1            1
## 2581                2                     1                    2            1
## 2582                2                     2                    2            2
## 2583                2                     1                    2            2
## 2584                1                     1                    1            1
## 2585                2                     2                    2            2
## 2586                1                     1                    1            1
## 2587                2                     2                    2            1
## 2588                2                     2                    2            2
## 2589                1                     1                    1            1
## 2590                1                     1                    1            1
## 2591                2                     2                    2            2
## 2592                2                     1                    2            2
## 2593                1                     1                    1            1
## 2594                1                     1                    1            1
## 2595                1                     1                    1            1
## 2596                2                     2                    2            2
## 2598                2                     2                    2            2
## 2599                2                     2                    2            2
## 2600                2                     2                    2            2
## 2601                2                     2                    2            2
## 2602                1                     1                    1            1
## 2603                2                     2                    2            2
## 2604                2                     2                    2            2
## 2605                1                     1                    1            1
## 2606                2                     1                    2            2
## 2607                1                     1                    1            1
## 2608                2                     2                    2            2
## 2609                1                     1                    1            1
## 2610                1                     1                    1            1
## 2611                1                     1                    1            1
## 2612                1                     1                    1            1
## 2613                2                     1                    2            2
## 2614                1                     1                    1            1
## 2615                1                     1                    1            1
## 2616                1                     1                    1            1
## 2617                2                     2                    2            2
## 2618                2                     1                    2            2
## 2619                1                     1                    1            1
## 2620                1                     1                    1            1
## 2621                1                     1                    1            1
## 2622                1                     1                    1            1
## 2623                2                     2                    2            2
## 2624                2                     2                    2            2
## 2625                2                     1                    2            2
## 2626                2                     2                    2            2
## 2627                2                     2                    2            2
## 2628                1                     1                    1            1
## 2629                2                     2                    2            2
## 2630                1                     1                    1            1
## 2631                2                     2                    2            2
## 2632                2                     2                    2            2
## 2633                1                     1                    1            1
## 2634                1                     1                    1            1
## 2635                1                     1                    1            1
## 2636                2                     2                    2            2
## 2637                2                     1                    2            2
## 2638                1                     1                    1            2
## 2639                2                     2                    2            2
## 2640                1                     1                    1            1
## 2641                2                     1                    2            2
## 2642                2                     2                    2            2
## 2643                2                     1                    2            2
## 2644                1                     1                    1            1
## 2645                1                     1                    1            1
## 2646                1                     1                    1            1
## 2648                2                     2                    2            2
## 2649                1                     1                    1            1
## 2650                1                     1                    1            1
## 2651                1                     1                    1            1
## 2652                2                     1                    2            2
## 2653                2                     2                    2            2
## 2654                2                     2                    2            2
## 2655                2                     2                    2            2
## 2656                2                     2                    2            2
## 2657                2                     1                    2            2
## 2659                1                     1                    1            1
## 2660                1                     1                    1            1
## 2661                1                     1                    1            1
## 2662                1                     1                    1            1
## 2665                2                     2                    2            1
## 2666                2                     2                    2            2
## 2667                1                     1                    1            1
## 2669                2                     2                    2            1
## 2670                2                     2                    2            2
## 2672                1                     1                    1            1
## 2673                1                     1                    1            1
## 2674                2                     2                    2            2
## 2675                1                     1                    1            1
## 2676                2                     1                    2            2
## 2677                2                     2                    2            2
## 2678                1                     1                    1            1
## 2679                2                     1                    2            2
## 2680                2                     1                    2            2
## 2681                2                     2                    2            2
## 2682                2                     2                    2            2
## 2684                2                     2                    2            2
## 2685                2                     1                    2            2
## 2686                2                     1                    2            2
## 2687                2                     2                    2            2
## 2688                1                     1                    1            1
## 2689                2                     2                    2            2
## 2690                2                     2                    2            2
## 2691                2                     1                    2            2
## 2693                1                     1                    1            1
## 2695                1                     1                    1            1
## 2696                2                     1                    1            2
## 2697                2                     1                    2            1
## 2698                2                     2                    2            2
## 2699                1                     1                    1            1
## 2700                2                     2                    2            2
## 2701                1                     1                    1            1
## 2702                1                     1                    1            1
## 2703                2                     1                    2            2
## 2704                1                     1                    1            1
## 2705                1                     1                    1            1
## 2706                2                     1                    2            1
## 2707                1                     1                    1            1
## 2708                1                     1                    1            1
## 2709                2                     2                    2            1
## 2710                2                     2                    2            1
## 2711                2                     2                    2            2
## 2713                2                     2                    2            2
## 2714                1                     1                    1            1
## 2715                1                     1                    1            1
## 2716                1                     1                    1            1
## 2717                1                     1                    1            1
## 2718                2                     2                    2            2
## 2720                1                     1                    1            1
## 2721                2                     2                    2            2
## 2722                2                     1                    2            2
## 2723                2                     2                    2            2
## 2724                2                     1                    2            1
## 2725                2                     2                    2            1
## 2726                1                     1                    1            1
## 2727                2                     1                    2            2
## 2728                2                     2                    2            2
## 2729                2                     2                    2            2
## 2730                2                     2                    2            2
## 2731                1                     1                    1            1
## 2732                2                     2                    2            2
## 2733                1                     1                    1            1
## 2734                2                     1                    2            2
## 2735                2                     2                    2            2
## 2737                1                     1                    1            1
## 2738                2                     2                    2            2
## 2739                1                     1                    1            1
## 2740                2                     2                    2            2
## 2741                1                     1                    1            1
## 2742                2                     2                    2            2
## 2743                2                     2                    2            2
## 2744                2                     2                    2            1
## 2745                2                     1                    2            2
## 2746                1                     1                    1            1
## 2747                2                     2                    2            2
## 2748                2                     2                    2            2
## 2749                2                     1                    2            2
## 2750                1                     1                    1            1
## 2751                1                     1                    1            1
## 2752                1                     1                    1            1
## 2753                2                     2                    2            1
## 2755                2                     1                    2            2
## 2756                1                     1                    1            1
## 2757                1                     1                    1            1
## 2760                2                     2                    2            2
## 2761                2                     1                    2            2
## 2762                1                     1                    1            1
## 2763                2                     2                    2            2
## 2764                2                     2                    2            2
## 2765                1                     1                    1            1
## 2766                2                     2                    2            2
## 2767                1                     1                    1            1
## 2768                2                     2                    2            2
## 2769                2                     2                    2            2
## 2770                2                     2                    2            2
## 2771                2                     1                    2            2
## 2772                1                     1                    1            1
## 2773                2                     2                    2            2
## 2774                1                     1                    1            1
## 2775                1                     1                    1            1
## 2776                2                     2                    2            2
## 2777                2                     2                    2            2
## 2778                2                     2                    2            2
## 2779                1                     1                    1            1
## 2780                1                     1                    1            1
## 2781                2                     1                    2            2
## 2782                1                     1                    1            1
## 2783                1                     1                    1            1
## 2784                1                     1                    1            1
## 2785                2                     2                    2            2
## 2786                2                     2                    2            2
## 2787                1                     1                    1            1
## 2788                2                     1                    2            2
## 2789                2                     2                    2            2
## 2790                1                     1                    1            1
## 2791                2                     2                    2            2
## 2792                2                     2                    2            2
## 2793                2                     2                    2            2
## 2794                1                     1                    1            1
## 2795                1                     1                    1            1
## 2796                2                     2                    2            2
## 2797                1                     1                    1            1
## 2798                2                     2                    2            2
## 2799                1                     1                    1            1
## 2800                2                     1                    2            2
## 2801                1                     1                    1            1
## 2802                2                     2                    2            2
## 2803                2                     1                    2            2
## 2804                2                     2                    2            2
## 2805                1                     1                    1            1
## 2806                2                     2                    2            1
## 2807                2                     2                    2            2
## 2808                1                     1                    1            1
## 2809                2                     2                    2            2
## 2810                1                     1                    1            1
## 2811                2                     1                    2            2
## 2813                2                     2                    2            2
## 2814                1                     1                    1            1
## 2815                2                     1                    2            2
## 2816                2                     2                    2            2
## 2817                1                     1                    1            1
## 2818                2                     2                    2            2
## 2821                2                     2                    2            1
## 2822                2                     1                    2            2
## 2823                1                     1                    1            1
## 2824                2                     2                    2            2
## 2825                2                     2                    2            2
## 2826                2                     2                    2            2
## 2827                2                     2                    2            2
## 2828                2                     2                    2            2
## 2829                1                     1                    1            1
## 2831                2                     1                    2            2
## 2832                2                     2                    2            2
## 2833                2                     2                    2            2
## 2834                2                     2                    2            2
## 2835                1                     2                    2            2
## 2836                2                     2                    2            2
## 2837                2                     2                    2            2
## 2838                1                     1                    1            1
## 2839                2                     2                    2            2
## 2840                1                     1                    1            1
## 2841                2                     1                    2            2
## 2842                2                     1                    2            2
## 2843                2                     2                    2            1
## 2844                2                     1                    2            2
## 2845                2                     2                    2            2
## 2846                1                     1                    1            1
## 2848                1                     1                    1            1
## 2850                2                     1                    2            2
## 2851                1                     1                    1            1
## 2852                1                     1                    1            1
## 2853                2                     2                    2            2
## 2854                1                     1                    1            1
## 2855                1                     2                    2            2
## 2856                1                     1                    1            1
## 2857                1                     1                    1            1
## 2858                2                     2                    2            2
## 2859                2                     2                    2            2
## 2860                2                     2                    2            2
## 2862                1                     1                    1            1
## 2863                2                     2                    2            1
## 2864                2                     2                    2            2
## 2865                1                     1                    1            1
## 2866                2                     2                    2            2
## 2868                1                     1                    1            1
## 2869                2                     2                    2            2
## 2870                2                     2                    2            2
## 2871                2                     1                    2            2
## 2872                2                     2                    1            1
## 2874                1                     1                    1            1
## 2875                1                     1                    1            1
## 2876                1                     1                    1            1
## 2877                1                     1                    1            1
## 2878                2                     2                    2            2
## 2879                2                     2                    2            2
## 2880                1                     1                    1            1
## 2881                2                     1                    2            2
## 2882                1                     1                    1            1
## 2883                2                     1                    2            2
## 2885                2                     2                    2            2
## 2886                2                     2                    2            2
## 2887                1                     1                    1            1
## 2888                2                     1                    2            2
## 2889                2                     2                    2            2
## 2890                2                     2                    2            2
## 2891                1                     1                    1            1
## 2892                2                     2                    2            2
## 2893                2                     2                    2            2
## 2894                2                     2                    2            2
## 2895                2                     2                    2            2
## 2896                1                     1                    1            1
## 2897                2                     1                    2            2
## 2898                1                     1                    1            1
## 2899                2                     2                    2            2
## 2900                1                     1                    1            1
## 2901                2                     2                    2            2
## 2902                2                     2                    2            1
## 2903                1                     1                    1            1
## 2904                2                     2                    2            2
## 2905                1                     1                    1            1
## 2906                1                     1                    1            1
## 2909                1                     1                    1            1
## 2910                1                     1                    1            1
## 2911                1                     1                    1            1
## 2912                2                     1                    2            2
## 2913                2                     2                    2            2
## 2914                1                     1                    1            1
## 2915                1                     1                    1            1
## 2916                1                     1                    1            1
## 2917                2                     1                    2            2
## 2918                1                     1                    1            1
## 2919                2                     1                    1            1
## 2921                1                     1                    1            1
## 2922                2                     2                    1            1
## 2923                1                     1                    1            1
## 2924                1                     1                    1            1
## 2925                1                     1                    1            1
## 2926                1                     1                    1            1
## 2927                1                     1                    1            1
## 2928                2                     2                    2            2
## 2929                2                     1                    2            2
## 2930                2                     2                    2            2
## 2931                2                     1                    2            2
## 2932                1                     1                    1            1
## 2933                2                     2                    2            2
## 2934                2                     2                    2            2
## 2935                1                     1                    1            1
## 2936                2                     1                    2            2
## 2937                2                     2                    2            2
## 2938                2                     2                    2            2
## 2939                1                     1                    1            1
## 2940                2                     2                    2            2
## 2941                2                     2                    2            2
## 2942                1                     1                    1            1
## 2943                1                     1                    1            1
## 2944                1                     1                    1            1
## 2946                1                     1                    1            1
## 2947                2                     2                    2            2
## 2948                1                     1                    1            1
## 2949                2                     1                    2            2
## 2950                1                     1                    1            1
## 2951                1                     1                    1            1
## 2952                1                     1                    1            1
## 2953                2                     2                    2            2
## 2954                1                     1                    1            1
## 2955                1                     1                    1            1
## 2956                1                     1                    1            1
## 2957                2                     1                    2            2
## 2958                2                     2                    2            2
## 2959                2                     2                    2            1
## 2960                1                     1                    1            1
## 2961                1                     1                    1            1
## 2962                1                     1                    1            1
## 2964                1                     1                    1            1
## 2965                2                     1                    2            2
## 2966                2                     2                    2            2
## 2967                1                     1                    1            1
## 2968                1                     1                    1            1
## 2969                1                     1                    1            1
## 2970                2                     1                    2            2
## 2971                2                     1                    2            2
## 2972                2                     2                    2            2
## 2973                2                     2                    2            2
## 2974                1                     1                    1            1
## 2975                1                     1                    1            1
## 2976                2                     1                    2            2
## 2977                2                     2                    2            2
## 2978                1                     1                    1            1
## 2980                1                     1                    1            1
## 2982                2                     1                    2            2
## 2983                2                     2                    2            2
## 2984                2                     2                    2            2
## 2985                2                     1                    1            1
## 2986                2                     2                    2            2
## 2987                2                     1                    2            2
## 2988                1                     1                    1            1
## 2989                2                     1                    2            2
## 2990                2                     2                    2            1
## 2991                1                     1                    1            1
## 2992                2                     2                    2            2
## 2993                2                     1                    2            2
## 2994                2                     2                    2            2
## 2995                1                     1                    1            1
## 2996                2                     2                    2            2
## 2997                1                     1                    1            1
## 2998                2                     2                    2            2
## 2999                2                     1                    2            2
## 3000                2                     2                    2            2
## 3002                2                     2                    2            2
## 3003                2                     2                    2            2
## 3004                1                     1                    1            1
## 3005                2                     2                    2            2
## 3006                1                     1                    1            1
## 3007                2                     2                    2            2
## 3008                2                     2                    2            2
## 3009                2                     1                    2            2
## 3010                2                     1                    2            2
## 3011                2                     2                    2            1
## 3012                2                     2                    2            2
## 3013                2                     2                    2            2
## 3015                2                     2                    2            2
## 3016                1                     1                    1            1
## 3017                2                     2                    2            2
## 3018                1                     1                    1            1
## 3019                2                     1                    2            2
## 3020                2                     1                    2            2
## 3021                2                     2                    2            1
## 3022                2                     1                    2            2
## 3023                2                     2                    2            2
## 3024                2                     1                    2            2
## 3025                2                     2                    2            2
## 3027                2                     2                    2            2
## 3028                2                     2                    2            1
## 3029                1                     1                    1            1
## 3030                2                     2                    2            2
## 3031                1                     1                    1            1
## 3032                2                     2                    2            2
## 3033                2                     2                    1            2
## 3034                2                     2                    2            2
## 3035                2                     2                    2            2
## 3036                2                     2                    2            2
## 3037                2                     2                    2            2
## 3038                2                     2                    2            1
## 3039                2                     2                    2            1
## 3040                2                     2                    2            2
## 3041                1                     1                    1            1
## 3042                2                     2                    2            2
## 3044                2                     2                    2            2
## 3045                1                     1                    1            1
## 3046                1                     1                    1            1
## 3047                1                     1                    1            1
## 3048                2                     1                    2            2
## 3049                1                     1                    1            1
## 3050                2                     2                    2            2
## 3051                2                     2                    2            2
## 3053                1                     1                    1            1
## 3054                1                     1                    1            1
## 3055                1                     1                    1            1
## 3056                1                     1                    1            1
## 3057                1                     1                    1            1
## 3058                2                     1                    2            2
## 3059                2                     2                    2            2
## 3060                2                     2                    2            1
## 3061                1                     1                    1            1
## 3062                1                     1                    1            1
## 3063                1                     1                    1            1
## 3064                2                     1                    2            2
## 3065                1                     1                    1            1
## 3066                2                     1                    2            2
## 3067                2                     1                    2            2
## 3068                1                     1                    1            1
## 3069                2                     2                    2            2
## 3070                1                     1                    1            1
## 3071                1                     1                    1            1
## 3072                2                     2                    2            2
## 3073                2                     1                    2            2
## 3074                1                     1                    1            1
## 3075                2                     2                    2            2
## 3076                2                     2                    2            2
## 3078                1                     1                    1            1
## 3079                1                     1                    1            1
## 3080                1                     1                    1            1
## 3081                1                     1                    1            1
## 3082                2                     1                    2            1
## 3084                2                     2                    2            2
## 3085                1                     1                    1            1
## 3086                2                     2                    2            2
## 3087                1                     1                    1            1
## 3088                2                     2                    2            1
## 3090                2                     2                    2            2
## 3091                2                     1                    2            2
## 3092                2                     2                    2            2
## 3093                1                     1                    1            1
## 3094                1                     1                    1            1
## 3095                1                     1                    1            1
## 3096                1                     1                    1            1
## 3097                2                     1                    2            2
## 3098                2                     1                    2            2
## 3099                2                     2                    2            2
## 3100                2                     2                    2            2
## 3101                1                     1                    1            1
## 3102                1                     1                    1            1
## 3103                1                     1                    1            1
## 3104                2                     2                    2            2
## 3105                1                     1                    1            1
## 3106                1                     1                    1            1
## 3107                2                     1                    2            2
## 3108                1                     1                    1            1
## 3109                2                     2                    2            2
## 3110                1                     1                    1            1
## 3111                2                     2                    2            2
## 3112                1                     1                    1            1
## 3113                2                     2                    2            2
## 3114                2                     2                    2            2
## 3115                1                     1                    1            1
## 3116                2                     2                    2            2
## 3117                1                     1                    1            1
## 3118                1                     1                    1            1
## 3119                2                     1                    2            2
## 3120                2                     2                    2            2
## 3121                2                     2                    2            2
## 3122                1                     1                    1            1
## 3123                2                     2                    2            2
## 3124                2                     1                    2            2
## 3126                2                     2                    2            2
## 3127                1                     1                    1            1
## 3128                2                     2                    2            2
## 3129                2                     2                    2            2
## 3130                2                     2                    2            2
## 3131                2                     2                    1            1
## 3132                1                     1                    1            1
## 3133                1                     1                    1            1
## 3134                1                     1                    1            1
## 3136                2                     1                    2            2
## 3137                2                     2                    2            1
## 3138                2                     2                    2            2
## 3139                1                     1                    1            1
## 3140                1                     1                    1            1
## 3141                2                     2                    1            2
## 3142                2                     2                    2            2
## 3143                2                     2                    1            1
## 3144                2                     2                    2            2
## 3145                1                     1                    1            1
## 3146                1                     1                    1            1
## 3147                2                     2                    2            2
## 3148                2                     2                    2            2
## 3149                1                     1                    1            1
## 3150                1                     1                    1            1
## 3151                1                     1                    1            1
## 3152                1                     1                    1            1
## 3153                2                     1                    2            2
## 3154                1                     1                    1            1
## 3155                1                     1                    1            1
## 3156                1                     1                    1            1
## 3157                2                     1                    2            2
## 3158                2                     2                    2            2
## 3159                1                     1                    1            1
## 3160                1                     1                    1            1
## 3161                1                     1                    1            1
## 3162                2                     2                    2            2
## 3163                1                     1                    1            1
## 3164                2                     2                    2            2
## 3165                2                     1                    2            2
## 3166                1                     1                    1            1
## 3167                2                     1                    2            2
## 3168                2                     2                    2            2
## 3169                1                     1                    1            1
## 3170                2                     1                    2            1
## 3171                1                     1                    1            1
## 3172                1                     1                    1            1
## 3173                1                     1                    1            1
## 3174                2                     1                    2            1
## 3175                1                     1                    1            1
## 3177                1                     1                    1            1
## 3178                1                     1                    1            1
## 3179                1                     1                    1            1
## 3180                2                     2                    2            2
## 3181                1                     1                    1            1
## 3182                1                     1                    1            1
## 3183                1                     1                    1            1
## 3184                1                     1                    1            1
## 3185                2                     2                    2            2
## 3186                2                     2                    2            2
## 3187                2                     2                    2            2
## 3188                2                     1                    2            2
## 3189                1                     1                    1            1
## 3190                2                     1                    2            2
## 3191                1                     1                    1            1
## 3192                2                     1                    2            2
## 3193                2                     2                    2            2
## 3194                2                     2                    2            2
## 3195                1                     1                    1            1
## 3196                1                     1                    1            1
## 3197                2                     1                    2            2
## 3198                2                     2                    2            2
## 3199                2                     1                    1            2
## 3200                1                     1                    1            1
## 3201                2                     1                    2            2
## 3202                1                     1                    1            1
## 3203                1                     1                    1            1
## 3204                1                     1                    1            1
## 3205                1                     1                    1            1
## 3206                2                     2                    2            2
## 3207                2                     2                    2            1
## 3208                2                     1                    2            2
## 3210                2                     2                    2            2
## 3211                1                     1                    1            1
## 3212                2                     1                    2            2
## 3213                1                     1                    1            1
## 3215                2                     1                    2            2
## 3216                1                     1                    1            1
## 3217                1                     1                    1            1
## 3218                2                     2                    2            1
## 3219                1                     1                    1            1
## 3221                1                     1                    1            1
## 3222                1                     1                    1            1
## 3223                1                     1                    1            1
## 3224                1                     1                    1            1
## 3225                1                     2                    2            2
## 3226                2                     1                    2            2
## 3227                2                     2                    2            1
## 3228                2                     2                    2            2
## 3229                2                     1                    2            1
## 3230                2                     1                    2            2
## 3231                2                     1                    2            2
## 3232                1                     1                    1            1
## 3233                2                     2                    2            2
## 3234                2                     2                    2            2
## 3235                1                     1                    1            1
## 3236                1                     1                    1            1
## 3238                1                     1                    1            1
## 3239                2                     1                    2            2
## 3240                2                     2                    2            2
## 3241                2                     1                    2            2
## 3242                1                     1                    1            1
## 3243                1                     1                    1            1
## 3244                1                     1                    1            1
## 3245                1                     1                    1            1
## 3246                2                     1                    2            2
## 3247                2                     2                    2            1
## 3248                1                     1                    1            1
## 3249                2                     2                    2            2
## 3250                1                     1                    1            1
## 3251                1                     1                    1            1
## 3252                1                     1                    1            1
## 3253                1                     1                    1            1
## 3254                1                     1                    1            1
## 3255                1                     1                    1            1
## 3256                2                     2                    2            2
## 3257                1                     1                    1            1
## 3258                2                     2                    2            2
## 3259                1                     1                    1            1
## 3260                2                     1                    2            2
## 3261                1                     1                    1            1
## 3262                2                     2                    2            2
## 3263                2                     2                    2            2
## 3264                1                     1                    1            1
## 3266                2                     2                    2            2
## 3267                1                     1                    1            1
## 3268                1                     1                    1            1
## 3269                2                     2                    2            2
## 3270                2                     2                    2            2
## 3271                1                     1                    1            1
## 3272                2                     2                    2            2
## 3273                1                     1                    1            1
## 3274                2                     1                    2            2
## 3275                1                     1                    1            1
## 3276                2                     2                    2            2
## 3277                2                     2                    2            2
## 3278                1                     1                    1            1
## 3279                1                     1                    1            1
## 3280                2                     2                    2            2
## 3282                2                     1                    2            2
## 3283                2                     2                    2            1
## 3284                1                     1                    1            1
## 3285                1                     1                    1            1
## 3286                2                     2                    2            2
## 3287                2                     2                    2            2
## 3288                1                     1                    1            1
## 3289                2                     2                    2            2
## 3290                2                     2                    1            2
## 3291                2                     1                    2            2
## 3292                2                     1                    2            2
## 3293                1                     1                    1            1
## 3294                2                     2                    2            2
## 3295                2                     2                    2            2
## 3296                1                     1                    1            1
## 3297                2                     2                    2            2
## 3298                2                     1                    2            2
## 3299                2                     2                    2            2
## 3300                2                     2                    2            2
## 3301                2                     2                    2            2
## 3302                2                     1                    2            2
## 3303                2                     2                    2            2
## 3305                1                     1                    1            1
## 3306                1                     1                    1            1
## 3307                1                     2                    2            2
## 3308                2                     1                    1            1
## 3309                1                     1                    1            1
## 3310                2                     2                    2            2
## 3312                1                     1                    1            1
## 3313                1                     1                    1            1
## 3314                2                     1                    2            1
## 3315                1                     1                    1            1
## 3316                2                     1                    2            1
## 3317                1                     1                    1            1
## 3318                2                     2                    2            2
## 3319                1                     1                    1            1
## 3320                1                     1                    1            1
## 3321                1                     1                    1            1
## 3322                1                     1                    1            1
## 3323                2                     1                    2            2
## 3324                1                     1                    1            1
## 3325                2                     2                    2            2
## 3326                1                     1                    1            1
## 3327                2                     2                    2            2
## 3328                1                     1                    1            1
## 3330                1                     1                    1            1
## 3331                2                     2                    2            2
## 3332                1                     1                    1            1
## 3334                2                     1                    2            2
## 3335                2                     2                    2            2
## 3336                2                     2                    2            2
## 3337                2                     2                    2            1
## 3338                2                     2                    2            2
## 3339                1                     1                    1            1
## 3340                1                     1                    1            1
## 3341                1                     1                    1            1
## 3342                2                     2                    2            2
## 3343                1                     1                    1            1
## 3344                1                     1                    1            1
## 3346                2                     1                    2            2
## 3347                2                     1                    2            2
## 3348                2                     1                    2            2
## 3349                2                     1                    2            2
## 3350                2                     2                    2            2
## 3351                1                     1                    1            1
## 3352                2                     2                    1            1
## 3353                1                     1                    1            1
## 3354                2                     2                    2            2
## 3355                2                     2                    2            2
## 3356                2                     1                    2            2
## 3357                1                     1                    1            1
## 3358                2                     2                    2            2
## 3359                2                     1                    2            2
## 3360                2                     2                    2            2
## 3361                1                     1                    1            1
## 3362                2                     1                    2            2
## 3363                1                     1                    1            1
## 3364                1                     1                    1            1
## 3365                2                     2                    2            2
## 3366                1                     1                    1            1
## 3367                2                     1                    2            2
## 3368                2                     2                    2            2
## 3369                2                     1                    2            2
## 3370                2                     2                    2            2
## 3371                1                     1                    1            1
## 3372                2                     2                    2            2
## 3373                2                     2                    2            2
## 3374                2                     2                    2            2
## 3376                1                     1                    1            1
## 3377                2                     2                    2            2
## 3378                1                     1                    1            1
## 3379                1                     1                    1            1
## 3380                2                     2                    2            2
## 3381                2                     2                    2            2
## 3382                2                     1                    2            2
## 3383                2                     2                    2            2
## 3384                2                     2                    2            2
## 3385                2                     1                    2            2
## 3386                2                     2                    2            2
## 3387                2                     2                    2            2
## 3388                1                     1                    1            1
## 3389                2                     2                    2            1
## 3391                2                     2                    2            2
## 3392                1                     1                    1            1
## 3393                2                     2                    2            2
## 3394                2                     2                    2            2
## 3395                1                     1                    1            1
## 3396                1                     1                    1            1
## 3398                1                     1                    1            1
## 3399                1                     1                    1            1
## 3400                2                     1                    2            2
## 3401                1                     1                    1            1
## 3402                2                     2                    2            2
## 3403                2                     2                    2            2
## 3404                2                     2                    1            2
## 3405                1                     1                    1            1
## 3406                2                     2                    2            2
## 3407                1                     1                    1            1
## 3408                2                     2                    2            2
## 3409                1                     1                    1            1
## 3410                2                     1                    2            2
## 3411                2                     2                    2            2
## 3413                1                     1                    1            1
## 3414                2                     2                    2            2
## 3415                1                     1                    1            1
## 3416                2                     2                    2            2
## 3417                1                     1                    1            1
## 3418                2                     2                    2            2
## 3419                1                     1                    1            1
## 3422                2                     2                    2            2
## 3423                2                     2                    2            2
## 3424                1                     1                    1            1
## 3425                2                     1                    2            2
## 3426                2                     2                    2            2
## 3428                2                     1                    1            1
## 3429                1                     1                    1            1
## 3430                2                     2                    2            2
## 3431                2                     2                    2            2
## 3432                2                     2                    2            2
## 3433                1                     1                    1            1
## 3434                1                     1                    1            1
## 3435                1                     1                    1            1
## 3436                1                     1                    1            1
## 3437                2                     2                    2            2
## 3438                2                     2                    1            1
## 3439                1                     1                    1            1
## 3440                1                     1                    1            1
## 3441                2                     1                    1            1
## 3442                1                     1                    2            2
## 3443                1                     1                    1            1
## 3444                2                     1                    2            2
## 3445                2                     2                    2            2
## 3446                1                     1                    1            1
## 3447                2                     1                    2            2
## 3448                2                     2                    2            2
## 3449                2                     2                    2            2
## 3450                2                     2                    2            2
## 3451                2                     1                    2            2
## 3452                2                     1                    2            2
## 3453                2                     2                    2            2
## 3454                1                     1                    1            1
## 3455                2                     1                    2            2
## 3456                1                     1                    1            1
## 3457                1                     1                    1            1
## 3458                1                     1                    1            1
## 3459                1                     1                    1            1
## 3460                2                     2                    2            2
## 3461                1                     1                    1            1
## 3462                2                     1                    1            1
## 3463                1                     1                    1            1
## 3464                1                     1                    1            1
## 3465                1                     1                    1            1
## 3466                2                     2                    2            2
## 3467                1                     1                    1            1
## 3468                2                     1                    2            2
## 3469                1                     1                    1            1
## 3470                2                     2                    2            2
## 3471                2                     1                    2            2
## 3472                1                     1                    1            1
## 3473                1                     1                    1            1
## 3474                1                     1                    1            1
## 3476                1                     1                    1            1
## 3477                2                     2                    2            2
## 3478                1                     1                    1            1
## 3479                1                     1                    1            1
## 3480                1                     1                    1            1
## 3481                2                     1                    2            2
## 3483                1                     1                    1            1
## 3484                1                     1                    1            1
## 3485                1                     1                    1            1
## 3486                2                     2                    2            2
## 3487                1                     1                    1            1
## 3489                2                     2                    2            2
## 3490                2                     2                    2            2
## 3491                2                     2                    2            2
## 3492                1                     1                    1            1
## 3493                2                     1                    2            2
## 3494                2                     1                    2            2
## 3495                2                     2                    2            2
## 3496                1                     1                    1            1
## 3497                1                     1                    1            1
## 3498                2                     2                    2            2
## 3499                1                     1                    1            1
## 3500                1                     1                    1            1
## 3501                2                     2                    2            2
## 3502                2                     2                    2            2
## 3503                2                     2                    2            1
## 3504                2                     2                    2            2
## 3505                2                     2                    2            2
## 3506                2                     2                    2            2
## 3507                2                     2                    2            2
## 3508                1                     1                    1            1
## 3510                1                     1                    1            1
## 3511                1                     1                    1            1
## 3512                2                     2                    2            2
## 3513                2                     1                    2            2
## 3514                1                     1                    1            1
## 3515                1                     1                    1            1
## 3516                1                     1                    1            1
## 3517                2                     1                    2            2
## 3518                1                     1                    1            1
## 3519                2                     2                    2            2
## 3520                2                     2                    2            2
## 3521                1                     1                    1            1
## 3522                1                     1                    1            1
## 3523                2                     2                    2            2
## 3524                2                     1                    2            2
## 3525                2                     2                    2            2
## 3526                1                     1                    1            1
## 3527                1                     1                    1            1
## 3528                2                     1                    2            1
## 3529                2                     2                    2            2
## 3530                1                     1                    1            1
## 3531                2                     2                    2            2
## 3532                2                     1                    2            2
## 3533                1                     1                    1            1
## 3534                2                     2                    2            2
## 3535                1                     1                    1            1
## 3536                2                     2                    2            2
## 3537                1                     1                    1            1
## 3538                2                     2                    2            2
## 3539                1                     1                    1            1
## 3540                1                     1                    1            1
## 3541                2                     1                    2            1
## 3542                2                     2                    2            2
## 3544                2                     2                    2            2
## 3545                1                     1                    1            1
## 3546                1                     1                    1            1
## 3547                2                     1                    2            1
## 3548                2                     2                    2            2
## 3549                1                     1                    1            1
## 3550                2                     1                    2            1
## 3551                2                     1                    2            2
## 3552                1                     1                    1            1
## 3553                2                     2                    2            2
## 3554                2                     1                    2            2
## 3555                2                     1                    2            2
## 3556                1                     1                    1            1
## 3557                1                     1                    1            1
## 3558                2                     2                    2            2
## 3559                2                     2                    2            2
## 3560                1                     1                    1            1
## 3561                1                     1                    1            1
## 3562                2                     2                    2            2
## 3563                1                     1                    1            1
## 3564                1                     2                    2            2
## 3565                2                     1                    2            2
## 3567                2                     2                    2            2
## 3568                2                     2                    2            2
## 3569                2                     1                    2            1
## 3570                1                     1                    1            1
## 3571                2                     2                    2            2
## 3573                1                     1                    1            1
## 3574                1                     1                    1            1
## 3575                2                     1                    2            2
## 3576                1                     1                    1            1
## 3577                1                     1                    1            1
## 3578                1                     1                    1            1
## 3579                1                     1                    1            1
## 3580                1                     1                    1            1
## 3581                1                     1                    1            1
## 3582                2                     2                    2            2
## 3583                2                     2                    1            1
## 3584                2                     2                    2            2
## 3585                2                     2                    2            2
## 3586                2                     1                    2            2
## 3587                1                     1                    1            1
## 3588                1                     1                    1            1
## 3589                1                     1                    1            1
## 3590                1                     1                    1            1
## 3591                2                     1                    2            2
## 3592                2                     2                    2            2
## 3593                2                     2                    2            2
## 3594                1                     1                    1            1
## 3595                2                     2                    2            2
## 3596                1                     1                    1            1
## 3597                2                     2                    2            2
## 3598                1                     1                    1            1
## 3599                1                     1                    1            1
## 3600                2                     1                    2            2
## 3601                1                     1                    1            1
## 3602                1                     1                    1            1
## 3603                2                     2                    2            2
## 3604                1                     1                    1            1
## 3605                1                     1                    1            1
## 3606                1                     1                    1            1
## 3607                1                     1                    1            1
## 3608                2                     1                    1            2
## 3609                1                     1                    1            1
## 3610                2                     2                    2            2
## 3611                2                     2                    2            2
## 3612                2                     1                    2            2
## 3613                2                     2                    2            2
## 3614                2                     2                    2            2
## 3615                1                     1                    1            1
## 3616                1                     1                    1            1
## 3617                1                     1                    1            1
## 3618                1                     1                    1            1
## 3619                2                     2                    2            2
## 3620                2                     2                    2            2
## 3621                1                     1                    1            1
## 3622                1                     1                    1            1
## 3623                2                     2                    1            1
## 3624                2                     2                    2            2
## 3625                1                     1                    1            1
## 3627                2                     2                    2            2
## 3628                2                     2                    2            2
## 3629                1                     1                    1            1
## 3630                2                     2                    2            2
## 3631                2                     2                    2            2
## 3632                1                     1                    1            1
## 3633                2                     1                    2            2
## 3634                2                     1                    2            2
## 3635                2                     1                    2            2
## 3637                1                     1                    1            1
## 3638                1                     1                    1            1
## 3639                2                     2                    2            2
## 3640                2                     2                    2            1
## 3641                2                     2                    2            2
## 3642                2                     2                    2            2
## 3643                2                     2                    2            2
## 3644                2                     2                    2            1
## 3645                2                     1                    2            2
## 3646                2                     2                    2            2
## 3647                1                     1                    2            2
## 3648                2                     1                    2            2
## 3649                1                     1                    1            1
## 3650                1                     1                    1            1
## 3652                1                     1                    1            1
## 3653                1                     1                    1            1
## 3654                1                     1                    1            1
## 3655                1                     1                    1            1
## 3656                2                     1                    2            2
## 3657                2                     1                    2            1
## 3658                2                     2                    2            1
## 3659                1                     1                    1            1
## 3660                2                     1                    2            2
## 3661                2                     2                    2            1
## 3662                1                     1                    1            1
## 3663                2                     1                    2            2
## 3664                2                     2                    2            2
## 3665                1                     1                    1            1
## 3667                2                     1                    2            2
## 3668                1                     1                    1            1
## 3670                1                     1                    1            1
## 3671                1                     1                    1            1
## 3672                1                     1                    1            1
## 3673                1                     2                    2            1
## 3674                1                     1                    1            1
## 3675                1                     1                    1            1
## 3676                2                     1                    2            2
## 3677                1                     1                    1            1
## 3678                2                     2                    1            1
## 3679                1                     1                    1            1
## 3680                2                     2                    2            2
## 3681                2                     2                    2            2
## 3682                2                     2                    2            2
## 3683                2                     1                    2            2
## 3684                2                     2                    2            2
## 3685                2                     2                    2            2
## 3686                1                     1                    1            1
## 3687                1                     1                    1            1
## 3688                2                     2                    2            2
## 3689                2                     2                    2            2
## 3690                1                     1                    1            1
## 3691                1                     1                    1            1
## 3692                2                     2                    2            2
## 3694                2                     2                    2            2
## 3695                2                     2                    2            2
## 3696                2                     1                    2            2
## 3697                2                     2                    2            2
## 3698                2                     2                    2            2
## 3699                2                     2                    2            2
## 3700                1                     1                    1            1
## 3701                1                     1                    1            1
## 3702                1                     1                    1            1
## 3703                2                     2                    2            2
## 3704                2                     1                    2            1
## 3706                1                     1                    1            1
## 3707                2                     1                    2            2
## 3708                2                     2                    2            2
## 3709                2                     2                    2            2
## 3710                2                     1                    2            2
## 3711                1                     1                    1            1
## 3712                2                     2                    2            2
## 3713                2                     1                    2            2
## 3714                1                     1                    1            1
## 3715                2                     2                    2            1
## 3716                2                     2                    2            2
## 3717                2                     1                    2            2
## 3718                2                     2                    2            2
## 3719                1                     1                    1            1
## 3720                1                     1                    1            1
## 3721                1                     1                    1            1
## 3722                2                     1                    2            2
## 3723                2                     2                    2            2
## 3724                1                     1                    1            1
## 3725                1                     1                    1            1
## 3726                1                     1                    1            1
## 3727                2                     2                    2            2
## 3728                1                     1                    1            1
## 3729                2                     2                    2            1
## 3730                1                     1                    1            1
## 3731                1                     1                    1            1
## 3732                1                     1                    1            1
## 3733                2                     2                    2            2
## 3734                2                     2                    2            2
## 3736                1                     1                    1            1
## 3737                2                     1                    2            2
## 3738                1                     1                    1            1
## 3739                1                     1                    1            1
## 3740                1                     1                    1            1
## 3741                1                     1                    1            1
## 3742                1                     1                    1            1
## 3743                2                     1                    2            2
## 3744                2                     2                    2            2
## 3745                2                     1                    2            2
## 3746                2                     2                    2            2
## 3747                2                     2                    2            2
## 3748                1                     1                    1            1
## 3749                2                     2                    2            2
## 3750                1                     1                    1            1
## 3751                2                     1                    2            2
## 3752                1                     1                    1            1
## 3753                1                     1                    1            1
## 3754                2                     2                    2            2
## 3755                2                     1                    2            1
## 3756                1                     1                    1            1
## 3757                2                     1                    2            2
## 3758                1                     1                    1            1
## 3759                2                     1                    2            2
## 3760                2                     2                    2            2
## 3761                1                     1                    1            1
## 3762                1                     1                    1            1
## 3763                2                     2                    2            2
## 3764                2                     1                    2            2
## 3765                1                     1                    1            1
## 3766                2                     2                    2            2
## 3767                1                     1                    1            1
## 3768                2                     1                    2            2
## 3769                2                     1                    2            2
## 3770                1                     1                    1            1
## 3771                2                     2                    2            2
## 3774                1                     1                    1            1
## 3775                2                     2                    2            1
## 3776                1                     1                    1            1
## 3777                2                     2                    2            2
## 3778                1                     1                    1            1
## 3779                2                     2                    2            2
## 3780                2                     2                    2            2
## 3781                2                     2                    2            2
## 3782                1                     1                    1            1
## 3783                2                     2                    2            2
## 3784                2                     2                    2            2
## 3785                1                     1                    1            1
## 3786                2                     2                    1            2
## 3787                1                     1                    1            1
## 3788                2                     1                    2            2
## 3789                1                     1                    1            1
## 3790                2                     2                    2            1
## 3791                2                     2                    2            2
## 3792                2                     2                    2            1
## 3793                1                     1                    1            1
## 3794                1                     1                    1            1
## 3795                2                     2                    2            2
## 3796                2                     2                    2            2
## 3797                2                     2                    2            2
## 3798                1                     1                    1            1
## 3800                1                     1                    1            1
## 3801                1                     1                    1            1
## 3802                2                     1                    2            2
## 3803                2                     2                    2            2
## 3804                2                     1                    2            2
## 3806                2                     1                    2            2
## 3807                1                     1                    1            1
## 3808                2                     2                    2            2
## 3809                1                     1                    1            1
## 3810                2                     2                    1            2
## 3811                2                     1                    2            2
## 3812                1                     1                    1            1
## 3813                2                     1                    2            2
## 3814                2                     2                    2            2
## 3815                1                     1                    1            1
## 3816                1                     1                    1            1
## 3817                1                     1                    1            1
## 3818                1                     1                    1            1
## 3819                2                     2                    2            2
## 3820                1                     1                    1            1
## 3821                2                     2                    2            2
## 3822                2                     2                    2            2
## 3823                2                     2                    2            2
## 3824                1                     1                    1            1
## 3825                1                     1                    1            1
## 3826                2                     2                    2            1
## 3827                2                     2                    1            2
## 3828                2                     1                    2            2
## 3829                1                     1                    1            1
## 3830                2                     2                    2            2
## 3831                2                     2                    2            2
## 3832                1                     1                    1            1
## 3833                1                     1                    1            1
## 3834                2                     2                    2            2
## 3835                2                     2                    2            2
## 3836                1                     1                    1            1
## 3837                2                     2                    2            2
## 3838                2                     1                    2            2
## 3839                2                     2                    2            2
## 3840                1                     1                    1            1
## 3841                2                     2                    1            1
## 3842                2                     1                    2            2
## 3843                1                     1                    1            1
## 3844                2                     1                    2            2
## 3846                1                     1                    1            1
## 3847                2                     2                    2            2
## 3848                1                     1                    1            1
## 3849                2                     1                    2            2
## 3850                2                     1                    2            2
## 3851                2                     2                    2            2
## 3852                2                     2                    2            2
## 3853                1                     1                    1            1
## 3854                1                     1                    1            1
## 3855                2                     2                    2            2
## 3856                1                     1                    1            1
## 3857                2                     2                    2            2
## 3858                1                     1                    1            1
## 3859                2                     1                    2            2
## 3860                2                     2                    2            1
## 3861                2                     2                    2            2
## 3862                2                     2                    2            2
## 3863                2                     2                    2            2
## 3864                1                     1                    1            1
## 3865                2                     2                    2            2
## 3866                2                     2                    2            2
## 3867                2                     2                    2            2
## 3868                1                     1                    1            1
## 3869                1                     1                    1            1
## 3870                1                     1                    1            1
## 3871                2                     1                    2            2
## 3872                2                     1                    2            1
## 3873                2                     1                    2            2
## 3874                1                     1                    1            1
## 3875                1                     1                    1            1
## 3876                2                     2                    2            2
## 3877                2                     1                    2            2
## 3878                1                     1                    1            1
## 3879                2                     1                    2            2
## 3880                1                     1                    1            1
## 3881                2                     1                    2            2
## 3882                2                     1                    2            2
## 3883                2                     2                    2            2
## 3884                1                     1                    1            1
## 3885                1                     1                    1            1
## 3886                2                     1                    2            2
## 3887                2                     2                    2            2
## 3888                2                     2                    2            2
## 3889                2                     1                    2            2
## 3890                2                     2                    2            1
## 3891                2                     1                    2            2
## 3892                1                     1                    1            1
## 3893                2                     1                    2            2
## 3894                2                     2                    2            2
## 3895                1                     1                    1            1
## 3896                2                     2                    2            2
## 3897                1                     1                    1            1
## 3898                2                     2                    2            2
## 3899                1                     1                    1            1
## 3900                2                     2                    1            1
## 3902                2                     2                    2            2
## 3903                2                     2                    2            2
## 3904                2                     2                    2            2
## 3905                2                     1                    2            2
## 3906                1                     1                    1            1
## 3907                2                     2                    2            2
## 3908                2                     2                    2            2
## 3909                2                     2                    2            2
## 3910                1                     1                    1            1
## 3911                1                     1                    1            1
## 3912                2                     2                    2            2
## 3913                2                     2                    2            2
## 3914                1                     1                    1            1
## 3915                2                     1                    2            2
## 3916                1                     1                    1            1
## 3917                2                     2                    2            2
## 3918                1                     1                    1            1
## 3919                2                     2                    2            2
## 3920                1                     1                    1            1
## 3921                1                     1                    1            1
## 3922                1                     1                    1            1
## 3923                2                     1                    2            2
## 3924                1                     1                    1            1
## 3925                1                     1                    1            1
## 3926                1                     1                    1            1
## 3927                2                     2                    2            1
## 3928                1                     1                    1            1
## 3929                2                     2                    2            2
## 3930                1                     1                    1            1
## 3931                2                     1                    2            2
## 3932                2                     1                    1            1
## 3933                2                     2                    2            2
## 3934                2                     2                    2            2
## 3935                1                     1                    1            1
## 3936                1                     1                    1            1
## 3937                2                     1                    2            2
## 3939                2                     2                    2            2
## 3940                2                     2                    2            1
## 3941                1                     1                    1            1
## 3943                1                     1                    1            1
## 3944                1                     1                    1            1
## 3945                1                     1                    1            1
## 3946                1                     1                    1            1
## 3947                2                     2                    2            2
## 3949                2                     2                    2            2
## 3950                2                     1                    2            2
## 3952                1                     1                    1            1
## 3953                1                     1                    1            1
## 3954                2                     2                    2            2
## 3955                1                     1                    1            1
## 3957                2                     2                    2            2
## 3958                1                     1                    1            1
## 3959                2                     2                    1            2
## 3960                1                     1                    1            1
## 3961                2                     2                    2            2
## 3962                1                     1                    1            1
## 3963                2                     1                    2            2
## 3964                1                     1                    1            1
## 3965                1                     1                    1            1
## 3966                2                     2                    2            1
## 3967                2                     2                    1            1
## 3968                1                     1                    1            1
## 3969                2                     1                    2            2
## 3970                2                     2                    2            2
## 3971                2                     1                    2            2
## 3972                1                     1                    1            1
## 3973                2                     2                    2            2
## 3974                1                     1                    1            1
## 3975                2                     1                    2            2
## 3976                1                     1                    1            1
## 3978                1                     1                    1            1
## 3979                2                     2                    2            2
## 3980                2                     2                    2            2
## 3981                1                     1                    1            1
## 3982                1                     1                    1            1
## 3983                2                     1                    2            2
## 3984                2                     1                    2            2
## 3985                1                     1                    1            1
## 3986                2                     2                    2            2
## 3987                1                     1                    1            1
## 3988                1                     1                    1            1
## 3989                1                     1                    1            1
## 3990                1                     1                    1            1
## 3991                2                     2                    2            2
## 3992                2                     1                    2            2
## 3993                2                     1                    2            2
## 3994                2                     2                    2            2
## 3995                2                     2                    2            2
## 3996                1                     1                    1            1
## 3997                1                     1                    1            1
## 3998                1                     1                    1            1
## 3999                2                     2                    2            2
## 4000                2                     2                    2            1
## 4001                1                     1                    1            1
## 4002                1                     1                    1            1
## 4003                2                     2                    2            2
## 4004                1                     1                    1            1
## 4005                2                     2                    2            2
## 4006                1                     1                    1            1
## 4007                1                     1                    1            1
## 4008                1                     1                    1            1
## 4009                1                     1                    1            1
## 4010                2                     2                    2            2
## 4011                1                     1                    1            1
## 4012                2                     1                    2            2
## 4013                2                     1                    2            2
## 4014                2                     2                    2            2
## 4015                1                     1                    1            1
## 4016                2                     2                    2            2
## 4017                1                     1                    1            1
## 4018                1                     1                    1            1
## 4019                2                     1                    2            2
## 4020                2                     1                    2            2
## 4021                2                     2                    2            2
## 4022                1                     2                    2            2
## 4023                2                     2                    2            2
## 4024                1                     1                    1            1
## 4025                2                     2                    2            2
## 4026                1                     1                    1            1
## 4027                2                     2                    2            2
## 4028                1                     1                    1            1
## 4029                1                     1                    1            1
## 4030                1                     1                    1            1
## 4031                2                     2                    2            2
## 4032                2                     2                    2            2
## 4033                2                     1                    2            2
## 4034                1                     1                    1            1
## 4035                2                     2                    2            2
## 4036                2                     2                    2            2
## 4037                1                     1                    1            1
## 4038                2                     2                    2            2
## 4039                1                     1                    1            1
## 4040                1                     1                    1            1
## 4041                2                     2                    2            2
## 4042                1                     1                    1            1
## 4043                2                     2                    2            2
## 4044                2                     1                    2            2
## 4046                2                     1                    2            2
## 4047                2                     2                    2            1
## 4048                1                     1                    1            1
## 4049                2                     2                    2            2
## 4050                2                     2                    2            2
## 4051                1                     1                    1            1
## 4052                1                     1                    1            1
## 4053                2                     2                    2            2
## 4054                1                     1                    1            1
## 4055                2                     2                    2            2
## 4056                1                     1                    1            1
## 4057                1                     1                    1            1
## 4058                1                     1                    1            1
## 4061                1                     1                    1            1
## 4062                1                     1                    1            1
## 4063                1                     1                    1            1
## 4064                1                     1                    1            1
## 4065                1                     1                    1            1
## 4067                2                     2                    2            2
## 4068                1                     1                    1            1
## 4069                1                     1                    1            1
## 4070                2                     1                    2            2
## 4071                2                     2                    2            2
## 4072                2                     1                    1            1
## 4073                2                     2                    2            2
## 4074                2                     2                    2            2
## 4075                2                     2                    2            2
## 4076                2                     1                    2            1
## 4077                2                     2                    2            2
## 4078                2                     1                    2            2
## 4079                1                     1                    1            1
## 4080                2                     2                    2            2
## 4081                1                     1                    1            1
## 4082                2                     2                    2            2
## 4083                1                     1                    1            1
## 4084                2                     1                    2            2
## 4085                2                     1                    2            2
## 4086                1                     1                    1            1
## 4087                2                     1                    2            2
## 4088                2                     2                    2            2
## 4089                2                     2                    2            1
## 4090                1                     1                    1            1
## 4091                2                     2                    2            2
## 4092                2                     2                    1            2
## 4094                2                     2                    2            2
## 4095                2                     1                    2            2
## 4096                1                     1                    1            1
## 4097                2                     1                    2            2
## 4098                1                     1                    1            1
## 4099                1                     1                    1            1
## 4100                1                     1                    1            1
## 4101                2                     2                    2            2
## 4102                2                     2                    1            2
## 4103                2                     2                    2            2
## 4104                1                     1                    1            1
## 4105                1                     1                    1            1
## 4106                1                     1                    1            1
## 4107                2                     2                    2            2
## 4108                2                     1                    2            2
## 4109                1                     1                    1            1
## 4111                1                     1                    1            1
## 4112                1                     1                    1            1
## 4113                1                     1                    1            1
## 4114                1                     1                    1            1
## 4115                1                     1                    1            1
## 4116                2                     1                    2            2
## 4117                2                     2                    2            2
## 4118                1                     1                    1            1
## 4119                1                     1                    1            1
## 4121                2                     1                    2            2
## 4122                1                     1                    1            1
## 4123                1                     1                    1            1
## 4124                1                     1                    1            1
## 4126                1                     1                    1            1
## 4127                2                     1                    2            2
## 4130                1                     1                    1            1
## 4131                1                     1                    1            1
## 4133                1                     1                    1            1
## 4134                2                     2                    2            2
## 4135                1                     1                    1            1
## 4136                1                     1                    1            1
## 4137                2                     2                    2            2
## 4138                2                     2                    2            2
## 4139                1                     1                    1            1
## 4140                1                     1                    1            1
## 4141                2                     2                    2            2
## 4142                1                     1                    1            1
## 4143                1                     1                    1            1
## 4144                2                     2                    2            2
## 4145                2                     2                    2            2
## 4146                1                     1                    1            1
## 4147                2                     1                    2            2
## 4148                1                     1                    1            1
## 4149                2                     1                    2            2
## 4150                1                     1                    1            1
## 4151                2                     2                    2            2
## 4152                1                     1                    1            1
## 4153                1                     1                    1            1
## 4154                1                     1                    1            1
## 4155                1                     1                    1            1
## 4156                2                     2                    2            2
## 4157                1                     1                    1            1
## 4158                1                     1                    1            1
## 4159                2                     2                    2            2
## 4160                2                     2                    2            1
## 4161                1                     1                    1            1
## 4162                2                     1                    2            2
## 4163                1                     1                    1            1
## 4164                1                     1                    1            1
## 4165                1                     1                    1            1
## 4166                1                     1                    1            1
## 4167                2                     2                    2            2
## 4168                1                     1                    1            1
## 4169                1                     1                    1            1
## 4170                1                     1                    1            1
## 4171                2                     2                    2            2
## 4172                2                     2                    2            1
## 4173                1                     1                    1            1
## 4174                1                     1                    1            1
## 4175                1                     1                    1            1
## 4176                2                     1                    2            2
## 4177                2                     1                    2            2
## 4178                1                     1                    1            1
## 4179                1                     1                    1            1
## 4180                1                     2                    1            2
## 4181                2                     2                    2            2
## 4182                2                     2                    2            2
## 4183                1                     1                    1            1
## 4184                2                     1                    2            2
## 4185                2                     1                    2            2
## 4186                1                     1                    1            1
## 4187                2                     2                    1            1
## 4188                1                     1                    1            1
## 4189                1                     1                    1            1
## 4190                1                     1                    1            1
## 4191                2                     2                    2            2
## 4192                2                     2                    2            2
## 4193                1                     1                    1            1
## 4194                2                     1                    2            2
## 4195                2                     2                    2            1
## 4196                2                     2                    2            2
## 4197                1                     1                    1            1
## 4198                1                     1                    1            1
## 4199                2                     1                    2            2
## 4200                1                     1                    1            1
## 4201                1                     1                    1            1
## 4202                1                     1                    1            1
## 4203                1                     1                    1            1
## 4204                2                     1                    2            2
## 4205                1                     1                    1            1
## 4206                1                     1                    1            1
## 4207                2                     2                    2            2
## 4209                2                     2                    2            2
## 4211                1                     1                    1            1
## 4212                1                     1                    1            1
## 4213                1                     1                    1            1
## 4214                1                     1                    1            1
## 4215                1                     1                    1            1
## 4216                1                     1                    1            1
## 4217                1                     1                    1            1
## 4218                1                     2                    2            1
## 4220                2                     2                    1            2
## 4221                2                     2                    2            2
## 4222                1                     1                    1            1
## 4223                1                     1                    1            1
## 4224                1                     1                    1            1
## 4225                1                     1                    1            1
## 4226                1                     1                    1            1
## 4227                1                     1                    1            1
## 4228                1                     1                    1            1
## 4229                2                     2                    2            2
## 4230                1                     1                    1            1
## 4232                2                     1                    2            2
## 4233                1                     1                    1            1
## 4234                2                     1                    2            2
## 4235                2                     1                    2            2
## 4236                2                     2                    2            2
## 4237                1                     1                    1            1
## 4238                1                     1                    1            1
## 4239                1                     1                    1            1
## 4240                1                     1                    1            1
## 4241                2                     2                    2            2
## 4242                1                     1                    1            1
## 4243                1                     1                    1            1
## 4244                1                     1                    1            1
## 4245                2                     2                    2            2
## 4246                2                     1                    2            2
## 4247                2                     2                    2            2
## 4248                2                     2                    2            2
## 4249                2                     2                    2            2
## 4250                1                     1                    1            1
## 4251                1                     1                    1            1
## 4252                2                     2                    2            2
## 4253                1                     1                    1            1
## 4254                1                     1                    1            1
## 4255                1                     1                    1            1
## 4257                2                     1                    2            2
## 4258                2                     1                    2            2
## 4259                1                     1                    1            1
## 4260                2                     2                    2            1
## 4261                2                     2                    2            2
## 4262                2                     2                    2            2
## 4263                2                     1                    2            2
## 4264                1                     1                    1            1
## 4265                2                     2                    2            2
## 4266                1                     1                    1            1
## 4267                1                     1                    1            1
## 4268                2                     1                    2            2
## 4269                2                     1                    2            2
## 4270                2                     2                    2            2
## 4271                1                     1                    1            1
## 4272                1                     1                    1            1
## 4273                2                     2                    2            2
## 4275                1                     1                    1            1
## 4276                2                     2                    1            1
## 4277                1                     1                    1            1
## 4278                2                     1                    2            2
## 4279                2                     2                    2            2
## 4280                2                     2                    2            2
## 4282                1                     1                    1            1
## 4283                1                     1                    1            1
## 4285                1                     1                    1            1
## 4286                1                     1                    1            1
## 4287                2                     1                    2            2
## 4288                2                     2                    2            2
## 4289                1                     1                    1            1
## 4290                2                     2                    2            1
## 4291                1                     1                    1            1
## 4292                1                     1                    1            1
## 4293                1                     1                    1            1
## 4294                1                     1                    1            1
## 4295                2                     1                    2            2
## 4296                2                     1                    2            2
## 4297                1                     1                    1            1
## 4298                2                     2                    2            1
## 4299                1                     1                    1            1
## 4300                2                     2                    2            2
## 4301                1                     1                    1            1
## 4302                2                     2                    2            2
## 4303                1                     1                    1            1
## 4304                2                     2                    2            2
## 4305                2                     1                    2            2
## 4306                1                     1                    1            1
## 4307                2                     2                    2            2
## 4308                1                     1                    1            1
## 4309                1                     1                    1            1
## 4310                1                     1                    1            1
## 4311                1                     1                    1            1
## 4312                1                     1                    1            1
## 4313                2                     1                    2            2
## 4314                1                     1                    1            1
## 4315                2                     2                    2            2
## 4316                1                     1                    1            1
## 4317                1                     1                    1            1
## 4318                2                     2                    2            1
## 4319                2                     2                    2            2
## 4320                2                     1                    2            2
## 4321                2                     2                    1            2
## 4322                2                     1                    2            2
## 4323                2                     2                    2            2
## 4324                2                     1                    2            2
## 4325                2                     2                    2            2
## 4326                2                     1                    2            1
## 4327                1                     1                    1            1
## 4328                2                     1                    2            1
## 4329                1                     1                    1            1
## 4330                1                     1                    1            1
## 4331                2                     1                    2            2
## 4332                1                     1                    1            1
## 4333                1                     1                    1            1
## 4334                2                     2                    2            2
## 4335                2                     1                    2            1
## 4336                1                     1                    1            1
## 4337                1                     1                    1            1
## 4338                1                     1                    1            1
## 4339                2                     2                    2            2
## 4340                2                     2                    2            2
## 4341                2                     2                    2            2
## 4342                1                     1                    1            1
## 4343                1                     1                    1            1
## 4344                1                     1                    1            1
## 4345                1                     1                    1            1
## 4346                1                     1                    1            1
## 4347                2                     2                    1            2
## 4348                1                     1                    1            1
## 4349                1                     1                    1            1
## 4350                1                     1                    1            1
## 4351                1                     1                    1            1
## 4352                2                     2                    2            2
## 4353                1                     1                    1            1
## 4354                1                     1                    1            1
## 4355                1                     1                    1            1
## 4356                1                     1                    1            1
## 4357                1                     1                    1            1
## 4358                2                     1                    2            2
## 4359                1                     1                    1            1
## 4360                2                     2                    2            2
## 4361                2                     2                    2            2
## 4362                2                     1                    2            2
## 4363                2                     1                    2            2
## 4364                2                     1                    2            2
## 4365                1                     1                    1            1
## 4366                1                     1                    1            1
## 4367                1                     1                    1            1
## 4368                2                     1                    2            2
## 4369                2                     2                    2            2
## 4370                2                     1                    2            2
## 4371                1                     1                    1            1
## 4372                1                     1                    1            1
## 4373                1                     1                    1            1
## 4374                1                     1                    1            1
## 4375                1                     1                    1            1
## 4376                2                     2                    2            2
## 4377                2                     1                    2            1
## 4378                2                     1                    2            2
## 4379                1                     1                    1            1
## 4380                1                     1                    1            1
## 4381                1                     1                    1            1
## 4383                2                     2                    2            2
## 4384                2                     2                    2            2
## 4385                2                     2                    2            2
## 4386                2                     2                    2            2
## 4387                1                     1                    1            1
## 4388                2                     2                    2            2
## 4389                1                     1                    1            1
## 4390                2                     2                    2            2
## 4391                2                     2                    2            2
## 4392                1                     1                    1            1
## 4393                1                     1                    1            1
## 4394                2                     1                    2            2
## 4395                2                     1                    2            2
## 4396                1                     1                    1            1
## 4397                2                     1                    2            2
## 4398                2                     2                    2            2
## 4400                2                     2                    2            2
## 4401                2                     1                    2            2
## 4402                1                     1                    1            1
## 4403                2                     2                    1            2
## 4404                1                     1                    1            1
## 4405                2                     1                    2            2
## 4406                2                     1                    2            2
## 4407                2                     2                    2            2
## 4408                1                     1                    1            1
## 4409                1                     1                    1            1
## 4410                2                     2                    2            2
## 4411                2                     2                    2            2
## 4412                2                     2                    2            2
## 4413                2                     2                    2            2
## 4414                1                     1                    1            1
## 4415                1                     1                    1            1
## 4416                1                     1                    1            1
## 4417                1                     1                    1            1
## 4419                1                     1                    1            1
## 4420                2                     1                    2            2
## 4421                2                     1                    2            2
## 4422                2                     2                    2            2
## 4423                2                     2                    2            2
## 4424                1                     1                    1            1
## 4425                2                     2                    2            2
## 4426                2                     2                    2            2
## 4427                2                     2                    2            2
## 4428                1                     1                    1            1
## 4429                2                     2                    2            2
## 4430                2                     1                    2            2
## 4431                2                     2                    2            2
## 4432                2                     1                    2            2
## 4433                2                     1                    2            2
## 4434                2                     2                    2            1
## 4435                1                     1                    1            1
## 4436                2                     2                    2            2
## 4437                2                     1                    2            2
## 4438                1                     1                    1            1
## 4439                2                     2                    2            2
## 4440                1                     1                    1            1
## 4441                1                     1                    1            1
## 4442                2                     2                    2            2
## 4443                1                     1                    1            1
## 4444                1                     1                    1            1
## 4445                1                     1                    1            1
## 4446                2                     1                    2            2
## 4447                2                     2                    2            1
## 4448                1                     1                    1            1
## 4449                1                     1                    1            1
## 4450                1                     1                    1            1
## 4451                1                     1                    1            1
## 4452                2                     2                    2            2
## 4453                1                     1                    1            1
## 4454                2                     1                    1            2
## 4455                1                     1                    1            1
## 4456                1                     1                    1            1
## 4457                1                     1                    1            1
## 4458                1                     1                    1            1
## 4459                2                     1                    2            2
## 4460                1                     1                    1            1
## 4461                2                     2                    2            2
## 4462                2                     2                    2            1
## 4463                1                     1                    1            1
## 4464                1                     1                    1            1
## 4465                2                     2                    2            2
## 4466                1                     1                    1            1
## 4467                2                     1                    2            2
## 4468                1                     1                    1            1
## 4469                2                     2                    2            2
## 4471                2                     1                    2            2
## 4472                2                     2                    2            2
## 4473                2                     2                    2            2
## 4474                1                     1                    1            1
## 4475                1                     1                    1            1
## 4476                1                     1                    1            1
## 4477                1                     1                    1            1
## 4478                1                     1                    1            1
## 4479                2                     2                    2            2
## 4480                1                     1                    1            1
## 4481                1                     1                    1            1
## 4482                1                     1                    1            1
## 4483                1                     1                    1            1
## 4485                1                     1                    1            1
## 4486                1                     1                    1            1
## 4487                1                     1                    1            1
## 4488                2                     2                    2            2
## 4489                2                     2                    2            2
## 4490                1                     1                    1            1
## 4491                2                     2                    2            2
## 4492                2                     1                    2            2
## 4493                2                     2                    2            2
## 4494                1                     1                    1            1
## 4495                1                     1                    1            1
## 4496                1                     1                    1            1
## 4497                2                     2                    2            1
## 4498                1                     1                    1            1
## 4499                2                     1                    2            2
## 4500                2                     1                    2            2
## 4501                2                     1                    2            2
## 4502                2                     2                    2            2
## 4504                1                     1                    1            1
## 4505                1                     1                    1            1
## 4506                1                     1                    1            1
## 4507                2                     2                    2            2
## 4508                2                     2                    2            2
## 4509                2                     2                    2            2
## 4510                2                     2                    2            2
## 4511                1                     1                    1            1
## 4512                2                     2                    2            2
## 4513                2                     2                    2            2
## 4514                2                     1                    2            2
## 4515                2                     2                    2            2
## 4516                2                     2                    2            2
## 4517                1                     1                    1            1
## 4518                2                     1                    2            2
## 4519                1                     1                    1            1
## 4520                1                     1                    1            1
## 4521                1                     1                    1            1
## 4522                2                     2                    2            2
## 4523                2                     2                    2            2
## 4524                2                     2                    2            1
## 4525                2                     2                    2            2
## 4526                1                     1                    1            1
## 4528                2                     2                    2            2
## 4529                1                     1                    1            1
## 4530                1                     1                    1            1
## 4531                1                     1                    1            1
## 4532                1                     1                    1            1
## 4533                1                     1                    1            1
## 4534                2                     2                    2            2
## 4535                2                     1                    2            2
## 4536                1                     1                    1            1
## 4537                2                     2                    2            2
## 4538                2                     2                    2            2
## 4539                2                     2                    2            2
## 4540                1                     1                    1            1
## 4541                1                     1                    1            1
## 4542                1                     1                    1            1
## 4543                2                     1                    2            2
## 4545                1                     1                    1            1
## 4546                2                     1                    2            2
## 4547                1                     1                    1            1
## 4548                1                     1                    1            1
## 4549                2                     2                    2            2
## 4550                1                     1                    1            1
## 4551                1                     1                    1            1
## 4552                2                     2                    2            2
## 4553                1                     1                    1            1
## 4554                1                     1                    1            1
## 4555                2                     2                    2            2
## 4556                2                     2                    2            2
## 4557                2                     2                    2            2
## 4558                2                     2                    2            2
## 4559                1                     1                    1            1
## 4560                2                     2                    2            1
## 4561                1                     1                    1            1
## 4562                1                     1                    1            1
## 4563                2                     2                    2            2
## 4564                2                     2                    2            2
## 4565                2                     2                    2            2
## 4566                2                     2                    2            2
## 4567                2                     2                    2            2
## 4568                2                     1                    2            2
## 4569                1                     1                    1            1
## 4570                1                     1                    1            1
## 4571                1                     1                    1            1
## 4572                1                     1                    1            1
## 4573                2                     2                    2            2
## 4574                2                     1                    2            2
## 4575                2                     1                    2            2
## 4577                1                     1                    1            1
## 4578                1                     1                    1            1
## 4579                2                     1                    1            1
## 4580                1                     1                    1            1
## 4581                1                     1                    1            1
## 4582                1                     1                    1            1
## 4583                2                     2                    2            2
## 4584                1                     1                    1            1
## 4585                2                     2                    2            2
## 4586                1                     1                    1            1
## 4587                2                     2                    2            2
## 4588                2                     1                    2            2
## 4589                2                     2                    2            2
## 4590                1                     1                    1            1
## 4591                2                     2                    2            2
## 4592                2                     2                    1            1
## 4593                2                     2                    2            2
## 4594                2                     2                    2            2
## 4595                2                     2                    1            2
## 4596                1                     1                    1            1
## 4597                1                     1                    1            1
## 4598                2                     2                    2            2
## 4599                1                     1                    1            1
## 4600                2                     2                    2            2
## 4601                1                     1                    1            1
## 4602                1                     1                    1            1
## 4603                2                     1                    2            2
## 4604                2                     1                    2            2
## 4605                2                     2                    2            2
## 4606                1                     1                    1            1
## 4607                1                     1                    1            1
## 4608                2                     1                    2            2
## 4609                1                     1                    1            1
## 4610                1                     1                    1            1
## 4611                2                     2                    2            2
## 4612                2                     2                    1            1
## 4615                2                     2                    2            2
## 4616                2                     2                    2            2
## 4617                1                     1                    1            1
## 4618                2                     2                    2            2
## 4619                2                     1                    2            2
## 4620                2                     1                    2            2
## 4621                1                     1                    1            1
## 4622                1                     1                    1            1
## 4623                1                     1                    1            1
## 4624                2                     1                    2            1
## 4625                1                     1                    1            1
## 4626                1                     1                    1            1
## 4627                2                     2                    2            2
## 4628                1                     1                    1            1
## 4629                1                     1                    1            1
## 4630                2                     2                    2            2
## 4631                1                     1                    1            1
## 4633                1                     1                    1            1
## 4634                1                     1                    1            1
## 4635                1                     1                    1            1
## 4636                2                     2                    2            2
## 4637                1                     1                    1            1
## 4638                2                     2                    2            2
## 4639                2                     2                    1            1
## 4640                2                     1                    2            2
## 4641                1                     1                    1            1
## 4642                2                     2                    2            2
## 4643                2                     2                    2            2
## 4644                2                     2                    2            1
## 4645                1                     1                    1            1
## 4646                2                     2                    2            2
## 4647                2                     2                    2            2
## 4648                2                     2                    2            2
## 4649                1                     1                    1            1
## 4650                2                     2                    2            2
## 4651                1                     1                    1            1
## 4652                2                     2                    2            2
## 4654                1                     1                    1            1
## 4655                1                     1                    1            1
## 4657                1                     1                    1            1
## 4658                2                     2                    2            2
## 4660                2                     2                    2            2
## 4661                1                     1                    1            1
## 4662                1                     1                    1            1
## 4663                2                     2                    2            2
## 4664                1                     1                    1            1
## 4665                1                     1                    1            1
## 4666                2                     2                    2            2
## 4667                2                     2                    2            2
## 4670                1                     1                    1            1
## 4671                2                     1                    2            2
## 4672                1                     1                    1            1
## 4673                2                     2                    2            2
## 4674                2                     2                    2            2
## 4675                1                     1                    1            1
## 4676                2                     1                    2            2
## 4677                1                     1                    1            1
## 4678                2                     1                    2            2
## 4679                2                     2                    2            2
## 4680                1                     1                    1            1
## 4681                1                     1                    1            1
## 4682                1                     1                    1            1
## 4683                1                     1                    1            1
## 4684                2                     2                    2            2
## 4685                1                     1                    1            1
## 4687                2                     2                    2            2
## 4688                2                     2                    2            2
## 4689                2                     2                    2            2
## 4690                2                     2                    2            1
## 4691                1                     1                    1            1
## 4692                2                     2                    2            2
## 4693                1                     1                    1            1
## 4694                1                     1                    1            1
## 4695                2                     1                    2            2
## 4696                2                     2                    2            2
## 4697                2                     1                    2            2
## 4698                1                     1                    1            1
## 4699                1                     1                    1            1
## 4700                1                     1                    1            1
## 4701                2                     2                    2            2
## 4703                1                     1                    1            1
## 4704                2                     2                    2            2
## 4705                2                     2                    2            2
## 4706                1                     1                    1            1
## 4707                2                     2                    2            2
## 4708                1                     1                    1            1
## 4709                1                     1                    1            1
## 4710                1                     1                    1            1
## 4712                2                     2                    2            1
## 4713                2                     2                    2            2
## 4714                1                     1                    1            1
## 4715                2                     2                    2            2
## 4716                1                     1                    1            1
## 4717                1                     1                    1            1
## 4718                1                     1                    1            1
## 4719                1                     1                    1            1
## 4720                2                     1                    2            2
## 4721                2                     2                    2            2
## 4722                2                     2                    2            2
## 4723                2                     2                    2            2
## 4724                1                     1                    1            1
## 4725                2                     2                    2            2
## 4727                2                     2                    2            1
## 4728                1                     1                    1            1
## 4729                2                     2                    2            2
## 4730                1                     1                    1            1
## 4731                1                     1                    1            1
## 4732                1                     1                    1            1
## 4733                1                     1                    1            1
## 4734                2                     2                    2            2
## 4735                2                     1                    2            2
## 4736                1                     1                    1            1
## 4737                2                     2                    2            2
## 4738                1                     1                    1            1
## 4739                2                     2                    2            1
## 4740                2                     1                    2            2
## 4741                1                     1                    1            1
## 4742                1                     1                    1            1
## 4743                1                     1                    1            1
## 4744                1                     1                    1            1
## 4745                2                     1                    2            2
## 4746                2                     2                    2            2
## 4748                1                     1                    1            1
## 4749                2                     1                    2            2
## 4750                1                     1                    1            1
## 4751                1                     1                    1            1
## 4752                1                     1                    1            1
## 4754                1                     1                    1            1
## 4755                2                     1                    2            2
## 4756                2                     1                    2            2
## 4757                2                     2                    2            2
## 4759                1                     1                    1            1
## 4760                1                     1                    1            1
## 4761                1                     1                    1            1
## 4762                2                     2                    2            2
## 4763                1                     1                    1            1
## 4764                1                     1                    1            1
## 4765                1                     1                    1            1
## 4766                2                     1                    2            2
## 4767                1                     1                    1            1
## 4768                1                     1                    1            1
## 4769                1                     1                    1            1
## 4770                2                     2                    2            2
## 4771                2                     2                    2            2
## 4773                2                     2                    2            2
## 4774                2                     2                    2            2
## 4775                1                     1                    1            1
## 4776                1                     1                    1            1
## 4777                2                     2                    2            2
## 4778                2                     2                    2            2
## 4779                1                     1                    1            1
## 4780                1                     1                    1            1
## 4781                2                     1                    2            2
## 4782                2                     2                    2            2
## 4783                1                     1                    1            1
## 4784                2                     2                    2            2
## 4785                1                     1                    1            1
## 4787                1                     1                    1            1
## 4788                2                     2                    2            1
## 4789                1                     1                    1            1
## 4790                2                     1                    2            2
## 4791                1                     1                    1            1
## 4792                1                     1                    1            1
## 4793                1                     1                    1            1
## 4794                1                     1                    1            1
## 4795                2                     1                    2            2
## 4796                1                     1                    1            1
## 4797                2                     1                    2            2
## 4798                1                     1                    1            1
## 4799                1                     1                    1            1
## 4800                2                     2                    2            2
## 4801                2                     2                    2            2
## 4802                2                     2                    2            2
## 4803                2                     1                    2            2
## 4804                2                     2                    2            2
## 4805                2                     1                    2            2
## 4806                1                     1                    1            1
## 4807                1                     1                    1            1
## 4808                2                     1                    2            2
## 4809                1                     1                    1            1
## 4810                1                     1                    1            1
## 4811                1                     1                    1            1
## 4812                2                     2                    2            2
## 4813                1                     1                    1            1
## 4815                1                     1                    1            1
## 4816                1                     1                    1            1
## 4817                2                     1                    2            2
## 4818                2                     1                    2            2
## 4820                2                     2                    2            2
## 4821                2                     2                    2            2
## 4822                2                     2                    2            2
## 4823                1                     1                    1            1
## 4824                1                     1                    1            1
## 4825                1                     1                    1            1
## 4826                2                     1                    2            2
## 4827                1                     1                    1            1
## 4828                2                     1                    2            2
## 4829                1                     1                    1            1
## 4830                2                     2                    2            1
## 4831                2                     1                    2            2
## 4832                1                     1                    1            1
## 4833                2                     2                    2            2
## 4834                1                     1                    1            1
## 4835                2                     2                    2            1
## 4836                1                     1                    1            1
## 4837                1                     1                    1            1
## 4838                1                     1                    1            1
## 4839                2                     2                    2            1
## 4840                1                     1                    1            1
## 4841                1                     1                    1            1
## 4842                2                     2                    2            2
## 4843                2                     2                    2            2
## 4844                1                     1                    1            1
## 4845                1                     1                    1            1
## 4846                2                     2                    2            2
## 4847                2                     2                    2            1
## 4848                2                     2                    2            2
## 4849                1                     1                    1            1
## 4850                1                     1                    1            1
## 4851                1                     1                    1            1
## 4852                1                     1                    1            1
## 4853                2                     1                    2            1
## 4854                1                     1                    1            1
## 4855                1                     1                    1            1
## 4856                1                     1                    1            1
## 4857                1                     1                    1            1
## 4858                1                     1                    1            1
## 4859                1                     1                    1            1
## 4860                2                     1                    2            1
## 4861                2                     1                    2            2
## 4862                1                     1                    1            1
## 4863                2                     2                    2            2
## 4864                2                     2                    2            2
## 4865                1                     2                    2            2
## 4866                1                     1                    1            1
## 4867                1                     1                    1            1
## 4868                1                     1                    1            1
## 4869                1                     1                    1            1
## 4870                1                     1                    1            1
## 4871                2                     2                    2            2
## 4872                2                     2                    2            2
## 4873                2                     2                    2            2
## 4874                2                     2                    2            2
## 4875                1                     1                    1            1
## 4876                1                     1                    1            1
## 4877                2                     2                    2            2
## 4878                1                     1                    1            1
## 4879                2                     2                    2            2
## 4880                1                     1                    1            1
## 4881                1                     1                    1            1
## 4882                1                     1                    1            1
## 4883                2                     2                    2            2
## 4884                2                     1                    2            2
## 4885                1                     1                    1            1
## 4886                2                     1                    2            2
## 4887                2                     2                    2            2
## 4888                2                     2                    2            2
## 4889                2                     2                    2            2
## 4890                2                     2                    2            2
## 4892                2                     2                    2            2
## 4893                2                     2                    2            2
## 4894                2                     2                    2            1
## 4895                2                     1                    2            2
## 4896                2                     1                    2            2
## 4897                1                     1                    1            1
## 4898                2                     2                    2            2
## 4899                1                     1                    1            1
## 4900                1                     1                    1            1
## 4901                1                     1                    1            1
## 4902                1                     1                    1            1
## 4903                1                     1                    1            1
## 4904                1                     1                    1            1
## 4905                2                     1                    2            2
## 4906                2                     1                    2            2
## 4907                1                     1                    1            1
## 4908                1                     1                    1            1
## 4909                1                     1                    1            1
## 4910                2                     2                    2            2
## 4911                2                     2                    2            2
## 4912                1                     1                    1            1
## 4913                1                     1                    1            1
## 4914                1                     1                    1            1
## 4915                1                     1                    1            1
## 4916                1                     1                    1            1
## 4918                2                     2                    2            1
## 4919                2                     2                    2            2
## 4920                2                     2                    2            2
## 4921                1                     1                    1            1
## 4922                1                     1                    1            1
## 4923                1                     1                    1            1
## 4925                2                     1                    2            2
## 4926                1                     1                    1            1
## 4927                2                     2                    2            2
## 4928                1                     1                    1            1
## 4929                2                     2                    2            2
## 4930                2                     1                    2            2
## 4931                2                     2                    2            1
## 4932                1                     1                    1            1
## 4933                1                     1                    1            1
## 4934                2                     2                    2            2
## 4935                2                     1                    2            2
## 4936                2                     1                    2            2
## 4937                1                     1                    1            1
## 4938                1                     1                    1            1
## 4939                1                     1                    1            1
## 4940                2                     2                    2            2
## 4941                1                     1                    1            1
## 4944                1                     1                    1            1
## 4945                1                     1                    1            1
## 4946                2                     2                    2            2
## 4947                1                     1                    1            1
## 4948                2                     2                    2            2
## 4949                2                     2                    2            2
## 4950                1                     1                    1            1
## 4951                2                     2                    2            2
## 4952                2                     1                    1            2
## 4953                1                     1                    1            1
## 4954                1                     1                    1            1
## 4955                2                     2                    2            2
## 4956                2                     2                    2            2
## 4957                1                     1                    1            1
## 4958                1                     1                    1            1
## 4959                2                     2                    2            2
## 4960                1                     1                    1            1
## 4962                1                     1                    1            1
## 4963                2                     2                    2            2
## 4964                2                     2                    2            2
## 4965                2                     1                    2            2
## 4966                2                     1                    2            1
## 4967                1                     1                    1            1
## 4968                2                     2                    2            2
## 4969                1                     1                    1            1
## 4970                2                     2                    2            2
## 4971                1                     1                    1            1
## 4972                1                     1                    1            1
## 4973                2                     1                    2            2
## 4974                2                     2                    2            2
## 4975                1                     1                    1            1
## 4976                1                     1                    1            1
## 4977                2                     2                    2            1
## 4978                2                     2                    2            2
## 4979                1                     1                    1            1
## 4980                2                     2                    2            2
## 4981                2                     2                    2            2
## 4982                1                     1                    1            1
## 4983                1                     1                    1            1
## 4984                1                     1                    1            1
## 4985                1                     1                    1            1
## 4986                2                     1                    2            2
## 4987                2                     2                    2            2
## 4988                2                     2                    2            2
## 4989                1                     1                    1            1
## 4990                2                     2                    2            2
## 4991                2                     2                    2            2
## 4992                2                     2                    2            2
## 4993                2                     2                    2            2
## 4994                1                     1                    1            1
## 4995                1                     1                    1            1
## 4996                1                     1                    1            1
## 4998                2                     1                    2            2
## 4999                1                     1                    1            1
## 5000                2                     2                    2            2
## 5001                2                     2                    1            2
## 5002                1                     1                    1            1
## 5003                2                     1                    2            2
## 5004                1                     1                    1            1
## 5005                1                     1                    1            1
## 5006                1                     1                    1            1
## 5007                2                     2                    2            2
## 5008                2                     1                    2            2
## 5009                2                     2                    2            2
## 5010                2                     2                    2            2
## 5011                2                     2                    2            2
## 5012                1                     1                    1            1
## 5013                1                     1                    1            1
## 5014                2                     1                    2            2
## 5015                2                     1                    2            2
## 5016                2                     2                    2            2
## 5017                1                     1                    1            1
## 5019                1                     1                    2            2
## 5020                1                     1                    1            1
## 5021                2                     1                    2            2
## 5022                1                     1                    1            1
## 5023                2                     1                    2            2
## 5024                2                     2                    2            2
## 5025                1                     1                    1            1
## 5026                2                     2                    2            2
## 5027                2                     2                    2            2
## 5028                2                     2                    2            1
## 5029                2                     1                    2            2
## 5030                1                     1                    1            1
## 5032                2                     2                    2            1
## 5034                1                     1                    1            1
## 5035                1                     1                    1            1
## 5036                1                     1                    1            1
## 5037                2                     1                    2            1
## 5038                1                     1                    1            1
## 5039                1                     1                    1            1
## 5040                2                     1                    2            2
## 5041                1                     1                    1            1
## 5043                1                     1                    1            1
## 5044                1                     1                    1            1
## 5045                2                     2                    2            2
## 5046                1                     1                    1            1
## 5047                2                     2                    1            1
## 5048                2                     1                    2            1
## 5049                1                     1                    1            1
## 5050                2                     1                    2            2
## 5051                2                     1                    2            2
## 5052                2                     2                    2            2
## 5053                1                     1                    1            1
## 5054                1                     1                    1            1
## 5055                2                     1                    2            2
## 5056                1                     1                    1            1
## 5057                2                     2                    2            2
## 5058                2                     2                    1            2
## 5059                2                     2                    2            2
## 5060                2                     2                    2            2
## 5061                2                     2                    2            2
## 5062                1                     1                    1            1
## 5063                1                     1                    1            1
## 5064                2                     2                    2            2
## 5065                1                     1                    1            1
## 5066                2                     1                    1            1
## 5067                2                     2                    2            2
## 5068                1                     1                    1            1
## 5069                2                     2                    2            1
## 5070                1                     1                    1            1
## 5071                1                     2                    1            1
## 5072                1                     1                    1            1
## 5073                2                     1                    2            2
## 5074                2                     2                    2            2
## 5076                2                     2                    2            2
## 5077                2                     2                    2            2
## 5078                2                     1                    2            2
## 5079                1                     1                    1            1
## 5080                1                     1                    1            1
## 5081                2                     2                    2            2
## 5082                2                     2                    2            2
## 5083                1                     1                    1            1
## 5084                1                     1                    1            1
## 5085                1                     1                    1            1
## 5086                2                     2                    2            1
## 5087                1                     1                    1            1
## 5088                2                     2                    2            2
## 5089                2                     2                    2            2
## 5090                1                     1                    1            1
## 5091                2                     2                    2            2
## 5092                2                     2                    2            2
## 5094                1                     1                    1            1
## 5095                1                     1                    1            1
## 5097                2                     1                    2            2
## 5098                1                     1                    1            1
## 5099                2                     2                    2            2
## 5100                1                     1                    1            1
## 5101                2                     2                    2            2
## 5102                1                     1                    1            1
## 5103                1                     1                    1            1
## 5105                2                     2                    2            1
## 5106                1                     1                    1            1
## 5108                2                     1                    1            1
## 5109                2                     2                    2            2
## 5111                2                     2                    2            1
## 5112                1                     1                    1            1
## 5113                2                     1                    2            2
## 5114                1                     1                    1            1
## 5115                1                     1                    1            1
## 5116                2                     2                    2            1
## 5117                2                     1                    2            2
## 5118                1                     1                    1            1
## 5119                2                     1                    2            2
## 5120                1                     1                    1            1
## 5121                1                     1                    1            1
## 5122                1                     1                    1            1
## 5123                2                     1                    1            1
## 5124                1                     1                    1            1
## 5125                2                     2                    2            2
## 5126                1                     1                    1            1
## 5127                2                     2                    2            2
## 5128                1                     1                    1            1
## 5129                1                     1                    1            1
## 5130                1                     1                    1            1
## 5131                1                     1                    1            1
## 5132                2                     2                    2            2
## 5133                2                     2                    2            2
## 5134                1                     1                    1            1
## 5135                1                     1                    1            1
## 5136                2                     2                    2            2
## 5138                1                     1                    1            1
## 5139                2                     1                    2            2
## 5140                2                     2                    2            2
## 5141                1                     1                    1            1
## 5142                1                     1                    1            1
## 5143                2                     2                    2            2
## 5144                2                     2                    2            2
## 5145                1                     1                    1            1
## 5146                2                     2                    2            2
## 5147                2                     2                    2            1
## 5148                1                     1                    1            1
## 5149                1                     1                    1            1
## 5150                2                     2                    2            2
## 5151                1                     1                    1            1
## 5152                1                     1                    1            1
## 5153                2                     1                    2            2
## 5154                2                     2                    2            2
## 5155                2                     1                    2            2
## 5156                1                     1                    1            1
## 5157                1                     1                    1            1
## 5158                1                     1                    1            1
## 5159                1                     1                    1            1
## 5160                1                     1                    1            1
## 5161                1                     1                    1            1
## 5162                2                     2                    2            2
## 5163                2                     1                    2            2
## 5164                1                     1                    1            1
## 5165                1                     1                    1            1
## 5166                1                     1                    1            1
## 5167                2                     2                    2            2
## 5168                1                     1                    1            1
## 5169                2                     2                    2            2
## 5170                2                     2                    2            2
## 5171                2                     2                    2            2
## 5172                2                     1                    2            2
## 5173                2                     2                    2            2
## 5174                2                     2                    2            2
## 5175                2                     2                    2            2
## 5176                1                     1                    1            1
## 5177                2                     2                    2            2
## 5178                1                     1                    1            1
## 5179                2                     1                    2            2
## 5180                1                     1                    1            1
## 5181                2                     1                    2            2
## 5183                2                     2                    2            2
## 5184                1                     2                    2            2
## 5185                1                     1                    1            1
## 5186                1                     1                    1            1
## 5187                2                     2                    2            1
## 5188                1                     1                    1            1
## 5190                1                     1                    1            1
## 5191                1                     1                    1            1
## 5192                2                     2                    2            2
## 5193                2                     2                    2            2
## 5194                1                     1                    1            1
## 5195                2                     2                    2            2
## 5196                1                     1                    1            1
## 5197                1                     1                    1            1
## 5198                2                     1                    2            2
## 5199                1                     1                    1            1
## 5200                2                     2                    2            2
## 5201                1                     1                    1            1
## 5202                2                     2                    2            2
## 5203                1                     1                    1            1
## 5205                2                     1                    2            1
## 5206                2                     2                    2            2
## 5207                1                     1                    1            1
## 5208                2                     1                    2            2
## 5209                1                     1                    1            1
## 5210                1                     1                    1            1
## 5211                1                     1                    1            1
## 5212                2                     2                    2            2
## 5214                1                     1                    1            1
## 5215                2                     2                    2            2
## 5216                1                     1                    1            1
## 5217                1                     1                    1            1
## 5218                1                     1                    1            1
## 5219                2                     2                    2            2
## 5220                2                     1                    2            2
## 5221                1                     1                    1            1
## 5222                1                     1                    1            1
## 5223                1                     1                    1            1
## 5224                1                     1                    1            1
## 5225                2                     1                    2            2
## 5226                2                     2                    2            2
## 5227                2                     1                    2            2
## 5228                2                     1                    2            2
## 5229                2                     2                    2            2
## 5230                1                     1                    1            1
## 5232                1                     1                    1            1
## 5233                1                     1                    1            1
## 5234                1                     1                    1            1
## 5235                2                     2                    2            2
## 5236                2                     2                    2            1
## 5238                2                     1                    2            2
## 5239                2                     2                    2            2
## 5240                1                     1                    1            1
## 5241                2                     2                    2            1
## 5242                1                     1                    1            1
## 5243                1                     1                    1            1
## 5244                1                     1                    1            1
## 5245                2                     2                    2            2
## 5246                1                     1                    1            1
## 5247                2                     2                    2            2
## 5249                2                     2                    2            2
## 5250                1                     1                    1            1
## 5251                2                     1                    2            2
## 5252                2                     2                    1            1
## 5253                2                     2                    2            2
## 5254                1                     1                    1            1
## 5255                2                     2                    2            1
## 5256                2                     1                    2            1
## 5257                2                     2                    2            2
## 5258                1                     1                    1            1
## 5259                2                     1                    2            2
## 5260                1                     1                    1            1
## 5261                2                     1                    2            2
## 5262                1                     1                    1            1
## 5264                2                     2                    2            2
## 5265                1                     1                    1            1
## 5266                1                     1                    1            1
## 5267                1                     1                    1            1
## 5268                2                     1                    2            1
## 5269                1                     1                    1            1
## 5270                1                     1                    1            1
## 5271                2                     2                    2            2
## 5272                2                     1                    2            2
## 5273                2                     2                    2            2
## 5274                1                     1                    1            1
## 5275                2                     2                    2            2
## 5277                1                     1                    1            1
## 5278                2                     2                    2            2
## 5279                2                     2                    2            2
## 5280                1                     1                    1            1
## 5281                1                     1                    1            1
## 5282                1                     1                    1            1
## 5283                2                     2                    2            2
## 5284                1                     1                    1            1
## 5285                1                     1                    1            1
## 5286                1                     1                    1            1
## 5287                1                     1                    1            1
## 5288                2                     1                    2            2
## 5289                1                     1                    1            1
## 5290                1                     1                    1            1
## 5291                2                     2                    2            2
## 5292                2                     2                    2            2
## 5293                2                     2                    2            2
## 5294                1                     1                    1            1
## 5295                1                     1                    1            1
## 5296                2                     2                    2            2
## 5297                2                     2                    2            2
## 5298                1                     1                    1            1
## 5300                2                     2                    2            2
## 5301                2                     1                    2            2
## 5302                2                     1                    2            2
## 5303                2                     1                    1            1
## 5304                1                     1                    1            1
## 5305                2                     1                    2            2
## 5306                1                     1                    1            1
## 5307                2                     2                    2            2
## 5308                1                     1                    1            1
## 5309                1                     2                    2            2
## 5310                1                     1                    1            1
## 5311                2                     2                    2            2
## 5312                1                     1                    1            1
## 5314                2                     2                    2            2
## 5315                1                     1                    1            1
## 5316                2                     2                    2            2
## 5317                1                     1                    1            1
## 5318                2                     2                    2            2
## 5319                1                     1                    1            1
## 5320                1                     1                    1            1
## 5321                1                     1                    1            1
## 5322                2                     2                    2            2
## 5323                2                     1                    2            2
## 5324                1                     1                    1            1
## 5325                2                     2                    2            2
## 5326                1                     1                    1            1
## 5327                2                     1                    1            1
## 5328                1                     1                    1            1
## 5329                2                     2                    1            1
## 5330                1                     1                    1            1
## 5331                2                     2                    2            2
## 5332                1                     1                    1            1
## 5333                2                     1                    2            2
## 5334                2                     2                    2            2
## 5335                2                     2                    2            2
## 5336                1                     1                    1            1
## 5337                2                     2                    2            2
## 5338                1                     1                    1            1
## 5339                1                     1                    1            1
## 5340                2                     1                    2            2
## 5341                1                     1                    1            1
## 5342                2                     1                    2            2
## 5343                2                     1                    2            2
## 5344                1                     1                    1            1
## 5345                1                     1                    1            1
## 5346                2                     2                    2            2
## 5347                1                     1                    1            1
## 5348                1                     1                    1            1
## 5349                2                     2                    2            2
## 5350                1                     1                    1            1
## 5352                2                     2                    2            2
## 5353                2                     2                    2            2
## 5354                1                     1                    1            1
## 5355                2                     1                    2            2
## 5357                1                     1                    1            1
## 5358                1                     1                    1            1
## 5359                1                     1                    1            1
## 5360                2                     1                    2            2
## 5361                2                     1                    2            2
## 5362                2                     2                    2            2
## 5363                2                     2                    2            2
## 5364                1                     1                    1            1
## 5365                1                     1                    1            1
## 5366                2                     2                    2            2
## 5367                1                     1                    1            1
## 5368                2                     1                    2            2
## 5369                2                     2                    2            2
## 5370                2                     1                    2            2
## 5371                2                     2                    2            2
## 5372                1                     1                    1            1
## 5373                1                     1                    1            1
## 5374                2                     2                    2            2
## 5376                1                     1                    1            1
## 5377                1                     1                    1            1
## 5378                1                     1                    1            1
## 5379                2                     2                    2            2
## 5380                1                     1                    1            1
## 5381                2                     1                    2            2
## 5382                2                     2                    2            2
## 5383                2                     2                    2            2
## 5384                1                     1                    1            1
## 5385                2                     2                    2            2
## 5386                2                     2                    2            2
## 5387                2                     2                    2            2
## 5388                1                     1                    1            1
## 5389                1                     1                    1            1
## 5390                2                     2                    2            2
## 5391                1                     1                    1            1
## 5392                1                     1                    1            1
## 5393                2                     1                    2            2
## 5394                1                     1                    1            1
## 5395                2                     2                    2            2
## 5396                1                     1                    1            1
## 5398                1                     1                    1            1
## 5399                2                     1                    2            2
## 5400                2                     1                    2            2
## 5401                2                     1                    2            2
## 5402                2                     1                    2            2
## 5403                1                     1                    1            1
## 5404                2                     2                    2            2
## 5405                1                     1                    1            1
## 5406                2                     2                    2            2
## 5407                1                     1                    1            1
## 5408                1                     1                    1            1
## 5409                2                     2                    2            2
## 5410                2                     2                    2            2
## 5411                1                     1                    1            1
## 5412                1                     1                    1            1
## 5413                1                     1                    1            1
## 5414                1                     1                    1            1
## 5415                1                     1                    1            1
## 5416                1                     1                    1            1
## 5417                1                     1                    1            1
## 5419                2                     2                    2            2
## 5420                1                     1                    1            1
## 5421                2                     2                    2            2
## 5422                1                     1                    1            1
## 5423                1                     1                    1            1
## 5424                2                     2                    2            2
## 5425                2                     1                    2            2
## 5426                1                     1                    1            1
## 5427                1                     1                    1            1
## 5428                1                     1                    1            1
## 5429                2                     2                    2            2
## 5430                1                     1                    1            1
## 5431                2                     2                    2            2
## 5432                2                     2                    2            2
## 5434                2                     2                    2            2
## 5435                1                     1                    1            1
## 5436                2                     1                    2            2
## 5437                2                     2                    2            2
## 5438                1                     1                    1            1
## 5439                1                     1                    1            1
## 5440                1                     1                    1            1
## 5441                1                     1                    1            1
## 5442                1                     1                    1            1
## 5443                1                     1                    1            1
## 5444                2                     2                    2            2
## 5445                2                     2                    2            2
## 5446                1                     1                    1            1
## 5447                2                     2                    2            2
## 5448                1                     1                    1            1
## 5449                2                     1                    2            2
## 5451                2                     1                    1            1
## 5452                2                     1                    2            2
## 5453                1                     1                    1            1
## 5455                2                     2                    2            2
## 5456                2                     2                    2            2
## 5457                2                     2                    2            2
## 5458                1                     1                    1            1
## 5459                1                     1                    1            1
## 5460                2                     1                    2            2
## 5461                2                     2                    2            2
## 5462                2                     1                    2            2
## 5464                1                     1                    1            1
## 5465                2                     2                    2            2
## 5466                2                     2                    2            2
## 5467                2                     1                    2            2
## 5468                2                     2                    2            2
## 5469                1                     1                    1            1
## 5470                1                     1                    1            1
## 5471                1                     1                    1            1
## 5472                1                     1                    1            1
## 5473                2                     2                    2            2
## 5474                1                     1                    1            1
## 5475                1                     1                    1            1
## 5476                1                     1                    1            1
## 5477                2                     1                    2            2
## 5478                1                     1                    1            1
## 5479                2                     2                    2            2
## 5480                2                     2                    2            2
## 5481                1                     1                    1            1
## 5482                1                     1                    1            1
## 5483                2                     2                    2            1
## 5484                2                     1                    2            2
## 5485                1                     1                    1            1
## 5486                1                     1                    1            1
## 5487                2                     2                    2            2
## 5488                2                     1                    1            2
## 5489                2                     2                    2            2
## 5490                2                     2                    2            2
## 5491                2                     2                    2            1
## 5492                1                     1                    1            1
## 5493                2                     2                    2            2
## 5494                2                     2                    2            2
## 5495                1                     1                    1            1
## 5496                1                     1                    1            1
## 5497                2                     1                    2            2
## 5498                2                     2                    2            2
## 5499                2                     2                    2            2
## 5500                2                     2                    2            2
## 5501                2                     1                    2            2
## 5502                2                     1                    1            2
## 5503                1                     1                    1            1
## 5504                2                     1                    2            2
## 5505                1                     1                    1            1
## 5506                1                     1                    1            1
## 5507                1                     1                    1            1
## 5508                1                     1                    1            1
## 5509                1                     1                    1            1
## 5510                1                     1                    1            1
## 5511                1                     1                    1            1
## 5512                1                     1                    1            1
## 5513                1                     1                    1            1
## 5514                2                     2                    2            2
## 5515                1                     1                    1            1
## 5516                2                     1                    2            2
## 5517                2                     2                    2            2
## 5518                2                     2                    2            2
## 5519                1                     1                    1            1
## 5520                2                     2                    2            2
## 5521                1                     1                    1            1
## 5522                1                     1                    1            1
## 5523                1                     1                    1            1
## 5524                2                     2                    2            2
## 5525                2                     1                    2            1
## 5526                2                     2                    2            2
## 5527                1                     1                    1            1
## 5528                1                     1                    1            1
## 5529                2                     2                    2            2
## 5530                1                     1                    1            1
## 5531                2                     2                    2            2
## 5532                2                     1                    2            2
## 5533                2                     1                    2            2
## 5534                1                     1                    1            1
## 5535                1                     1                    1            1
## 5536                2                     2                    2            2
## 5538                1                     1                    1            1
## 5539                2                     1                    2            2
## 5540                1                     1                    1            1
## 5541                1                     1                    1            1
## 5542                2                     2                    2            2
## 5543                1                     1                    1            1
## 5544                1                     1                    1            1
## 5545                2                     1                    2            2
## 5546                2                     1                    2            2
## 5547                1                     1                    1            1
## 5548                1                     1                    1            1
## 5549                1                     1                    1            1
## 5550                2                     1                    2            2
## 5551                2                     1                    2            2
## 5552                2                     1                    1            2
## 5553                1                     1                    1            1
## 5555                2                     1                    2            2
## 5557                1                     1                    1            1
## 5558                2                     1                    1            1
## 5559                2                     2                    2            2
## 5560                2                     1                    2            2
## 5561                1                     1                    1            1
## 5562                1                     1                    1            1
## 5563                1                     1                    1            1
## 5564                1                     1                    1            1
## 5565                2                     1                    2            2
## 5566                2                     2                    2            2
## 5567                2                     2                    2            2
## 5568                2                     2                    2            2
## 5569                2                     1                    2            2
## 5570                1                     1                    1            1
## 5571                2                     2                    2            2
## 5572                1                     1                    1            1
## 5573                2                     2                    2            2
## 5574                1                     1                    1            1
## 5575                1                     1                    1            1
## 5577                1                     1                    1            1
## 5578                2                     2                    2            2
## 5579                2                     2                    2            2
## 5580                2                     2                    2            2
## 5581                2                     2                    2            2
## 5582                2                     2                    2            2
## 5583                2                     1                    1            1
## 5584                2                     1                    2            2
## 5585                2                     1                    2            2
## 5586                2                     2                    2            2
## 5587                2                     1                    2            2
## 5589                2                     1                    2            2
## 5590                1                     1                    1            1
## 5591                2                     2                    2            2
## 5593                1                     1                    1            1
## 5594                2                     2                    2            2
## 5595                1                     1                    1            1
## 5596                1                     1                    1            1
## 5597                2                     1                    2            2
## 5598                2                     2                    2            2
## 5599                1                     1                    1            1
## 5600                1                     1                    2            1
## 5601                2                     2                    2            2
## 5602                1                     1                    1            1
## 5603                2                     1                    1            1
## 5604                1                     1                    1            1
## 5605                1                     1                    1            1
## 5607                2                     2                    2            2
## 5608                2                     2                    2            2
## 5609                1                     1                    1            1
## 5610                1                     1                    1            1
## 5611                1                     1                    1            1
## 5612                2                     1                    2            2
## 5613                1                     2                    1            1
## 5614                1                     1                    1            1
## 5615                2                     1                    2            2
## 5616                2                     1                    2            2
## 5617                2                     1                    2            2
## 5618                2                     2                    2            2
## 5619                1                     1                    1            1
## 5620                2                     2                    2            2
## 5621                2                     2                    2            2
## 5622                1                     1                    1            1
## 5623                2                     1                    2            2
## 5624                2                     1                    1            1
## 5625                2                     2                    2            2
## 5626                1                     1                    1            1
## 5627                1                     1                    1            1
## 5628                1                     1                    1            1
## 5629                2                     2                    2            2
## 5630                1                     1                    1            1
## 5631                1                     1                    1            1
## 5632                2                     1                    2            2
## 5633                2                     1                    2            2
## 5634                2                     2                    2            2
## 5635                2                     2                    2            2
## 5636                1                     1                    1            1
## 5637                2                     2                    2            2
## 5638                1                     1                    1            1
## 5640                2                     2                    1            2
## 5641                2                     1                    2            1
## 5642                1                     1                    1            1
## 5643                1                     1                    1            1
## 5644                1                     1                    1            1
## 5645                1                     1                    1            1
## 5646                1                     1                    1            1
## 5647                2                     1                    2            2
## 5649                2                     1                    2            2
## 5650                2                     2                    2            2
## 5651                2                     1                    2            2
## 5652                1                     1                    1            1
## 5653                2                     2                    2            1
## 5654                1                     1                    1            1
## 5655                1                     1                    1            1
## 5656                1                     1                    1            1
## 5657                1                     1                    1            1
## 5658                2                     2                    2            2
## 5659                1                     1                    1            1
## 5660                2                     2                    2            2
## 5661                1                     1                    1            1
## 5662                1                     1                    1            1
## 5663                2                     2                    2            2
## 5664                2                     1                    2            2
## 5665                1                     1                    1            1
## 5666                1                     1                    1            1
## 5667                1                     1                    1            1
## 5668                2                     2                    2            2
## 5669                1                     1                    1            1
## 5670                2                     1                    2            2
## 5671                1                     1                    1            1
## 5672                2                     1                    2            2
## 5673                1                     1                    1            1
## 5674                2                     1                    2            2
## 5675                1                     1                    1            1
## 5676                2                     1                    2            2
## 5677                2                     1                    2            2
## 5678                2                     1                    2            2
## 5679                2                     2                    2            2
## 5680                1                     1                    1            1
## 5681                2                     2                    2            2
## 5682                2                     2                    2            2
## 5683                2                     2                    2            2
## 5684                2                     2                    2            2
## 5685                2                     2                    2            2
## 5686                1                     1                    1            1
## 5687                2                     2                    2            2
## 5688                2                     1                    2            2
## 5689                1                     1                    1            1
## 5690                2                     2                    2            2
## 5691                1                     1                    1            1
## 5692                1                     1                    1            1
## 5693                2                     1                    2            2
## 5694                1                     1                    1            1
## 5695                2                     2                    2            2
## 5696                1                     1                    1            1
## 5697                2                     2                    2            2
## 5698                2                     2                    2            2
## 5699                1                     1                    1            1
## 5700                2                     1                    2            2
## 5701                2                     2                    2            2
## 5702                2                     2                    2            2
## 5703                2                     2                    2            2
## 5705                1                     1                    1            1
## 5706                1                     1                    1            1
## 5707                1                     1                    1            1
## 5708                2                     1                    2            2
## 5709                2                     2                    2            2
## 5710                2                     2                    2            2
## 5711                1                     1                    1            1
## 5712                2                     2                    2            2
## 5713                2                     2                    2            2
## 5714                2                     2                    2            1
## 5715                1                     1                    1            1
## 5716                2                     2                    2            2
## 5717                2                     2                    2            2
## 5718                2                     2                    2            1
## 5719                2                     2                    2            2
## 5720                1                     1                    1            1
## 5721                2                     2                    2            2
## 5722                1                     1                    1            1
## 5723                1                     1                    1            1
## 5724                2                     2                    2            2
## 5725                2                     2                    2            2
## 5726                2                     1                    2            1
## 5727                2                     2                    2            2
## 5728                2                     1                    2            2
## 5729                1                     1                    1            1
## 5730                1                     1                    1            1
## 5731                2                     2                    2            2
## 5732                2                     1                    2            2
## 5733                1                     1                    1            1
## 5734                2                     2                    2            2
## 5735                2                     1                    2            2
## 5736                2                     1                    2            2
## 5737                1                     1                    1            1
## 5738                2                     2                    2            2
## 5739                2                     1                    2            2
## 5740                2                     2                    2            2
## 5742                1                     1                    1            1
## 5743                2                     2                    2            2
## 5744                1                     1                    1            1
## 5746                2                     2                    2            2
## 5747                2                     2                    2            2
## 5748                1                     1                    1            1
## 5749                2                     2                    2            2
## 5750                2                     2                    2            2
## 5751                2                     2                    2            2
## 5753                2                     1                    2            1
## 5754                2                     2                    2            1
## 5756                2                     2                    2            2
## 5757                1                     1                    1            1
## 5758                2                     1                    2            2
## 5759                1                     1                    1            1
## 5760                2                     2                    2            2
## 5761                1                     1                    1            1
## 5762                1                     1                    1            1
## 5763                2                     2                    2            2
## 5764                2                     2                    2            2
## 5766                2                     2                    2            2
## 5767                1                     1                    1            1
## 5768                2                     1                    2            2
## 5769                2                     1                    2            2
## 5770                2                     2                    2            2
## 5771                2                     1                    2            2
## 5772                1                     1                    1            1
## 5773                2                     2                    2            1
## 5776                2                     2                    2            2
## 5777                2                     2                    1            1
## 5778                1                     1                    1            1
## 5779                2                     2                    2            2
## 5780                2                     2                    2            2
## 5781                1                     1                    1            1
## 5782                1                     1                    1            1
## 5783                1                     1                    1            1
## 5784                1                     1                    1            1
## 5785                1                     1                    1            1
## 5786                1                     1                    1            1
## 5787                2                     1                    1            1
## 5788                1                     1                    1            1
## 5789                2                     2                    2            2
## 5790                1                     1                    1            1
## 5791                2                     2                    2            2
## 5792                2                     2                    2            2
## 5793                2                     2                    2            2
## 5794                1                     1                    1            1
## 5795                1                     2                    2            2
## 5796                1                     1                    1            1
## 5797                2                     2                    2            2
## 5798                2                     2                    2            2
## 5799                2                     1                    2            2
## 5800                1                     1                    1            1
## 5801                1                     1                    1            1
## 5802                1                     1                    1            1
## 5803                2                     2                    2            2
## 5804                1                     1                    1            1
## 5805                2                     2                    2            2
## 5806                2                     2                    2            2
## 5807                1                     1                    1            1
## 5808                2                     1                    2            2
## 5809                1                     1                    1            1
## 5810                2                     2                    2            2
## 5811                2                     2                    2            1
## 5812                2                     2                    2            2
## 5813                1                     1                    1            1
## 5814                1                     1                    1            1
## 5815                2                     2                    2            2
## 5816                2                     2                    2            2
## 5817                1                     1                    1            1
## 5818                2                     2                    1            2
## 5819                1                     1                    1            1
## 5820                2                     2                    2            2
## 5821                2                     1                    1            2
## 5822                2                     2                    2            1
## 5823                1                     1                    1            1
## 5824                1                     1                    1            1
## 5826                2                     1                    2            2
## 5827                1                     1                    1            1
## 5828                2                     1                    2            2
## 5829                1                     1                    1            1
## 5830                2                     1                    2            2
## 5831                1                     1                    1            1
## 5832                2                     2                    2            2
## 5833                1                     1                    1            1
## 5835                1                     1                    1            1
## 5836                2                     2                    2            2
## 5837                1                     1                    1            1
## 5838                1                     1                    1            1
## 5839                2                     2                    2            2
## 5840                1                     1                    1            1
## 5841                1                     1                    1            1
## 5842                2                     2                    2            2
## 5843                1                     1                    1            1
## 5844                1                     1                    1            1
## 5845                2                     1                    2            2
## 5846                1                     1                    1            1
## 5847                2                     2                    2            2
## 5848                1                     1                    1            1
## 5849                1                     1                    1            1
## 5850                1                     1                    1            1
## 5851                1                     1                    1            1
## 5852                1                     1                    1            1
## 5853                1                     1                    1            1
## 5854                1                     1                    1            1
## 5855                1                     1                    1            1
## 5856                2                     1                    2            2
## 5857                2                     1                    2            2
## 5858                2                     2                    2            2
## 5859                1                     1                    1            1
## 5860                1                     1                    1            1
## 5861                1                     1                    1            1
## 5862                1                     1                    1            1
## 5863                2                     2                    2            2
## 5864                2                     2                    2            2
## 5865                2                     2                    2            2
## 5866                2                     2                    2            2
## 5867                1                     1                    1            1
## 5868                2                     2                    2            2
## 5869                1                     1                    1            1
## 5870                2                     1                    1            2
## 5871                2                     1                    2            2
## 5872                2                     1                    2            2
## 5873                2                     2                    2            2
## 5874                1                     1                    2            2
## 5875                1                     1                    1            1
## 5876                2                     1                    2            2
## 5877                1                     1                    1            1
## 5878                1                     1                    1            1
## 5879                2                     1                    2            2
## 5880                1                     1                    1            1
## 5881                1                     1                    1            1
## 5883                1                     1                    1            1
## 5884                2                     1                    2            2
## 5885                2                     2                    1            1
## 5886                1                     1                    1            1
## 5887                1                     1                    1            1
## 5889                2                     1                    2            2
## 5890                2                     2                    1            1
## 5891                1                     1                    1            1
## 5892                1                     1                    1            1
## 5894                2                     2                    1            2
## 5895                2                     1                    2            2
## 5896                1                     1                    1            1
## 5897                1                     1                    1            1
## 5898                1                     1                    1            1
## 5899                2                     2                    2            2
## 5900                2                     2                    2            2
## 5901                2                     2                    1            2
## 5902                2                     1                    2            2
## 5903                2                     2                    2            2
## 5904                1                     1                    1            1
## 5905                1                     1                    1            1
## 5906                1                     1                    1            1
## 5907                2                     2                    2            2
## 5908                1                     1                    1            1
## 5909                1                     1                    1            1
## 5910                1                     1                    1            1
## 5911                1                     1                    1            1
## 5913                1                     1                    1            1
## 5914                2                     2                    2            2
## 5915                2                     2                    2            2
## 5916                1                     1                    1            1
## 5917                1                     1                    1            1
## 5918                1                     1                    1            1
## 5919                1                     1                    1            1
## 5920                1                     1                    1            1
## 5921                2                     1                    2            2
## 5923                2                     1                    2            2
## 5924                1                     1                    1            1
## 5925                2                     2                    2            2
## 5926                2                     2                    2            2
## 5928                2                     2                    2            2
## 5929                1                     1                    1            1
## 5930                2                     1                    2            2
## 5931                1                     1                    1            1
## 5932                2                     2                    2            2
## 5933                2                     2                    2            2
## 5934                1                     1                    1            1
## 5935                1                     1                    1            1
## 5936                2                     2                    2            2
## 5937                1                     1                    1            1
## 5939                1                     1                    1            1
## 5940                1                     1                    1            1
## 5941                1                     1                    1            1
## 5942                1                     1                    1            1
## 5943                1                     1                    1            1
## 5944                2                     1                    2            2
## 5945                2                     2                    2            2
## 5946                2                     1                    2            2
## 5947                2                     2                    2            2
## 5948                2                     2                    2            2
## 5949                2                     2                    2            2
## 5950                2                     1                    2            2
## 5951                1                     1                    1            1
## 5953                2                     1                    1            1
## 5954                2                     1                    2            2
## 5955                1                     1                    1            1
## 5956                1                     1                    1            1
## 5957                2                     2                    2            2
## 5958                2                     2                    2            2
## 5959                2                     2                    2            2
## 5960                1                     1                    1            1
## 5961                1                     1                    1            1
## 5962                2                     2                    2            2
## 5963                1                     1                    1            1
## 5964                2                     2                    2            2
## 5966                1                     1                    1            1
## 5967                1                     1                    1            1
## 5968                1                     1                    1            1
## 5969                1                     1                    1            1
## 5970                2                     2                    2            2
## 5972                2                     1                    2            1
## 5973                2                     2                    2            2
## 5974                1                     1                    1            1
## 5975                2                     2                    2            2
## 5976                1                     2                    2            2
## 5977                2                     2                    2            2
## 5978                2                     2                    2            2
## 5979                1                     1                    1            1
## 5980                2                     2                    2            2
## 5982                1                     1                    1            1
## 5983                2                     1                    2            2
## 5984                2                     1                    1            2
## 5985                2                     2                    2            2
## 5986                1                     1                    1            1
## 5987                1                     1                    1            1
## 5988                1                     1                    1            1
## 5989                2                     2                    1            2
## 5990                2                     2                    2            2
## 5991                2                     2                    2            2
## 5992                2                     2                    2            2
## 5993                2                     2                    2            2
## 5994                1                     1                    1            1
## 5996                2                     2                    2            2
## 5997                2                     2                    2            2
## 5998                2                     2                    2            2
## 5999                2                     2                    2            2
## 6000                1                     1                    1            1
## 6001                2                     2                    2            2
## 6002                1                     1                    1            1
## 6003                2                     1                    2            2
## 6004                1                     1                    1            1
## 6005                2                     2                    2            2
## 6006                2                     2                    2            2
## 6007                1                     1                    1            1
## 6008                2                     2                    2            2
## 6009                2                     2                    2            2
## 6010                1                     1                    1            1
## 6011                2                     2                    2            2
## 6012                1                     1                    1            1
## 6013                2                     2                    2            2
## 6014                1                     1                    1            1
## 6015                1                     1                    1            1
## 6016                1                     1                    1            1
## 6017                2                     2                    2            2
## 6018                1                     1                    1            1
## 6019                1                     1                    1            1
## 6020                2                     1                    2            2
## 6021                1                     1                    1            1
## 6022                2                     2                    2            2
## 6023                2                     2                    2            2
## 6024                2                     2                    2            2
## 6025                1                     1                    1            1
## 6026                2                     2                    2            2
## 6027                1                     1                    1            1
## 6028                2                     2                    1            2
## 6029                2                     2                    2            2
## 6030                1                     1                    1            1
## 6031                1                     1                    1            1
## 6032                2                     2                    2            2
## 6033                2                     1                    2            1
## 6034                2                     2                    2            2
## 6035                1                     1                    1            1
## 6036                2                     1                    2            2
## 6037                2                     2                    2            2
## 6038                2                     1                    2            2
## 6039                2                     2                    2            2
## 6040                2                     2                    2            2
## 6041                2                     2                    2            2
## 6042                1                     1                    1            1
## 6043                1                     1                    1            1
## 6044                1                     1                    1            1
## 6045                1                     1                    1            1
## 6046                2                     2                    2            2
## 6047                2                     1                    2            2
## 6048                1                     1                    1            1
## 6049                2                     1                    2            2
## 6050                1                     1                    1            1
## 6051                2                     2                    2            2
## 6052                2                     1                    2            2
## 6053                1                     1                    1            1
## 6054                2                     1                    2            2
## 6055                2                     2                    2            2
## 6056                2                     2                    2            1
## 6057                2                     2                    2            2
## 6059                2                     2                    2            2
## 6060                1                     1                    1            1
## 6061                1                     1                    1            1
## 6062                2                     1                    2            2
## 6063                2                     2                    2            2
## 6064                1                     1                    1            1
## 6065                2                     1                    2            2
## 6066                1                     1                    1            1
## 6067                2                     1                    1            1
## 6068                2                     2                    2            2
## 6069                2                     1                    2            2
## 6070                2                     2                    2            2
## 6071                1                     1                    1            1
## 6072                2                     2                    2            2
## 6073                1                     1                    1            1
## 6074                1                     1                    1            1
## 6075                2                     2                    2            2
## 6076                1                     1                    1            1
## 6077                1                     1                    1            1
## 6078                2                     1                    2            2
## 6079                2                     2                    2            2
## 6080                2                     2                    2            2
## 6081                2                     2                    2            2
## 6082                1                     1                    1            1
## 6083                2                     2                    2            2
## 6084                1                     1                    1            1
## 6085                2                     1                    2            2
## 6086                1                     1                    1            1
## 6087                1                     1                    1            1
## 6088                1                     1                    1            1
## 6089                2                     2                    2            1
## 6090                1                     1                    1            1
## 6091                1                     1                    1            1
## 6092                2                     1                    2            2
## 6093                1                     1                    1            1
## 6094                1                     1                    1            1
## 6095                2                     1                    2            2
## 6096                1                     1                    1            1
## 6097                1                     1                    1            1
## 6098                1                     1                    1            1
## 6099                2                     1                    2            2
## 6100                1                     1                    1            1
## 6101                1                     1                    1            1
## 6102                2                     1                    2            2
## 6103                2                     1                    2            2
## 6104                1                     1                    1            1
## 6105                1                     1                    1            1
## 6106                1                     1                    1            1
## 6107                2                     1                    2            2
## 6108                1                     1                    1            1
## 6109                1                     1                    1            1
## 6110                2                     2                    2            2
## 6111                2                     1                    2            2
## 6112                2                     1                    2            2
## 6113                2                     2                    2            2
## 6114                2                     2                    2            1
## 6115                2                     2                    2            2
## 6116                2                     2                    2            2
## 6117                1                     1                    1            1
## 6118                1                     1                    1            1
## 6119                1                     1                    1            1
## 6120                2                     2                    2            2
## 6121                2                     2                    2            2
## 6122                1                     1                    1            1
## 6123                2                     2                    1            1
## 6124                2                     1                    2            2
## 6125                1                     1                    1            1
## 6126                1                     1                    1            1
## 6127                1                     1                    1            1
## 6128                1                     1                    1            1
## 6129                2                     2                    2            2
## 6130                1                     1                    1            1
## 6132                2                     2                    2            2
## 6133                1                     1                    1            1
## 6134                1                     1                    1            1
## 6135                2                     1                    2            2
## 6136                1                     1                    1            1
## 6137                2                     2                    2            2
## 6138                1                     1                    1            1
## 6139                1                     1                    1            1
## 6140                1                     1                    1            1
## 6141                1                     1                    1            1
## 6142                2                     2                    2            2
## 6143                1                     1                    1            1
## 6144                2                     1                    2            2
## 6145                1                     1                    1            1
## 6146                2                     2                    2            2
## 6147                2                     2                    2            2
## 6148                2                     2                    2            2
## 6149                2                     1                    2            2
## 6150                1                     1                    1            1
## 6151                1                     1                    1            1
## 6153                1                     1                    1            1
## 6154                2                     2                    2            1
## 6155                1                     1                    1            1
## 6156                1                     1                    1            1
## 6157                1                     1                    1            1
## 6158                2                     2                    2            2
## 6159                2                     2                    2            2
## 6160                2                     2                    2            2
## 6161                2                     2                    2            2
## 6162                1                     1                    1            1
## 6163                1                     1                    1            1
## 6165                2                     2                    2            2
## 6166                2                     2                    2            2
## 6167                2                     2                    2            2
## 6168                1                     1                    1            1
## 6169                1                     1                    1            1
## 6170                1                     1                    1            1
## 6171                1                     1                    1            1
## 6172                2                     2                    2            2
## 6173                1                     1                    1            1
## 6174                1                     1                    1            1
## 6175                2                     2                    2            2
## 6176                2                     2                    2            2
## 6177                2                     2                    2            2
## 6178                2                     2                    2            1
## 6179                2                     2                    2            1
## 6180                1                     1                    1            1
## 6181                1                     1                    1            1
## 6182                2                     2                    2            2
## 6183                1                     1                    1            1
## 6184                2                     2                    2            2
## 6185                2                     2                    2            2
## 6186                2                     2                    2            2
## 6187                1                     1                    1            1
## 6188                1                     1                    1            1
## 6189                1                     1                    1            1
## 6190                2                     2                    2            2
## 6191                2                     2                    2            1
## 6192                1                     1                    1            1
## 6193                2                     1                    2            2
## 6194                2                     2                    2            2
## 6195                2                     2                    2            2
## 6197                2                     1                    2            2
## 6198                2                     1                    2            1
## 6199                1                     1                    1            1
## 6200                1                     1                    1            1
## 6201                2                     1                    1            1
## 6202                2                     2                    1            1
## 6203                2                     1                    2            2
## 6204                1                     1                    1            1
## 6205                2                     2                    2            2
## 6206                1                     1                    1            1
## 6207                1                     1                    1            1
## 6208                2                     1                    2            2
## 6209                2                     2                    2            2
## 6210                2                     2                    2            2
## 6211                2                     2                    2            2
## 6212                2                     2                    2            2
## 6213                2                     2                    1            2
## 6214                1                     1                    1            1
## 6215                1                     1                    1            1
## 6216                2                     2                    2            2
## 6217                2                     2                    2            1
## 6218                1                     1                    1            1
## 6219                1                     1                    1            1
## 6220                2                     1                    2            2
## 6221                2                     1                    2            2
## 6222                2                     2                    2            1
## 6223                2                     1                    2            2
## 6224                1                     1                    1            1
## 6225                2                     2                    2            2
## 6226                2                     2                    2            2
## 6227                1                     1                    1            1
## 6228                2                     2                    2            2
## 6229                2                     1                    2            2
## 6230                2                     2                    2            2
## 6231                1                     1                    1            1
## 6232                2                     2                    2            2
## 6233                2                     2                    2            2
## 6234                2                     1                    2            2
## 6235                2                     1                    2            2
## 6236                1                     1                    1            1
## 6237                2                     2                    2            1
## 6238                1                     1                    1            1
## 6239                1                     1                    1            1
## 6240                2                     1                    2            2
## 6241                2                     2                    2            2
## 6242                2                     2                    2            2
## 6244                2                     2                    1            1
## 6245                2                     2                    2            1
## 6246                2                     2                    2            2
## 6247                2                     2                    2            2
## 6248                2                     2                    2            2
## 6249                2                     2                    2            2
## 6250                1                     1                    1            1
## 6251                1                     1                    1            1
## 6252                2                     1                    2            2
## 6253                1                     1                    1            1
## 6254                2                     2                    1            1
## 6255                2                     1                    2            2
## 6256                2                     2                    2            2
## 6257                1                     1                    1            1
## 6258                1                     1                    1            1
## 6259                1                     1                    1            1
## 6260                2                     2                    2            2
## 6261                2                     2                    2            2
## 6262                1                     1                    1            1
## 6263                1                     1                    1            1
## 6264                2                     2                    2            2
## 6265                1                     1                    1            1
## 6266                2                     2                    2            1
## 6267                1                     2                    2            2
## 6268                1                     1                    1            1
## 6269                1                     1                    1            1
## 6270                1                     1                    1            1
## 6271                1                     1                    1            1
## 6272                1                     1                    1            1
## 6273                1                     1                    1            1
## 6274                2                     2                    2            2
## 6275                1                     1                    1            1
## 6277                1                     1                    1            1
## 6278                1                     1                    1            1
## 6279                1                     1                    1            1
## 6280                1                     1                    1            1
## 6281                1                     1                    1            1
## 6282                1                     1                    1            1
## 6284                1                     1                    1            1
## 6286                1                     1                    1            1
## 6287                2                     1                    2            2
## 6288                2                     2                    2            2
## 6289                2                     2                    2            2
## 6290                2                     2                    2            2
## 6291                1                     1                    1            1
## 6292                1                     1                    1            1
## 6293                1                     1                    1            1
## 6294                2                     2                    2            2
## 6295                1                     1                    1            1
## 6296                2                     2                    2            2
## 6297                1                     1                    1            1
## 6298                2                     2                    2            2
## 6299                1                     1                    1            1
## 6300                1                     1                    1            1
## 6301                2                     2                    2            2
## 6302                1                     1                    1            1
## 6303                1                     1                    1            1
## 6305                1                     1                    1            1
## 6306                2                     2                    2            2
## 6307                1                     1                    1            1
## 6308                2                     2                    2            2
## 6309                2                     1                    2            2
## 6310                2                     1                    2            2
## 6311                1                     1                    1            1
## 6312                2                     2                    2            2
## 6314                2                     2                    2            2
## 6315                1                     1                    1            1
## 6316                2                     2                    2            2
## 6317                2                     2                    2            2
## 6318                2                     1                    2            2
## 6319                2                     1                    2            2
## 6320                2                     2                    2            2
## 6321                1                     1                    1            1
## 6322                1                     1                    1            1
## 6323                2                     1                    2            2
## 6324                1                     1                    1            1
## 6325                1                     1                    1            1
## 6326                1                     1                    1            1
## 6328                1                     1                    1            1
## 6329                2                     1                    2            2
## 6330                2                     1                    2            2
## 6331                2                     2                    2            2
## 6332                2                     2                    2            2
## 6333                1                     1                    1            1
## 6334                1                     1                    1            1
## 6335                1                     1                    1            1
## 6336                2                     1                    2            2
## 6337                2                     2                    2            2
## 6338                1                     1                    1            1
## 6339                1                     1                    1            1
## 6340                1                     1                    1            1
## 6341                2                     2                    2            2
## 6342                1                     1                    1            1
## 6343                1                     1                    1            1
## 6344                1                     1                    1            1
## 6345                1                     1                    1            1
## 6346                2                     2                    2            2
## 6347                2                     2                    2            2
## 6348                2                     2                    2            2
## 6350                2                     1                    2            2
## 6351                1                     1                    1            1
## 6354                1                     1                    1            1
## 6355                2                     1                    2            2
## 6356                1                     1                    1            1
## 6357                1                     1                    1            1
## 6358                2                     1                    2            2
## 6359                1                     1                    1            1
## 6360                2                     1                    2            2
## 6361                1                     1                    1            1
## 6362                2                     2                    2            2
## 6363                1                     1                    1            1
## 6364                1                     1                    1            1
## 6365                2                     2                    2            2
## 6366                1                     1                    1            1
## 6367                1                     1                    1            1
## 6368                2                     2                    2            2
## 6369                1                     1                    1            1
## 6370                1                     1                    1            1
## 6371                1                     1                    1            1
## 6372                2                     2                    2            1
## 6374                1                     1                    1            1
## 6375                2                     2                    2            2
## 6376                2                     1                    2            2
## 6377                2                     2                    2            2
## 6378                2                     2                    2            2
## 6379                2                     1                    2            2
## 6380                1                     1                    1            1
## 6381                1                     1                    1            1
## 6382                1                     1                    1            1
## 6383                1                     1                    1            1
## 6384                2                     2                    2            2
## 6386                1                     1                    1            1
## 6387                2                     2                    2            1
## 6388                2                     2                    2            2
## 6389                1                     1                    1            1
## 6390                1                     1                    1            1
## 6391                2                     2                    2            2
## 6392                2                     2                    2            2
## 6394                1                     1                    1            1
## 6395                2                     2                    2            2
## 6396                1                     1                    1            1
## 6397                1                     1                    1            1
## 6398                2                     2                    1            1
## 6399                2                     2                    2            2
## 6400                2                     2                    2            2
## 6402                2                     2                    2            2
## 6403                1                     1                    1            1
## 6404                1                     1                    1            1
## 6405                1                     1                    1            1
## 6406                1                     1                    1            1
## 6407                2                     1                    2            2
## 6408                2                     2                    2            2
## 6409                2                     1                    2            2
## 6410                1                     1                    1            1
## 6411                1                     1                    1            1
## 6412                2                     2                    2            2
## 6413                2                     2                    2            2
## 6414                1                     1                    1            1
## 6415                2                     1                    2            2
## 6416                2                     2                    2            2
## 6417                2                     1                    2            2
## 6418                2                     2                    2            2
## 6419                1                     1                    1            1
## 6420                1                     1                    1            1
## 6422                2                     2                    2            2
## 6423                1                     1                    1            1
## 6424                2                     2                    2            2
## 6425                2                     1                    2            2
## 6426                1                     1                    1            1
## 6427                1                     1                    1            1
## 6429                2                     1                    2            2
## 6430                1                     1                    1            1
## 6431                2                     1                    2            2
## 6432                1                     1                    1            1
## 6433                1                     1                    1            1
## 6434                1                     1                    1            1
## 6435                1                     1                    1            1
## 6436                1                     1                    1            1
## 6437                2                     2                    2            1
## 6438                2                     2                    2            2
## 6439                2                     2                    2            2
## 6440                1                     1                    1            1
## 6441                1                     1                    1            1
## 6443                1                     1                    1            1
## 6444                1                     1                    1            1
## 6445                2                     2                    2            2
## 6446                2                     2                    2            2
## 6447                2                     2                    2            2
## 6448                2                     2                    2            1
## 6449                1                     1                    1            1
## 6450                2                     2                    2            2
## 6451                2                     2                    2            2
## 6452                2                     1                    2            2
## 6453                2                     2                    2            2
## 6454                1                     1                    1            1
## 6455                2                     1                    2            2
## 6456                1                     1                    1            1
## 6457                2                     2                    2            2
## 6458                1                     1                    1            1
## 6459                1                     1                    1            1
## 6462                1                     1                    1            1
## 6463                1                     1                    1            1
## 6464                1                     1                    1            1
## 6465                1                     1                    1            1
## 6466                2                     2                    2            2
## 6467                1                     1                    1            1
## 6468                2                     1                    2            2
## 6469                2                     1                    2            2
## 6470                2                     2                    2            2
## 6471                1                     1                    1            1
## 6472                2                     1                    2            2
## 6473                1                     1                    1            1
## 6474                1                     1                    1            1
## 6475                2                     2                    2            2
## 6476                2                     2                    2            2
## 6477                2                     1                    2            2
## 6478                1                     1                    1            1
## 6479                2                     1                    2            2
## 6480                2                     1                    2            2
## 6481                2                     1                    2            1
## 6482                2                     2                    2            2
## 6483                1                     1                    1            1
## 6484                1                     1                    1            1
## 6485                1                     1                    1            1
## 6486                1                     1                    1            1
## 6487                2                     2                    2            2
## 6488                2                     1                    2            2
## 6489                2                     2                    2            2
## 6491                1                     1                    1            1
## 6492                2                     2                    2            2
## 6494                1                     1                    1            1
## 6495                1                     1                    1            1
## 6496                2                     1                    2            2
## 6497                1                     1                    1            1
## 6498                2                     2                    2            2
## 6499                2                     2                    2            1
## 6500                2                     2                    2            2
## 6501                1                     1                    1            1
## 6502                2                     1                    2            2
## 6503                2                     1                    1            1
## 6504                2                     2                    2            2
## 6505                2                     2                    2            2
## 6506                1                     2                    2            1
## 6507                2                     2                    2            2
## 6508                1                     1                    1            1
## 6509                1                     1                    1            1
## 6510                1                     1                    1            1
## 6511                2                     1                    2            2
## 6512                2                     2                    2            2
## 6513                2                     1                    1            1
## 6514                2                     2                    2            2
## 6515                2                     2                    2            2
## 6516                1                     1                    1            1
## 6517                1                     1                    1            1
## 6518                2                     2                    2            1
## 6519                1                     1                    1            1
## 6520                2                     2                    2            2
## 6521                2                     2                    2            2
## 6522                2                     2                    2            2
## 6523                2                     2                    2            2
## 6525                2                     2                    2            2
## 6526                1                     1                    1            1
## 6527                1                     1                    1            1
## 6528                2                     2                    2            2
## 6529                1                     1                    1            1
## 6530                2                     2                    2            2
## 6532                1                     1                    1            1
## 6533                1                     1                    1            1
## 6534                1                     1                    1            1
## 6535                1                     1                    1            1
## 6537                2                     1                    2            2
## 6538                2                     2                    2            2
## 6540                2                     1                    2            2
## 6542                2                     1                    2            2
## 6543                1                     1                    1            1
## 6544                1                     1                    1            1
## 6545                2                     2                    2            2
## 6547                1                     1                    1            1
## 6548                2                     2                    2            2
## 6549                2                     2                    2            2
## 6550                1                     1                    1            1
## 6551                2                     2                    2            2
## 6552                2                     1                    2            2
## 6553                2                     2                    1            2
## 6554                2                     2                    2            2
## 6555                2                     1                    2            2
## 6556                1                     1                    1            1
## 6557                1                     1                    1            1
## 6558                2                     2                    2            2
## 6559                2                     2                    2            2
## 6560                1                     1                    1            1
## 6561                2                     1                    2            1
## 6562                2                     2                    2            2
## 6563                2                     2                    2            2
## 6564                2                     1                    2            2
## 6565                2                     1                    2            2
## 6566                1                     1                    1            1
## 6567                2                     2                    2            2
## 6568                2                     1                    2            2
## 6569                2                     2                    2            1
## 6570                2                     1                    2            2
## 6571                1                     1                    1            1
## 6573                1                     1                    1            1
## 6574                1                     1                    1            1
## 6575                1                     1                    1            1
## 6576                1                     1                    1            1
## 6578                2                     2                    2            2
## 6579                2                     2                    2            2
## 6580                1                     1                    1            1
## 6581                1                     2                    2            2
## 6582                2                     2                    2            2
## 6584                1                     1                    1            1
## 6585                2                     2                    2            2
## 6586                2                     2                    2            2
## 6587                1                     1                    1            1
## 6588                2                     2                    2            2
## 6589                2                     1                    2            2
## 6590                2                     1                    2            2
## 6591                1                     1                    1            1
## 6592                1                     1                    1            1
## 6593                2                     2                    2            2
## 6595                2                     2                    2            2
## 6596                2                     2                    2            2
## 6599                2                     1                    2            2
## 6600                2                     2                    2            2
## 6601                1                     1                    1            1
## 6602                2                     2                    2            2
## 6603                2                     1                    1            1
## 6604                2                     1                    1            1
## 6605                1                     1                    1            1
## 6606                1                     1                    1            1
## 6607                1                     1                    1            1
## 6608                2                     2                    2            2
## 6609                1                     1                    1            1
## 6610                1                     1                    1            1
## 6611                1                     1                    1            1
## 6612                1                     1                    1            1
## 6613                2                     1                    2            2
## 6615                2                     2                    2            2
## 6616                1                     1                    1            1
## 6617                1                     1                    1            1
## 6618                2                     2                    2            2
## 6619                2                     2                    2            2
## 6620                1                     1                    1            1
## 6621                2                     1                    1            1
## 6622                2                     2                    2            1
## 6623                1                     1                    1            1
## 6624                1                     1                    1            1
## 6625                2                     1                    2            1
## 6626                1                     1                    1            1
## 6627                2                     2                    2            2
## 6628                2                     2                    2            2
## 6629                2                     2                    2            2
## 6630                1                     2                    2            2
## 6631                1                     1                    1            1
## 6632                1                     1                    1            1
## 6633                2                     1                    2            2
## 6634                1                     1                    1            1
## 6635                2                     2                    2            2
## 6636                2                     2                    2            2
## 6637                2                     1                    2            2
## 6638                2                     2                    2            1
## 6639                1                     1                    1            1
## 6640                2                     1                    2            2
## 6641                1                     1                    1            1
## 6642                2                     2                    2            2
## 6643                1                     1                    1            1
## 6644                2                     2                    2            2
## 6645                1                     1                    1            1
## 6646                2                     2                    2            1
##      package_transport_tz package_sightseeing package_guided_tour
## 1                       2                   1                   1
## 2                       2                   1                   1
## 3                       2                   2                   2
## 4                       1                   1                   1
## 5                       2                   1                   2
## 6                       1                   1                   1
## 7                       1                   1                   1
## 8                       1                   1                   1
## 9                       1                   1                   1
## 10                      2                   2                   2
## 11                      2                   2                   2
## 12                      2                   2                   2
## 13                      2                   1                   1
## 14                      1                   2                   2
## 15                      1                   1                   1
## 16                      2                   2                   2
## 17                      1                   1                   1
## 18                      1                   2                   2
## 19                      1                   2                   1
## 20                      1                   1                   1
## 21                      1                   1                   1
## 22                      1                   1                   1
## 23                      1                   1                   1
## 24                      2                   2                   2
## 26                      2                   2                   2
## 27                      1                   1                   1
## 28                      1                   1                   1
## 29                      1                   1                   1
## 30                      1                   2                   2
## 31                      1                   1                   2
## 32                      1                   1                   1
## 33                      2                   1                   1
## 34                      1                   1                   1
## 35                      1                   1                   1
## 36                      2                   2                   1
## 37                      1                   1                   1
## 38                      2                   1                   1
## 39                      1                   1                   1
## 40                      2                   2                   1
## 41                      1                   1                   1
## 42                      1                   1                   1
## 43                      1                   1                   1
## 44                      1                   1                   2
## 45                      1                   1                   1
## 46                      1                   1                   1
## 47                      1                   1                   1
## 48                      2                   2                   2
## 49                      1                   1                   1
## 50                      2                   2                   2
## 51                      1                   1                   1
## 52                      1                   1                   1
## 53                      2                   2                   2
## 54                      1                   1                   1
## 55                      1                   1                   1
## 56                      1                   1                   1
## 57                      2                   2                   2
## 58                      1                   1                   1
## 59                      2                   2                   2
## 60                      1                   1                   1
## 61                      1                   1                   1
## 62                      2                   2                   2
## 63                      1                   1                   1
## 64                      1                   2                   2
## 65                      1                   1                   1
## 66                      1                   1                   1
## 67                      1                   1                   1
## 68                      1                   1                   1
## 69                      1                   1                   1
## 70                      1                   1                   1
## 71                      2                   2                   2
## 72                      2                   2                   1
## 73                      1                   1                   1
## 74                      1                   1                   1
## 75                      2                   2                   2
## 76                      1                   1                   1
## 77                      2                   1                   2
## 78                      2                   2                   2
## 79                      2                   2                   2
## 80                      2                   1                   1
## 81                      2                   2                   2
## 83                      1                   1                   1
## 84                      1                   1                   1
## 85                      1                   1                   1
## 86                      2                   1                   1
## 87                      2                   1                   1
## 88                      2                   1                   1
## 89                      1                   1                   1
## 90                      1                   1                   1
## 91                      1                   1                   1
## 92                      1                   1                   2
## 93                      1                   2                   2
## 94                      2                   1                   1
## 96                      1                   1                   1
## 97                      1                   1                   1
## 98                      2                   2                   2
## 99                      2                   2                   1
## 100                     1                   1                   1
## 101                     1                   1                   1
## 102                     1                   1                   1
## 103                     1                   1                   1
## 104                     1                   1                   1
## 105                     2                   1                   1
## 106                     2                   2                   1
## 107                     2                   2                   2
## 108                     2                   2                   2
## 109                     2                   2                   2
## 110                     1                   1                   1
## 111                     2                   2                   2
## 112                     1                   1                   1
## 113                     1                   1                   1
## 114                     2                   2                   2
## 115                     1                   1                   1
## 117                     2                   2                   2
## 118                     2                   2                   2
## 119                     2                   1                   2
## 120                     2                   1                   1
## 121                     1                   2                   2
## 123                     1                   1                   1
## 124                     1                   1                   1
## 125                     2                   2                   2
## 126                     1                   1                   1
## 127                     2                   2                   2
## 128                     1                   1                   1
## 129                     2                   2                   2
## 130                     2                   1                   2
## 131                     1                   1                   1
## 132                     2                   2                   2
## 133                     2                   2                   2
## 134                     1                   1                   1
## 135                     2                   2                   2
## 136                     1                   2                   2
## 138                     2                   1                   2
## 139                     1                   1                   1
## 140                     1                   1                   1
## 141                     2                   1                   2
## 142                     1                   1                   1
## 143                     1                   1                   1
## 144                     1                   1                   1
## 145                     1                   1                   1
## 146                     1                   1                   1
## 147                     2                   1                   1
## 148                     2                   2                   2
## 149                     2                   1                   1
## 150                     1                   1                   1
## 151                     1                   1                   1
## 152                     2                   1                   2
## 153                     2                   2                   2
## 154                     1                   1                   1
## 155                     2                   1                   2
## 156                     2                   1                   1
## 157                     1                   1                   1
## 158                     1                   1                   1
## 159                     2                   2                   2
## 160                     1                   1                   1
## 161                     2                   2                   2
## 162                     2                   2                   2
## 163                     2                   2                   2
## 164                     2                   1                   1
## 165                     2                   2                   2
## 166                     2                   2                   2
## 167                     2                   2                   2
## 168                     2                   1                   1
## 169                     1                   1                   1
## 170                     1                   1                   1
## 171                     1                   1                   1
## 173                     2                   2                   2
## 174                     1                   1                   1
## 175                     1                   1                   1
## 176                     2                   2                   2
## 177                     1                   1                   1
## 178                     2                   2                   2
## 179                     1                   2                   1
## 180                     1                   1                   1
## 181                     2                   1                   2
## 182                     1                   1                   1
## 183                     2                   2                   2
## 184                     2                   2                   2
## 185                     2                   1                   2
## 186                     1                   1                   1
## 187                     2                   2                   2
## 188                     2                   2                   2
## 189                     2                   2                   2
## 190                     2                   2                   2
## 191                     1                   1                   1
## 192                     2                   1                   1
## 193                     2                   2                   2
## 194                     1                   1                   1
## 195                     1                   1                   1
## 196                     1                   1                   1
## 197                     1                   1                   1
## 198                     1                   1                   1
## 199                     2                   1                   1
## 200                     1                   1                   1
## 201                     1                   1                   1
## 202                     2                   2                   2
## 203                     1                   2                   2
## 204                     1                   1                   1
## 205                     2                   2                   2
## 206                     2                   2                   2
## 207                     1                   2                   2
## 208                     2                   2                   2
## 209                     1                   1                   2
## 210                     2                   2                   2
## 211                     1                   1                   1
## 212                     2                   1                   1
## 213                     2                   2                   2
## 214                     1                   1                   1
## 215                     1                   1                   1
## 216                     2                   2                   2
## 217                     2                   2                   2
## 218                     1                   1                   1
## 219                     2                   1                   1
## 220                     2                   2                   1
## 221                     2                   2                   2
## 222                     2                   2                   1
## 223                     1                   1                   1
## 224                     1                   1                   1
## 225                     2                   1                   2
## 226                     1                   1                   1
## 228                     1                   1                   1
## 229                     1                   1                   1
## 230                     1                   1                   1
## 231                     1                   1                   1
## 232                     1                   1                   1
## 233                     2                   2                   2
## 234                     2                   2                   2
## 235                     1                   1                   1
## 237                     2                   2                   2
## 238                     2                   1                   1
## 239                     1                   1                   1
## 241                     1                   1                   1
## 242                     2                   1                   1
## 243                     1                   1                   1
## 244                     1                   1                   1
## 245                     2                   2                   2
## 246                     2                   2                   2
## 247                     1                   1                   1
## 248                     1                   2                   2
## 249                     2                   1                   1
## 250                     2                   1                   1
## 251                     2                   1                   1
## 252                     1                   1                   1
## 253                     2                   2                   2
## 254                     1                   1                   2
## 255                     2                   2                   2
## 256                     1                   1                   1
## 257                     1                   1                   1
## 258                     1                   1                   2
## 259                     2                   2                   1
## 260                     1                   1                   1
## 261                     2                   2                   2
## 262                     2                   2                   2
## 264                     1                   1                   1
## 265                     2                   2                   1
## 266                     2                   1                   2
## 267                     1                   1                   1
## 268                     2                   2                   1
## 269                     2                   1                   2
## 270                     1                   1                   1
## 271                     1                   1                   1
## 272                     1                   1                   1
## 273                     1                   1                   1
## 274                     2                   2                   2
## 275                     1                   1                   1
## 276                     2                   2                   2
## 277                     2                   2                   1
## 278                     1                   1                   1
## 279                     1                   1                   1
## 280                     1                   1                   1
## 282                     1                   1                   1
## 283                     1                   1                   1
## 284                     2                   1                   1
## 285                     1                   2                   2
## 286                     1                   1                   1
## 287                     2                   2                   2
## 288                     1                   1                   1
## 289                     1                   1                   1
## 290                     1                   1                   1
## 291                     1                   1                   1
## 292                     1                   1                   1
## 293                     1                   1                   1
## 294                     1                   1                   1
## 295                     2                   1                   2
## 296                     1                   1                   1
## 297                     1                   1                   1
## 298                     1                   1                   1
## 299                     1                   1                   1
## 300                     1                   1                   1
## 302                     1                   1                   1
## 303                     1                   1                   1
## 305                     1                   1                   2
## 306                     1                   1                   1
## 307                     1                   1                   1
## 308                     1                   1                   1
## 309                     1                   1                   1
## 310                     2                   2                   2
## 311                     2                   2                   2
## 312                     1                   1                   1
## 313                     1                   1                   1
## 314                     2                   2                   2
## 315                     1                   2                   2
## 316                     1                   1                   1
## 320                     1                   1                   1
## 321                     1                   1                   1
## 322                     1                   1                   1
## 323                     1                   1                   1
## 324                     1                   1                   1
## 325                     1                   1                   1
## 326                     1                   1                   1
## 327                     1                   1                   1
## 328                     2                   2                   2
## 329                     1                   1                   1
## 330                     1                   1                   1
## 331                     2                   2                   2
## 332                     1                   2                   2
## 333                     1                   2                   1
## 334                     2                   2                   2
## 335                     1                   1                   1
## 336                     1                   1                   1
## 337                     1                   1                   1
## 338                     2                   2                   2
## 339                     1                   1                   1
## 340                     2                   2                   2
## 341                     1                   2                   2
## 342                     1                   1                   1
## 343                     1                   1                   1
## 344                     1                   1                   1
## 345                     1                   1                   1
## 346                     1                   2                   2
## 347                     2                   2                   1
## 348                     1                   1                   1
## 349                     1                   1                   1
## 350                     2                   1                   1
## 351                     2                   2                   2
## 352                     2                   2                   2
## 354                     1                   1                   1
## 355                     1                   1                   1
## 356                     2                   1                   2
## 357                     2                   1                   2
## 358                     1                   1                   1
## 359                     2                   1                   1
## 360                     1                   1                   1
## 361                     2                   2                   2
## 362                     2                   1                   2
## 363                     2                   2                   2
## 364                     2                   2                   2
## 365                     1                   1                   1
## 366                     1                   1                   1
## 367                     1                   1                   1
## 368                     1                   1                   1
## 369                     2                   1                   1
## 370                     2                   2                   1
## 371                     1                   1                   1
## 372                     1                   1                   1
## 373                     2                   2                   2
## 374                     1                   1                   1
## 375                     2                   2                   1
## 376                     2                   2                   2
## 377                     1                   1                   1
## 378                     2                   1                   2
## 379                     2                   2                   2
## 380                     1                   1                   1
## 381                     1                   1                   1
## 382                     1                   1                   1
## 383                     1                   1                   1
## 384                     1                   1                   1
## 385                     1                   1                   1
## 386                     2                   2                   1
## 387                     1                   1                   1
## 388                     2                   2                   2
## 389                     1                   1                   1
## 390                     1                   1                   1
## 391                     1                   1                   1
## 392                     2                   1                   1
## 393                     1                   1                   1
## 394                     1                   1                   1
## 396                     2                   2                   2
## 397                     1                   1                   1
## 398                     1                   1                   1
## 399                     1                   1                   1
## 400                     1                   1                   1
## 401                     2                   2                   2
## 402                     1                   1                   1
## 403                     2                   2                   2
## 404                     1                   2                   1
## 405                     1                   1                   1
## 406                     1                   1                   1
## 407                     2                   2                   2
## 408                     1                   1                   1
## 409                     1                   1                   1
## 410                     1                   1                   1
## 411                     2                   2                   2
## 412                     1                   1                   1
## 413                     1                   1                   1
## 414                     1                   1                   1
## 415                     1                   1                   1
## 416                     1                   1                   1
## 417                     2                   1                   2
## 418                     1                   1                   1
## 419                     1                   1                   1
## 420                     1                   1                   1
## 422                     2                   2                   2
## 423                     1                   1                   1
## 424                     1                   1                   1
## 426                     1                   1                   1
## 427                     1                   1                   1
## 428                     2                   1                   2
## 429                     1                   1                   1
## 430                     1                   1                   1
## 431                     2                   2                   2
## 432                     2                   2                   2
## 433                     1                   1                   1
## 435                     2                   2                   2
## 436                     1                   1                   1
## 437                     2                   1                   1
## 439                     1                   1                   1
## 440                     1                   1                   1
## 441                     1                   1                   1
## 442                     1                   1                   1
## 443                     2                   1                   1
## 444                     2                   1                   2
## 445                     1                   1                   1
## 446                     1                   1                   2
## 447                     1                   1                   1
## 448                     1                   1                   1
## 449                     2                   2                   2
## 450                     2                   2                   2
## 451                     1                   1                   1
## 452                     1                   1                   1
## 453                     1                   1                   1
## 454                     1                   1                   1
## 456                     1                   1                   1
## 457                     1                   1                   1
## 458                     2                   2                   2
## 459                     2                   1                   1
## 460                     1                   1                   1
## 461                     1                   1                   1
## 462                     2                   1                   1
## 463                     2                   2                   1
## 464                     2                   2                   2
## 465                     2                   2                   2
## 466                     1                   1                   1
## 467                     2                   2                   2
## 468                     2                   2                   2
## 469                     2                   2                   2
## 470                     2                   1                   1
## 471                     1                   1                   1
## 472                     1                   1                   1
## 473                     2                   2                   2
## 474                     2                   2                   2
## 475                     2                   2                   2
## 476                     2                   1                   1
## 477                     2                   2                   2
## 478                     2                   2                   2
## 479                     1                   1                   1
## 480                     1                   2                   1
## 481                     1                   1                   1
## 482                     1                   1                   1
## 483                     1                   1                   1
## 484                     1                   2                   1
## 485                     1                   1                   1
## 486                     1                   1                   1
## 487                     2                   2                   2
## 488                     1                   2                   2
## 489                     2                   1                   2
## 490                     1                   1                   1
## 491                     1                   1                   1
## 492                     1                   1                   1
## 493                     1                   1                   1
## 494                     2                   2                   2
## 495                     2                   2                   1
## 497                     2                   1                   2
## 498                     1                   1                   1
## 499                     2                   1                   2
## 500                     1                   1                   1
## 501                     2                   2                   2
## 502                     2                   2                   2
## 503                     1                   1                   1
## 504                     1                   1                   1
## 505                     1                   1                   1
## 506                     1                   1                   1
## 507                     1                   1                   1
## 508                     1                   1                   1
## 509                     2                   2                   2
## 510                     1                   1                   1
## 511                     2                   1                   1
## 512                     1                   2                   2
## 513                     2                   2                   2
## 514                     1                   1                   1
## 515                     2                   2                   2
## 516                     2                   1                   1
## 517                     2                   1                   2
## 518                     2                   1                   1
## 519                     1                   1                   1
## 520                     2                   2                   1
## 521                     1                   1                   1
## 522                     2                   1                   2
## 523                     1                   1                   1
## 524                     2                   2                   2
## 526                     2                   2                   2
## 527                     1                   1                   1
## 528                     2                   2                   1
## 529                     1                   1                   1
## 530                     1                   1                   1
## 531                     2                   1                   1
## 532                     1                   1                   1
## 533                     2                   2                   1
## 534                     1                   1                   1
## 535                     1                   2                   2
## 536                     1                   1                   2
## 537                     2                   2                   2
## 538                     2                   1                   2
## 539                     2                   2                   2
## 540                     1                   2                   1
## 541                     2                   2                   2
## 542                     1                   1                   1
## 543                     1                   1                   1
## 544                     1                   1                   1
## 545                     2                   2                   2
## 546                     1                   1                   1
## 547                     1                   1                   1
## 548                     1                   1                   1
## 549                     2                   2                   1
## 550                     1                   1                   1
## 551                     1                   1                   1
## 552                     1                   1                   1
## 553                     2                   2                   2
## 554                     2                   2                   2
## 555                     1                   1                   1
## 556                     2                   1                   1
## 557                     1                   1                   1
## 558                     1                   1                   1
## 559                     2                   2                   2
## 560                     2                   2                   2
## 561                     2                   2                   1
## 562                     2                   2                   2
## 563                     1                   1                   1
## 564                     2                   2                   2
## 565                     2                   2                   2
## 566                     1                   1                   1
## 567                     2                   2                   2
## 568                     2                   2                   1
## 570                     2                   2                   2
## 571                     1                   1                   1
## 572                     2                   1                   2
## 573                     2                   1                   1
## 574                     2                   2                   2
## 575                     2                   2                   2
## 576                     1                   1                   1
## 577                     1                   1                   1
## 578                     2                   2                   2
## 579                     1                   1                   1
## 581                     1                   1                   1
## 582                     1                   1                   1
## 583                     2                   2                   2
## 584                     1                   1                   1
## 585                     1                   1                   1
## 586                     2                   2                   2
## 587                     2                   1                   1
## 588                     1                   1                   1
## 589                     1                   1                   1
## 590                     2                   1                   2
## 591                     2                   2                   2
## 592                     2                   2                   2
## 593                     2                   2                   2
## 594                     1                   1                   1
## 595                     1                   1                   1
## 596                     2                   2                   1
## 597                     1                   1                   1
## 598                     2                   2                   2
## 599                     2                   1                   1
## 600                     2                   2                   2
## 601                     2                   2                   2
## 602                     2                   1                   1
## 603                     1                   1                   1
## 604                     2                   2                   2
## 605                     1                   2                   2
## 606                     2                   1                   1
## 607                     2                   2                   2
## 608                     1                   1                   2
## 609                     2                   2                   2
## 611                     1                   2                   2
## 612                     1                   1                   1
## 613                     1                   1                   1
## 614                     1                   1                   1
## 615                     1                   1                   1
## 616                     1                   1                   1
## 617                     1                   1                   1
## 618                     2                   2                   2
## 619                     1                   2                   1
## 620                     1                   1                   2
## 621                     2                   1                   1
## 622                     1                   1                   1
## 623                     2                   1                   1
## 624                     2                   2                   2
## 625                     1                   1                   1
## 626                     2                   2                   2
## 627                     1                   1                   1
## 628                     1                   1                   1
## 629                     2                   2                   2
## 631                     1                   1                   1
## 632                     2                   1                   1
## 633                     1                   1                   1
## 634                     1                   1                   1
## 635                     1                   1                   1
## 636                     2                   2                   2
## 638                     2                   1                   1
## 639                     1                   2                   1
## 640                     1                   1                   1
## 641                     1                   1                   1
## 642                     2                   1                   1
## 643                     2                   2                   2
## 644                     2                   2                   1
## 645                     2                   2                   2
## 646                     1                   1                   1
## 647                     2                   2                   2
## 648                     2                   2                   2
## 649                     2                   1                   1
## 650                     1                   1                   1
## 651                     1                   1                   1
## 652                     2                   2                   2
## 653                     1                   1                   1
## 654                     1                   1                   1
## 655                     2                   1                   2
## 656                     2                   2                   2
## 657                     1                   1                   1
## 658                     1                   1                   1
## 659                     2                   2                   2
## 660                     2                   2                   2
## 661                     1                   1                   1
## 662                     1                   1                   1
## 663                     2                   2                   2
## 664                     1                   1                   1
## 665                     1                   1                   1
## 666                     1                   1                   1
## 667                     1                   1                   1
## 669                     1                   1                   1
## 670                     2                   1                   1
## 671                     1                   1                   1
## 672                     2                   2                   2
## 673                     2                   2                   2
## 674                     2                   2                   2
## 675                     1                   1                   1
## 676                     2                   2                   2
## 677                     2                   2                   2
## 678                     1                   1                   1
## 679                     1                   1                   1
## 680                     1                   1                   1
## 681                     2                   2                   1
## 682                     1                   1                   1
## 683                     1                   1                   1
## 684                     2                   2                   2
## 685                     2                   2                   2
## 686                     1                   1                   1
## 688                     2                   2                   2
## 690                     2                   2                   2
## 691                     2                   1                   2
## 692                     2                   2                   2
## 693                     1                   1                   1
## 694                     2                   2                   2
## 695                     1                   1                   1
## 696                     1                   1                   1
## 697                     1                   1                   1
## 698                     1                   1                   1
## 699                     2                   2                   2
## 700                     1                   2                   2
## 701                     1                   1                   1
## 702                     1                   1                   1
## 703                     2                   2                   2
## 704                     1                   1                   1
## 705                     1                   1                   1
## 706                     1                   1                   1
## 707                     2                   2                   2
## 708                     1                   1                   1
## 709                     2                   2                   2
## 710                     1                   2                   1
## 711                     2                   2                   2
## 712                     2                   2                   2
## 713                     1                   1                   1
## 714                     1                   1                   1
## 715                     1                   1                   1
## 716                     2                   1                   1
## 717                     1                   1                   1
## 718                     1                   1                   1
## 719                     2                   1                   1
## 720                     2                   2                   2
## 721                     2                   2                   2
## 722                     1                   1                   1
## 723                     2                   1                   2
## 724                     1                   1                   1
## 725                     2                   1                   1
## 726                     1                   1                   1
## 727                     1                   1                   1
## 728                     1                   1                   1
## 729                     2                   2                   2
## 731                     2                   2                   2
## 732                     1                   1                   1
## 733                     1                   1                   1
## 734                     2                   2                   2
## 735                     2                   2                   1
## 736                     2                   2                   1
## 737                     1                   1                   1
## 738                     2                   2                   2
## 739                     1                   1                   1
## 741                     1                   1                   1
## 742                     2                   1                   2
## 743                     1                   1                   1
## 744                     1                   1                   1
## 745                     2                   2                   2
## 746                     2                   2                   2
## 747                     1                   1                   1
## 748                     2                   2                   2
## 749                     1                   1                   1
## 750                     1                   1                   1
## 751                     1                   2                   1
## 752                     1                   1                   1
## 753                     1                   1                   1
## 754                     2                   2                   2
## 755                     1                   1                   1
## 756                     1                   1                   1
## 757                     1                   1                   1
## 758                     2                   2                   2
## 759                     2                   1                   1
## 760                     1                   1                   1
## 761                     1                   1                   2
## 762                     2                   2                   1
## 763                     2                   2                   2
## 764                     1                   1                   1
## 765                     1                   1                   1
## 766                     2                   2                   2
## 767                     2                   2                   2
## 768                     2                   2                   1
## 769                     2                   2                   2
## 770                     1                   1                   1
## 771                     1                   1                   1
## 772                     2                   2                   2
## 773                     1                   1                   1
## 774                     1                   1                   1
## 775                     1                   1                   1
## 776                     2                   2                   2
## 777                     1                   1                   1
## 778                     2                   2                   2
## 779                     1                   1                   1
## 780                     2                   2                   2
## 781                     1                   1                   1
## 782                     2                   2                   2
## 783                     1                   1                   1
## 784                     2                   2                   2
## 785                     2                   2                   2
## 786                     1                   2                   2
## 787                     1                   1                   2
## 788                     2                   1                   2
## 789                     2                   1                   1
## 790                     2                   2                   2
## 791                     2                   1                   1
## 792                     2                   2                   2
## 793                     1                   1                   1
## 794                     2                   2                   2
## 795                     2                   2                   2
## 797                     1                   1                   1
## 798                     2                   1                   1
## 799                     2                   1                   1
## 800                     1                   2                   1
## 801                     1                   1                   1
## 802                     1                   1                   1
## 803                     2                   2                   1
## 804                     1                   1                   1
## 805                     1                   1                   1
## 806                     1                   1                   1
## 807                     1                   1                   1
## 808                     2                   2                   2
## 809                     2                   1                   1
## 810                     2                   1                   1
## 811                     2                   1                   1
## 812                     1                   1                   1
## 814                     1                   1                   1
## 815                     1                   1                   1
## 816                     1                   1                   1
## 817                     2                   2                   2
## 818                     2                   2                   2
## 820                     2                   2                   2
## 821                     2                   1                   2
## 822                     1                   1                   1
## 823                     1                   1                   1
## 824                     1                   1                   1
## 825                     1                   1                   1
## 826                     2                   2                   2
## 827                     1                   1                   1
## 828                     2                   2                   2
## 829                     1                   1                   1
## 831                     1                   1                   1
## 832                     2                   2                   1
## 833                     1                   1                   1
## 834                     1                   1                   1
## 835                     2                   2                   2
## 836                     1                   1                   1
## 837                     2                   2                   2
## 838                     2                   1                   1
## 839                     1                   1                   1
## 841                     1                   1                   1
## 842                     1                   1                   1
## 845                     2                   2                   2
## 846                     1                   1                   1
## 847                     2                   1                   2
## 848                     1                   1                   1
## 849                     1                   1                   1
## 850                     1                   1                   1
## 851                     1                   1                   1
## 852                     2                   2                   2
## 853                     1                   1                   1
## 854                     1                   1                   1
## 855                     2                   2                   1
## 856                     2                   1                   1
## 857                     1                   1                   1
## 858                     2                   2                   2
## 859                     2                   2                   2
## 860                     1                   1                   1
## 861                     2                   2                   1
## 862                     1                   1                   1
## 863                     2                   2                   2
## 864                     2                   2                   2
## 865                     2                   2                   1
## 866                     1                   1                   1
## 867                     1                   1                   1
## 868                     2                   2                   1
## 869                     1                   1                   1
## 870                     1                   1                   1
## 871                     1                   1                   1
## 872                     2                   2                   2
## 873                     2                   1                   1
## 874                     2                   1                   1
## 875                     2                   1                   1
## 876                     1                   1                   1
## 877                     1                   1                   1
## 878                     1                   1                   1
## 879                     2                   2                   1
## 880                     2                   2                   2
## 881                     1                   1                   1
## 882                     2                   1                   1
## 883                     1                   1                   1
## 885                     1                   1                   1
## 886                     1                   2                   1
## 887                     1                   1                   1
## 889                     1                   1                   1
## 890                     2                   2                   2
## 891                     2                   2                   2
## 892                     1                   1                   1
## 893                     1                   1                   1
## 894                     1                   1                   1
## 895                     1                   1                   1
## 896                     2                   2                   2
## 897                     2                   2                   1
## 898                     2                   1                   1
## 899                     1                   1                   1
## 900                     1                   1                   1
## 902                     1                   1                   1
## 903                     2                   2                   1
## 904                     1                   2                   1
## 905                     1                   1                   1
## 906                     1                   1                   1
## 907                     2                   1                   2
## 908                     1                   1                   1
## 909                     2                   1                   1
## 910                     1                   1                   1
## 911                     1                   1                   1
## 912                     1                   1                   1
## 913                     2                   2                   2
## 914                     1                   2                   2
## 915                     1                   1                   1
## 916                     1                   1                   1
## 917                     1                   1                   1
## 918                     1                   1                   1
## 919                     1                   1                   1
## 920                     1                   1                   1
## 921                     1                   1                   1
## 922                     2                   2                   1
## 923                     2                   2                   2
## 924                     2                   1                   1
## 925                     1                   1                   1
## 926                     2                   2                   2
## 927                     2                   2                   2
## 928                     2                   2                   2
## 929                     1                   1                   1
## 930                     1                   1                   1
## 931                     2                   1                   2
## 932                     1                   1                   1
## 933                     1                   1                   1
## 934                     2                   1                   2
## 935                     1                   1                   1
## 936                     2                   2                   2
## 937                     1                   1                   1
## 938                     1                   1                   1
## 939                     1                   1                   1
## 940                     1                   1                   1
## 941                     1                   1                   1
## 942                     2                   1                   1
## 943                     2                   1                   1
## 945                     2                   1                   1
## 946                     1                   1                   1
## 947                     2                   1                   1
## 948                     1                   2                   2
## 950                     2                   2                   2
## 951                     2                   2                   2
## 952                     1                   1                   1
## 953                     1                   2                   2
## 954                     2                   2                   2
## 955                     1                   1                   1
## 956                     1                   1                   1
## 957                     1                   1                   1
## 958                     1                   1                   1
## 959                     2                   2                   2
## 960                     2                   2                   2
## 961                     2                   2                   2
## 962                     1                   1                   1
## 963                     1                   1                   1
## 964                     1                   1                   1
## 965                     1                   1                   1
## 966                     1                   1                   1
## 967                     1                   1                   1
## 968                     1                   1                   1
## 969                     1                   1                   1
## 970                     2                   1                   1
## 971                     1                   2                   2
## 972                     2                   2                   2
## 973                     1                   1                   1
## 974                     2                   2                   2
## 975                     2                   2                   2
## 976                     1                   1                   1
## 977                     2                   1                   1
## 978                     2                   1                   2
## 979                     1                   1                   1
## 980                     1                   1                   1
## 981                     1                   1                   1
## 982                     1                   1                   1
## 983                     2                   1                   1
## 985                     1                   1                   1
## 986                     1                   1                   1
## 987                     1                   1                   1
## 989                     1                   1                   1
## 990                     1                   1                   1
## 991                     1                   1                   1
## 992                     1                   1                   1
## 993                     1                   1                   1
## 994                     2                   1                   1
## 995                     1                   1                   1
## 996                     2                   2                   1
## 997                     1                   1                   1
## 998                     2                   2                   2
## 999                     1                   1                   1
## 1000                    2                   2                   1
## 1001                    2                   2                   2
## 1002                    2                   1                   2
## 1003                    1                   1                   1
## 1004                    1                   1                   1
## 1005                    2                   2                   2
## 1006                    1                   1                   1
## 1007                    2                   1                   1
## 1008                    1                   1                   1
## 1009                    1                   1                   1
## 1010                    2                   2                   2
## 1011                    2                   2                   2
## 1012                    1                   1                   1
## 1013                    2                   1                   1
## 1014                    2                   2                   2
## 1016                    2                   1                   1
## 1017                    1                   1                   1
## 1018                    2                   2                   2
## 1019                    1                   1                   1
## 1020                    2                   2                   1
## 1021                    1                   1                   1
## 1022                    2                   2                   2
## 1023                    1                   2                   2
## 1024                    2                   2                   2
## 1026                    1                   1                   1
## 1027                    1                   1                   1
## 1028                    1                   2                   2
## 1029                    2                   2                   2
## 1030                    1                   1                   1
## 1031                    2                   2                   2
## 1032                    1                   1                   1
## 1033                    1                   1                   1
## 1034                    1                   1                   1
## 1035                    1                   1                   1
## 1036                    1                   1                   1
## 1037                    2                   2                   1
## 1038                    1                   1                   1
## 1040                    1                   1                   1
## 1041                    1                   1                   1
## 1042                    2                   2                   2
## 1043                    2                   2                   2
## 1044                    1                   2                   1
## 1045                    1                   1                   1
## 1046                    1                   1                   1
## 1047                    2                   2                   2
## 1048                    2                   2                   2
## 1049                    1                   1                   1
## 1050                    1                   1                   1
## 1051                    2                   2                   2
## 1052                    1                   1                   1
## 1053                    1                   2                   2
## 1054                    2                   2                   2
## 1055                    1                   1                   1
## 1056                    1                   1                   1
## 1057                    1                   1                   1
## 1058                    2                   2                   2
## 1059                    1                   1                   1
## 1060                    1                   1                   1
## 1061                    1                   1                   1
## 1062                    1                   1                   1
## 1063                    1                   1                   1
## 1065                    1                   1                   1
## 1066                    1                   1                   1
## 1067                    1                   1                   1
## 1068                    2                   2                   2
## 1069                    1                   1                   1
## 1070                    2                   2                   1
## 1071                    1                   1                   1
## 1072                    1                   1                   1
## 1073                    1                   1                   1
## 1074                    1                   2                   2
## 1075                    2                   2                   2
## 1076                    1                   1                   1
## 1077                    2                   2                   2
## 1078                    1                   1                   1
## 1079                    2                   2                   2
## 1080                    1                   1                   1
## 1081                    2                   2                   2
## 1082                    1                   2                   2
## 1083                    1                   1                   1
## 1084                    2                   1                   1
## 1085                    1                   1                   1
## 1087                    2                   2                   2
## 1088                    2                   1                   2
## 1091                    2                   1                   1
## 1092                    1                   1                   1
## 1093                    1                   1                   1
## 1094                    2                   2                   2
## 1095                    2                   2                   2
## 1096                    1                   1                   1
## 1098                    1                   1                   1
## 1099                    2                   2                   2
## 1100                    2                   2                   2
## 1101                    2                   2                   2
## 1102                    1                   1                   1
## 1103                    1                   1                   1
## 1104                    1                   1                   1
## 1105                    1                   1                   1
## 1106                    2                   2                   2
## 1108                    1                   1                   1
## 1109                    1                   1                   1
## 1110                    1                   1                   1
## 1111                    1                   1                   1
## 1112                    2                   2                   2
## 1113                    2                   2                   2
## 1114                    1                   1                   1
## 1115                    1                   1                   1
## 1116                    1                   1                   1
## 1117                    2                   2                   2
## 1118                    2                   2                   2
## 1120                    1                   1                   1
## 1121                    2                   2                   2
## 1122                    1                   1                   1
## 1123                    2                   1                   1
## 1124                    1                   1                   1
## 1125                    1                   1                   1
## 1126                    2                   2                   2
## 1127                    1                   1                   1
## 1128                    1                   1                   1
## 1129                    1                   1                   1
## 1130                    2                   1                   1
## 1131                    1                   1                   1
## 1132                    1                   1                   1
## 1133                    1                   1                   1
## 1134                    1                   1                   1
## 1135                    2                   2                   2
## 1136                    1                   1                   1
## 1137                    1                   1                   1
## 1138                    2                   2                   2
## 1139                    2                   2                   2
## 1140                    2                   1                   1
## 1141                    2                   2                   2
## 1142                    2                   2                   2
## 1143                    2                   2                   2
## 1144                    2                   2                   2
## 1146                    2                   2                   2
## 1147                    1                   1                   1
## 1148                    2                   2                   2
## 1149                    2                   1                   1
## 1150                    1                   1                   1
## 1151                    2                   2                   2
## 1152                    1                   1                   1
## 1153                    2                   2                   2
## 1154                    1                   1                   1
## 1155                    1                   1                   1
## 1156                    2                   2                   2
## 1157                    1                   1                   1
## 1158                    2                   2                   2
## 1159                    2                   2                   1
## 1160                    1                   1                   1
## 1161                    2                   1                   1
## 1162                    1                   1                   1
## 1163                    2                   1                   1
## 1164                    2                   2                   1
## 1165                    2                   2                   2
## 1166                    1                   1                   1
## 1167                    2                   2                   1
## 1168                    2                   1                   1
## 1169                    2                   2                   2
## 1170                    1                   1                   1
## 1172                    1                   1                   1
## 1173                    1                   1                   1
## 1175                    2                   2                   2
## 1177                    1                   1                   1
## 1178                    1                   1                   1
## 1179                    2                   1                   2
## 1180                    1                   1                   1
## 1181                    2                   2                   2
## 1182                    1                   1                   1
## 1184                    2                   1                   1
## 1185                    1                   1                   1
## 1186                    1                   1                   1
## 1187                    1                   1                   1
## 1189                    2                   2                   2
## 1190                    2                   2                   2
## 1191                    2                   2                   2
## 1192                    2                   2                   2
## 1193                    2                   1                   1
## 1194                    1                   1                   1
## 1196                    2                   2                   2
## 1197                    1                   1                   1
## 1198                    1                   1                   1
## 1199                    2                   2                   2
## 1200                    2                   2                   2
## 1201                    1                   1                   1
## 1202                    1                   1                   1
## 1203                    2                   1                   2
## 1204                    1                   1                   1
## 1205                    1                   1                   1
## 1206                    1                   1                   1
## 1207                    1                   1                   1
## 1208                    2                   1                   1
## 1209                    1                   1                   1
## 1210                    2                   2                   2
## 1211                    2                   1                   2
## 1212                    2                   1                   1
## 1213                    1                   1                   1
## 1214                    1                   1                   1
## 1215                    2                   2                   2
## 1216                    1                   1                   1
## 1217                    2                   1                   1
## 1218                    1                   1                   1
## 1221                    1                   1                   1
## 1223                    2                   2                   2
## 1224                    1                   1                   1
## 1225                    2                   2                   2
## 1227                    1                   1                   1
## 1228                    1                   1                   1
## 1229                    2                   2                   2
## 1230                    2                   2                   2
## 1231                    1                   1                   2
## 1232                    1                   1                   1
## 1233                    2                   1                   1
## 1234                    1                   1                   1
## 1235                    1                   2                   1
## 1236                    2                   2                   2
## 1237                    1                   1                   1
## 1238                    1                   1                   1
## 1239                    2                   2                   2
## 1240                    1                   1                   1
## 1241                    2                   2                   2
## 1242                    1                   1                   1
## 1243                    1                   1                   1
## 1244                    2                   2                   2
## 1245                    1                   1                   1
## 1246                    1                   1                   1
## 1247                    2                   1                   1
## 1248                    1                   1                   1
## 1249                    1                   2                   2
## 1250                    1                   1                   1
## 1251                    1                   1                   1
## 1252                    1                   1                   1
## 1253                    1                   1                   1
## 1254                    2                   2                   2
## 1255                    1                   1                   1
## 1256                    1                   1                   1
## 1257                    1                   1                   2
## 1259                    2                   2                   2
## 1260                    1                   1                   1
## 1261                    1                   1                   1
## 1262                    2                   2                   2
## 1263                    2                   2                   2
## 1264                    2                   2                   2
## 1265                    1                   1                   1
## 1266                    1                   1                   1
## 1267                    1                   1                   1
## 1268                    2                   2                   2
## 1269                    2                   2                   2
## 1270                    1                   1                   1
## 1271                    2                   2                   2
## 1272                    2                   2                   2
## 1273                    2                   2                   2
## 1274                    2                   2                   2
## 1275                    2                   2                   1
## 1276                    2                   2                   2
## 1277                    1                   1                   1
## 1278                    1                   1                   1
## 1279                    2                   1                   1
## 1280                    2                   1                   1
## 1281                    1                   1                   1
## 1282                    2                   2                   2
## 1283                    2                   1                   1
## 1284                    2                   2                   2
## 1285                    2                   1                   2
## 1286                    1                   1                   1
## 1287                    2                   2                   2
## 1288                    1                   1                   1
## 1289                    2                   2                   2
## 1290                    2                   1                   2
## 1291                    1                   1                   1
## 1292                    2                   1                   2
## 1293                    2                   2                   2
## 1294                    2                   2                   2
## 1295                    2                   2                   2
## 1296                    2                   2                   2
## 1298                    1                   1                   1
## 1299                    2                   1                   1
## 1300                    1                   1                   1
## 1301                    2                   1                   1
## 1302                    1                   1                   2
## 1303                    1                   1                   1
## 1304                    1                   1                   1
## 1305                    2                   2                   2
## 1306                    1                   1                   1
## 1307                    2                   1                   1
## 1308                    2                   2                   2
## 1309                    2                   2                   2
## 1310                    1                   1                   1
## 1311                    2                   2                   1
## 1312                    1                   1                   1
## 1313                    2                   1                   2
## 1314                    1                   1                   1
## 1315                    2                   2                   2
## 1316                    1                   1                   1
## 1317                    1                   1                   1
## 1318                    1                   1                   1
## 1319                    1                   1                   1
## 1320                    1                   1                   1
## 1321                    1                   1                   1
## 1322                    1                   1                   1
## 1323                    2                   2                   2
## 1324                    1                   1                   1
## 1326                    2                   2                   2
## 1327                    1                   1                   2
## 1328                    1                   1                   1
## 1330                    1                   1                   1
## 1331                    2                   2                   2
## 1332                    2                   2                   2
## 1333                    1                   1                   2
## 1334                    1                   1                   1
## 1335                    1                   1                   1
## 1336                    1                   2                   2
## 1337                    1                   1                   1
## 1338                    1                   1                   1
## 1339                    1                   1                   1
## 1340                    1                   1                   1
## 1341                    1                   1                   1
## 1342                    1                   1                   1
## 1343                    1                   1                   1
## 1345                    1                   1                   1
## 1346                    2                   2                   2
## 1347                    1                   1                   1
## 1348                    1                   1                   1
## 1349                    1                   1                   1
## 1350                    2                   2                   2
## 1351                    2                   2                   2
## 1352                    1                   1                   1
## 1354                    1                   1                   1
## 1355                    2                   1                   2
## 1356                    1                   1                   1
## 1357                    1                   1                   1
## 1358                    2                   2                   2
## 1359                    1                   1                   2
## 1360                    1                   1                   1
## 1361                    2                   1                   1
## 1362                    1                   1                   1
## 1363                    2                   2                   2
## 1364                    1                   2                   2
## 1365                    1                   1                   1
## 1366                    1                   1                   1
## 1367                    2                   2                   2
## 1368                    1                   1                   1
## 1369                    2                   1                   2
## 1370                    1                   1                   1
## 1371                    1                   1                   1
## 1372                    2                   2                   2
## 1373                    2                   2                   2
## 1374                    1                   1                   1
## 1375                    1                   1                   1
## 1376                    2                   2                   2
## 1377                    1                   1                   1
## 1378                    2                   2                   2
## 1379                    1                   1                   1
## 1380                    1                   1                   1
## 1381                    1                   2                   2
## 1382                    2                   2                   2
## 1383                    1                   1                   1
## 1385                    1                   1                   1
## 1386                    1                   1                   1
## 1387                    1                   1                   1
## 1388                    2                   1                   2
## 1389                    1                   1                   1
## 1390                    1                   1                   1
## 1391                    1                   2                   2
## 1392                    2                   2                   2
## 1393                    1                   1                   1
## 1394                    1                   1                   1
## 1395                    2                   2                   2
## 1396                    1                   1                   1
## 1397                    2                   1                   1
## 1398                    2                   2                   2
## 1400                    2                   2                   2
## 1401                    2                   2                   2
## 1402                    1                   1                   1
## 1403                    2                   2                   2
## 1404                    1                   1                   1
## 1405                    1                   1                   1
## 1406                    1                   1                   1
## 1407                    2                   1                   2
## 1408                    1                   1                   1
## 1409                    1                   1                   1
## 1410                    1                   1                   1
## 1411                    1                   1                   1
## 1412                    2                   1                   1
## 1413                    1                   1                   1
## 1414                    1                   1                   1
## 1415                    1                   2                   1
## 1416                    1                   1                   1
## 1417                    2                   2                   2
## 1418                    1                   1                   1
## 1420                    1                   1                   2
## 1421                    1                   2                   2
## 1422                    2                   2                   1
## 1423                    1                   1                   1
## 1424                    1                   1                   1
## 1425                    1                   1                   1
## 1426                    2                   2                   2
## 1428                    2                   2                   1
## 1429                    1                   1                   1
## 1430                    1                   1                   1
## 1431                    1                   1                   1
## 1432                    2                   2                   2
## 1433                    2                   2                   2
## 1434                    2                   2                   1
## 1435                    1                   1                   1
## 1436                    1                   1                   1
## 1437                    1                   1                   1
## 1438                    1                   1                   1
## 1439                    1                   1                   1
## 1441                    1                   1                   1
## 1442                    1                   1                   1
## 1443                    1                   1                   1
## 1444                    1                   1                   1
## 1445                    2                   2                   2
## 1446                    1                   1                   1
## 1447                    2                   2                   2
## 1448                    2                   1                   1
## 1449                    2                   2                   2
## 1450                    2                   2                   2
## 1451                    1                   1                   1
## 1452                    2                   2                   2
## 1453                    1                   1                   1
## 1454                    1                   1                   1
## 1455                    1                   1                   1
## 1456                    2                   1                   2
## 1457                    1                   1                   1
## 1458                    1                   1                   1
## 1459                    2                   2                   2
## 1460                    1                   1                   1
## 1461                    1                   1                   1
## 1462                    2                   1                   1
## 1463                    2                   1                   1
## 1464                    2                   2                   1
## 1465                    2                   2                   2
## 1466                    1                   2                   2
## 1467                    1                   1                   1
## 1468                    2                   2                   2
## 1469                    1                   1                   1
## 1470                    1                   1                   1
## 1471                    1                   1                   1
## 1472                    2                   2                   2
## 1473                    2                   2                   2
## 1474                    2                   2                   2
## 1475                    2                   2                   2
## 1476                    2                   1                   1
## 1478                    1                   1                   1
## 1479                    1                   1                   1
## 1480                    2                   2                   2
## 1481                    2                   2                   1
## 1482                    1                   1                   1
## 1483                    1                   2                   2
## 1484                    1                   2                   2
## 1485                    1                   1                   1
## 1486                    1                   1                   1
## 1487                    2                   2                   2
## 1488                    1                   1                   1
## 1490                    1                   1                   1
## 1491                    2                   2                   1
## 1492                    2                   2                   2
## 1493                    1                   2                   2
## 1494                    2                   2                   1
## 1495                    1                   1                   1
## 1496                    1                   1                   1
## 1497                    1                   1                   1
## 1498                    1                   1                   1
## 1499                    1                   1                   1
## 1500                    2                   2                   2
## 1501                    2                   2                   1
## 1502                    2                   2                   2
## 1503                    1                   1                   1
## 1504                    1                   1                   1
## 1505                    2                   2                   2
## 1506                    1                   1                   1
## 1507                    2                   2                   1
## 1508                    1                   1                   1
## 1509                    2                   2                   2
## 1511                    2                   1                   2
## 1512                    2                   2                   2
## 1513                    1                   1                   1
## 1514                    1                   1                   1
## 1515                    1                   1                   1
## 1516                    1                   1                   1
## 1517                    1                   1                   1
## 1518                    2                   2                   2
## 1519                    2                   1                   2
## 1520                    2                   2                   1
## 1521                    1                   1                   1
## 1522                    1                   2                   1
## 1523                    2                   2                   2
## 1524                    1                   1                   1
## 1525                    2                   2                   2
## 1526                    1                   1                   1
## 1527                    2                   2                   2
## 1528                    1                   1                   1
## 1529                    1                   1                   1
## 1530                    2                   2                   2
## 1531                    1                   1                   1
## 1532                    1                   1                   1
## 1533                    1                   1                   1
## 1534                    1                   1                   1
## 1536                    1                   1                   1
## 1537                    1                   1                   1
## 1538                    1                   1                   1
## 1539                    2                   1                   2
## 1540                    2                   2                   2
## 1541                    2                   1                   1
## 1542                    2                   2                   2
## 1543                    2                   1                   2
## 1544                    1                   1                   1
## 1545                    2                   2                   1
## 1546                    1                   1                   1
## 1547                    1                   1                   1
## 1548                    1                   1                   1
## 1549                    1                   1                   1
## 1550                    2                   2                   2
## 1551                    2                   2                   2
## 1552                    2                   2                   1
## 1553                    2                   2                   2
## 1554                    1                   2                   1
## 1555                    2                   1                   1
## 1556                    1                   1                   1
## 1557                    1                   1                   1
## 1558                    2                   1                   2
## 1559                    1                   1                   1
## 1560                    2                   2                   2
## 1561                    2                   2                   2
## 1562                    2                   2                   2
## 1563                    1                   1                   1
## 1564                    1                   1                   1
## 1565                    1                   1                   1
## 1566                    2                   2                   2
## 1567                    1                   1                   1
## 1568                    2                   2                   2
## 1569                    1                   1                   1
## 1570                    1                   1                   1
## 1571                    2                   2                   2
## 1574                    2                   2                   2
## 1575                    2                   2                   2
## 1576                    1                   2                   2
## 1578                    2                   2                   2
## 1579                    2                   2                   2
## 1580                    2                   2                   2
## 1581                    2                   1                   1
## 1582                    1                   1                   1
## 1584                    1                   1                   1
## 1585                    2                   2                   2
## 1586                    2                   1                   1
## 1587                    1                   1                   1
## 1588                    1                   1                   1
## 1589                    2                   2                   1
## 1590                    1                   1                   1
## 1591                    1                   1                   1
## 1592                    1                   1                   1
## 1593                    1                   1                   1
## 1594                    1                   1                   1
## 1595                    1                   1                   1
## 1596                    2                   1                   1
## 1597                    1                   1                   1
## 1598                    1                   1                   1
## 1600                    2                   1                   1
## 1601                    2                   2                   2
## 1602                    1                   2                   2
## 1603                    1                   1                   1
## 1604                    1                   1                   1
## 1605                    2                   2                   2
## 1606                    2                   2                   2
## 1607                    2                   2                   2
## 1608                    1                   1                   1
## 1609                    1                   1                   1
## 1610                    2                   2                   2
## 1611                    1                   1                   1
## 1612                    2                   2                   2
## 1613                    2                   2                   2
## 1614                    1                   1                   1
## 1615                    1                   1                   1
## 1616                    1                   1                   1
## 1617                    1                   1                   1
## 1618                    1                   1                   1
## 1619                    1                   1                   1
## 1620                    1                   1                   1
## 1621                    2                   2                   1
## 1622                    1                   1                   1
## 1624                    1                   1                   1
## 1625                    2                   2                   1
## 1626                    2                   2                   2
## 1627                    1                   1                   1
## 1629                    1                   1                   1
## 1630                    1                   1                   1
## 1631                    1                   1                   1
## 1633                    1                   1                   1
## 1634                    1                   1                   1
## 1635                    2                   1                   1
## 1636                    2                   2                   2
## 1637                    1                   1                   1
## 1638                    2                   1                   1
## 1640                    2                   2                   2
## 1641                    2                   2                   2
## 1642                    1                   1                   1
## 1643                    1                   1                   2
## 1644                    1                   1                   1
## 1645                    1                   2                   1
## 1646                    1                   1                   1
## 1647                    1                   1                   1
## 1648                    2                   2                   2
## 1649                    2                   2                   2
## 1651                    1                   1                   1
## 1652                    2                   2                   2
## 1653                    2                   1                   2
## 1654                    1                   1                   1
## 1655                    2                   1                   1
## 1656                    2                   2                   2
## 1657                    1                   1                   1
## 1658                    1                   1                   1
## 1659                    1                   1                   1
## 1662                    1                   1                   1
## 1663                    2                   1                   1
## 1664                    1                   1                   1
## 1665                    2                   2                   2
## 1666                    1                   1                   1
## 1667                    2                   2                   2
## 1669                    1                   1                   1
## 1670                    1                   1                   1
## 1671                    1                   1                   1
## 1672                    1                   1                   1
## 1673                    2                   2                   2
## 1674                    2                   2                   2
## 1675                    2                   2                   2
## 1676                    2                   2                   2
## 1677                    1                   1                   1
## 1678                    1                   1                   1
## 1679                    1                   1                   1
## 1680                    2                   1                   1
## 1681                    2                   2                   2
## 1682                    1                   1                   1
## 1683                    1                   1                   1
## 1684                    2                   2                   2
## 1685                    1                   1                   1
## 1687                    2                   2                   1
## 1688                    1                   1                   1
## 1689                    1                   1                   1
## 1690                    1                   1                   1
## 1691                    1                   1                   1
## 1692                    1                   1                   2
## 1693                    2                   1                   1
## 1694                    1                   1                   1
## 1695                    1                   1                   1
## 1696                    1                   1                   1
## 1697                    1                   1                   1
## 1698                    2                   2                   2
## 1699                    1                   1                   1
## 1700                    1                   1                   1
## 1701                    2                   2                   1
## 1702                    2                   2                   2
## 1703                    2                   2                   2
## 1704                    1                   1                   1
## 1705                    2                   2                   2
## 1706                    2                   1                   1
## 1707                    2                   2                   2
## 1708                    1                   1                   1
## 1709                    1                   1                   1
## 1710                    1                   1                   1
## 1711                    2                   2                   2
## 1712                    1                   1                   1
## 1713                    1                   1                   1
## 1714                    1                   1                   1
## 1715                    1                   1                   1
## 1716                    1                   1                   1
## 1717                    2                   2                   2
## 1718                    1                   1                   1
## 1719                    1                   1                   2
## 1720                    1                   1                   1
## 1721                    1                   1                   1
## 1723                    1                   1                   1
## 1724                    1                   1                   1
## 1725                    1                   1                   1
## 1726                    2                   2                   2
## 1727                    1                   1                   1
## 1728                    1                   1                   1
## 1729                    2                   2                   2
## 1730                    1                   1                   1
## 1731                    2                   1                   1
## 1732                    1                   1                   1
## 1733                    1                   1                   1
## 1734                    1                   1                   1
## 1735                    1                   2                   2
## 1736                    2                   1                   1
## 1737                    1                   1                   1
## 1738                    1                   1                   1
## 1739                    2                   1                   1
## 1740                    1                   1                   1
## 1741                    1                   1                   1
## 1742                    1                   1                   1
## 1743                    2                   1                   1
## 1744                    1                   1                   1
## 1745                    2                   2                   1
## 1746                    2                   1                   1
## 1747                    2                   2                   2
## 1748                    1                   1                   1
## 1749                    2                   2                   2
## 1750                    1                   1                   1
## 1751                    1                   1                   1
## 1752                    1                   1                   1
## 1753                    1                   1                   1
## 1754                    1                   1                   1
## 1756                    2                   2                   2
## 1757                    1                   1                   1
## 1758                    1                   1                   1
## 1759                    1                   1                   1
## 1760                    2                   1                   1
## 1761                    1                   1                   1
## 1762                    2                   1                   2
## 1763                    1                   1                   1
## 1764                    1                   1                   1
## 1765                    1                   1                   1
## 1766                    1                   1                   1
## 1768                    1                   1                   1
## 1769                    2                   1                   1
## 1770                    1                   1                   2
## 1771                    2                   1                   1
## 1772                    2                   2                   2
## 1773                    2                   2                   2
## 1774                    2                   2                   2
## 1775                    2                   2                   2
## 1776                    1                   1                   1
## 1777                    1                   1                   1
## 1778                    1                   1                   1
## 1779                    2                   2                   2
## 1780                    2                   2                   2
## 1781                    1                   1                   1
## 1782                    2                   1                   2
## 1783                    1                   1                   1
## 1784                    2                   2                   2
## 1785                    1                   1                   1
## 1786                    2                   1                   1
## 1787                    1                   1                   1
## 1788                    2                   1                   2
## 1789                    2                   2                   2
## 1790                    1                   1                   1
## 1791                    1                   1                   1
## 1792                    2                   1                   1
## 1793                    2                   2                   2
## 1794                    1                   1                   1
## 1795                    1                   1                   1
## 1796                    1                   1                   1
## 1797                    2                   2                   2
## 1798                    1                   2                   2
## 1799                    2                   2                   2
## 1801                    2                   1                   1
## 1802                    1                   1                   1
## 1803                    1                   1                   1
## 1804                    2                   2                   2
## 1805                    2                   2                   2
## 1806                    1                   1                   1
## 1808                    2                   2                   2
## 1809                    2                   2                   2
## 1810                    2                   2                   2
## 1811                    2                   1                   1
## 1812                    2                   1                   1
## 1813                    1                   1                   2
## 1814                    1                   1                   1
## 1815                    1                   1                   1
## 1816                    1                   1                   1
## 1817                    1                   1                   1
## 1818                    1                   1                   1
## 1819                    2                   1                   2
## 1820                    2                   2                   2
## 1821                    1                   1                   1
## 1822                    2                   2                   1
## 1823                    1                   1                   1
## 1824                    2                   1                   1
## 1825                    1                   1                   1
## 1826                    1                   1                   1
## 1827                    1                   1                   1
## 1828                    2                   1                   1
## 1829                    2                   2                   2
## 1830                    2                   1                   1
## 1831                    2                   2                   2
## 1832                    1                   1                   1
## 1833                    2                   2                   2
## 1834                    1                   1                   1
## 1835                    2                   2                   2
## 1836                    1                   1                   1
## 1837                    2                   2                   2
## 1838                    2                   2                   2
## 1839                    2                   1                   2
## 1840                    1                   1                   1
## 1841                    2                   2                   2
## 1842                    2                   1                   1
## 1843                    1                   1                   1
## 1844                    1                   1                   1
## 1845                    1                   1                   1
## 1846                    1                   2                   2
## 1847                    1                   1                   1
## 1848                    1                   1                   1
## 1849                    2                   2                   2
## 1850                    1                   1                   1
## 1851                    2                   2                   2
## 1852                    1                   1                   1
## 1853                    2                   1                   1
## 1854                    2                   2                   2
## 1855                    2                   2                   1
## 1856                    2                   2                   2
## 1857                    1                   1                   1
## 1858                    1                   1                   1
## 1859                    1                   1                   1
## 1860                    1                   1                   2
## 1861                    2                   2                   1
## 1862                    1                   1                   1
## 1863                    1                   1                   1
## 1864                    2                   2                   2
## 1865                    1                   1                   1
## 1866                    2                   1                   2
## 1867                    1                   1                   1
## 1868                    1                   1                   1
## 1870                    1                   1                   1
## 1871                    1                   1                   1
## 1872                    1                   1                   1
## 1873                    2                   2                   2
## 1874                    1                   1                   1
## 1875                    1                   1                   1
## 1876                    1                   1                   1
## 1877                    2                   2                   2
## 1878                    2                   2                   2
## 1879                    1                   1                   1
## 1880                    2                   2                   2
## 1881                    1                   1                   1
## 1882                    1                   1                   1
## 1883                    2                   2                   2
## 1884                    2                   2                   2
## 1885                    2                   1                   1
## 1886                    1                   1                   1
## 1887                    1                   1                   1
## 1888                    1                   1                   1
## 1889                    2                   2                   2
## 1890                    2                   1                   1
## 1891                    1                   1                   1
## 1892                    1                   1                   1
## 1893                    2                   1                   1
## 1894                    1                   1                   1
## 1895                    1                   1                   1
## 1896                    1                   1                   1
## 1897                    1                   1                   1
## 1898                    1                   1                   1
## 1899                    1                   1                   1
## 1900                    1                   1                   1
## 1901                    1                   1                   1
## 1902                    2                   1                   1
## 1903                    1                   1                   1
## 1904                    1                   1                   1
## 1905                    1                   1                   1
## 1906                    1                   1                   1
## 1907                    1                   1                   1
## 1908                    1                   2                   1
## 1909                    1                   1                   1
## 1912                    1                   1                   1
## 1913                    1                   1                   1
## 1914                    1                   1                   1
## 1915                    2                   1                   2
## 1916                    1                   1                   1
## 1917                    2                   2                   2
## 1918                    2                   2                   2
## 1919                    2                   1                   2
## 1920                    2                   2                   2
## 1921                    1                   1                   1
## 1922                    1                   1                   2
## 1923                    1                   1                   1
## 1924                    1                   1                   1
## 1925                    2                   1                   1
## 1926                    1                   1                   1
## 1927                    1                   1                   2
## 1928                    2                   1                   1
## 1929                    1                   1                   1
## 1931                    2                   2                   2
## 1932                    2                   2                   2
## 1933                    1                   1                   1
## 1934                    2                   2                   1
## 1935                    1                   1                   1
## 1936                    2                   2                   2
## 1937                    1                   1                   1
## 1938                    1                   1                   1
## 1939                    1                   1                   1
## 1940                    2                   1                   1
## 1941                    2                   1                   2
## 1942                    2                   2                   1
## 1943                    1                   2                   2
## 1945                    2                   2                   2
## 1946                    2                   1                   1
## 1947                    2                   2                   1
## 1948                    2                   1                   1
## 1949                    2                   2                   2
## 1950                    1                   1                   1
## 1951                    1                   1                   1
## 1952                    2                   2                   2
## 1953                    1                   1                   1
## 1954                    2                   2                   2
## 1955                    1                   1                   1
## 1956                    1                   1                   1
## 1957                    1                   1                   1
## 1958                    2                   1                   1
## 1959                    1                   1                   1
## 1960                    1                   1                   1
## 1961                    1                   1                   1
## 1962                    1                   1                   1
## 1963                    2                   2                   2
## 1964                    2                   1                   2
## 1965                    1                   2                   1
## 1966                    2                   2                   2
## 1967                    1                   1                   1
## 1968                    2                   1                   2
## 1969                    2                   1                   1
## 1970                    1                   1                   1
## 1972                    1                   1                   1
## 1973                    1                   1                   1
## 1974                    2                   2                   2
## 1975                    1                   1                   1
## 1976                    1                   1                   1
## 1977                    1                   1                   1
## 1978                    1                   1                   1
## 1979                    1                   1                   1
## 1980                    2                   2                   1
## 1981                    1                   1                   1
## 1982                    2                   2                   2
## 1983                    2                   2                   2
## 1984                    1                   1                   1
## 1985                    2                   2                   2
## 1986                    1                   1                   1
## 1987                    1                   1                   1
## 1988                    1                   1                   1
## 1990                    1                   1                   1
## 1992                    1                   1                   1
## 1993                    1                   1                   1
## 1994                    2                   1                   2
## 1995                    2                   2                   2
## 1996                    1                   1                   1
## 1998                    2                   2                   2
## 1999                    1                   1                   1
## 2000                    1                   1                   1
## 2001                    2                   2                   2
## 2002                    1                   1                   1
## 2003                    1                   1                   1
## 2004                    2                   1                   1
## 2005                    2                   2                   2
## 2006                    2                   2                   1
## 2007                    1                   1                   1
## 2008                    1                   1                   1
## 2009                    2                   2                   2
## 2010                    1                   1                   1
## 2011                    2                   2                   1
## 2013                    2                   1                   1
## 2014                    2                   2                   2
## 2015                    1                   1                   1
## 2016                    2                   1                   2
## 2018                    1                   1                   1
## 2019                    1                   1                   1
## 2020                    1                   1                   1
## 2021                    2                   2                   2
## 2022                    2                   1                   1
## 2023                    1                   1                   1
## 2024                    1                   1                   1
## 2025                    2                   2                   2
## 2026                    1                   1                   1
## 2027                    1                   1                   1
## 2028                    1                   1                   1
## 2029                    1                   1                   1
## 2030                    2                   1                   2
## 2031                    2                   2                   2
## 2032                    1                   1                   1
## 2033                    2                   2                   2
## 2034                    1                   1                   1
## 2036                    1                   1                   1
## 2037                    1                   1                   1
## 2038                    1                   2                   1
## 2039                    2                   2                   1
## 2040                    1                   1                   1
## 2041                    1                   1                   1
## 2042                    1                   1                   1
## 2043                    1                   1                   1
## 2044                    1                   1                   1
## 2045                    1                   1                   1
## 2046                    1                   1                   1
## 2047                    1                   1                   1
## 2048                    1                   1                   1
## 2049                    1                   1                   1
## 2050                    2                   2                   2
## 2051                    1                   1                   1
## 2052                    1                   1                   1
## 2053                    1                   1                   1
## 2054                    1                   1                   1
## 2055                    1                   1                   1
## 2057                    2                   2                   2
## 2058                    1                   1                   1
## 2059                    2                   1                   1
## 2060                    2                   1                   1
## 2061                    2                   1                   1
## 2062                    1                   1                   1
## 2063                    1                   1                   1
## 2064                    2                   1                   2
## 2065                    2                   2                   2
## 2066                    1                   1                   1
## 2067                    1                   1                   1
## 2069                    2                   1                   1
## 2070                    2                   1                   1
## 2071                    2                   2                   2
## 2072                    2                   1                   1
## 2074                    2                   2                   2
## 2075                    1                   1                   1
## 2076                    1                   1                   1
## 2077                    2                   2                   2
## 2078                    1                   1                   1
## 2079                    1                   1                   1
## 2080                    1                   1                   1
## 2081                    2                   1                   1
## 2082                    1                   1                   1
## 2083                    1                   2                   2
## 2084                    1                   1                   1
## 2085                    2                   2                   2
## 2086                    2                   2                   2
## 2087                    1                   1                   1
## 2088                    1                   2                   1
## 2089                    1                   2                   2
## 2090                    1                   1                   1
## 2091                    1                   1                   1
## 2092                    1                   1                   1
## 2093                    1                   1                   1
## 2094                    2                   2                   2
## 2095                    1                   1                   1
## 2096                    1                   1                   1
## 2097                    1                   2                   1
## 2098                    1                   1                   1
## 2099                    1                   1                   1
## 2100                    1                   1                   1
## 2101                    1                   1                   1
## 2102                    2                   1                   1
## 2103                    1                   1                   2
## 2104                    1                   1                   1
## 2105                    2                   2                   2
## 2107                    2                   1                   2
## 2108                    1                   1                   1
## 2110                    1                   1                   1
## 2111                    2                   2                   2
## 2112                    1                   2                   1
## 2113                    2                   1                   2
## 2114                    1                   1                   1
## 2116                    1                   1                   1
## 2117                    1                   1                   1
## 2118                    1                   1                   1
## 2119                    1                   1                   1
## 2120                    1                   1                   2
## 2121                    1                   1                   1
## 2122                    1                   1                   1
## 2123                    1                   1                   1
## 2124                    1                   1                   1
## 2125                    1                   1                   1
## 2126                    2                   2                   2
## 2127                    2                   2                   2
## 2128                    1                   1                   1
## 2129                    1                   1                   1
## 2130                    2                   2                   2
## 2131                    1                   1                   1
## 2132                    1                   1                   1
## 2133                    2                   2                   1
## 2134                    2                   2                   2
## 2135                    2                   2                   2
## 2136                    1                   1                   1
## 2137                    1                   1                   1
## 2138                    2                   2                   2
## 2139                    2                   2                   2
## 2140                    1                   1                   1
## 2141                    1                   1                   1
## 2143                    2                   2                   2
## 2144                    2                   2                   2
## 2145                    1                   1                   1
## 2146                    1                   1                   1
## 2147                    1                   1                   1
## 2148                    1                   1                   1
## 2149                    1                   1                   1
## 2150                    1                   1                   1
## 2151                    1                   1                   1
## 2152                    1                   1                   1
## 2153                    2                   2                   2
## 2154                    2                   1                   1
## 2155                    1                   1                   1
## 2156                    1                   1                   1
## 2157                    2                   2                   2
## 2158                    1                   1                   1
## 2159                    1                   1                   1
## 2160                    1                   1                   1
## 2161                    1                   1                   1
## 2162                    1                   1                   1
## 2163                    2                   2                   2
## 2164                    2                   2                   2
## 2165                    1                   1                   1
## 2166                    2                   2                   2
## 2167                    2                   2                   2
## 2168                    2                   2                   2
## 2169                    1                   1                   1
## 2170                    1                   1                   1
## 2171                    2                   1                   1
## 2172                    1                   1                   1
## 2173                    2                   2                   2
## 2174                    2                   2                   2
## 2175                    2                   2                   2
## 2176                    1                   1                   1
## 2177                    2                   2                   2
## 2178                    2                   1                   2
## 2179                    1                   1                   1
## 2180                    1                   1                   1
## 2181                    1                   1                   1
## 2182                    1                   2                   1
## 2183                    1                   1                   1
## 2184                    1                   1                   1
## 2185                    1                   1                   2
## 2186                    1                   1                   1
## 2187                    1                   1                   1
## 2188                    1                   1                   1
## 2189                    2                   1                   2
## 2191                    1                   1                   1
## 2192                    2                   2                   2
## 2193                    1                   1                   1
## 2194                    1                   1                   1
## 2195                    1                   1                   1
## 2196                    1                   1                   1
## 2197                    1                   1                   1
## 2198                    1                   1                   1
## 2199                    2                   1                   2
## 2200                    2                   2                   2
## 2201                    1                   1                   1
## 2202                    2                   2                   1
## 2203                    2                   1                   1
## 2204                    2                   2                   2
## 2205                    2                   2                   2
## 2206                    2                   2                   2
## 2207                    1                   1                   1
## 2208                    2                   2                   2
## 2209                    2                   1                   1
## 2210                    1                   1                   1
## 2211                    1                   2                   1
## 2212                    1                   1                   1
## 2213                    1                   1                   1
## 2214                    1                   1                   1
## 2215                    2                   1                   2
## 2216                    1                   1                   1
## 2217                    1                   1                   1
## 2218                    2                   2                   2
## 2219                    1                   1                   1
## 2220                    1                   1                   1
## 2222                    1                   1                   1
## 2223                    1                   1                   1
## 2224                    1                   1                   1
## 2225                    1                   1                   1
## 2227                    2                   2                   2
## 2229                    1                   2                   2
## 2230                    2                   2                   2
## 2231                    1                   2                   1
## 2232                    1                   1                   1
## 2233                    2                   2                   2
## 2234                    2                   1                   2
## 2235                    2                   2                   2
## 2236                    2                   1                   2
## 2237                    2                   2                   1
## 2238                    2                   2                   2
## 2239                    1                   1                   1
## 2241                    1                   1                   1
## 2242                    2                   1                   1
## 2243                    1                   1                   1
## 2244                    1                   1                   1
## 2245                    2                   2                   2
## 2246                    1                   1                   1
## 2247                    1                   1                   1
## 2248                    1                   1                   1
## 2249                    1                   1                   1
## 2250                    2                   1                   1
## 2251                    1                   1                   1
## 2252                    1                   1                   1
## 2254                    1                   1                   1
## 2255                    2                   2                   1
## 2256                    1                   1                   1
## 2257                    1                   1                   1
## 2258                    2                   2                   2
## 2260                    1                   1                   1
## 2261                    1                   1                   1
## 2263                    1                   1                   1
## 2264                    2                   2                   2
## 2265                    2                   1                   2
## 2266                    1                   1                   1
## 2267                    1                   1                   1
## 2268                    2                   2                   2
## 2269                    1                   1                   1
## 2270                    1                   1                   1
## 2271                    1                   2                   1
## 2272                    1                   1                   1
## 2273                    2                   2                   2
## 2275                    1                   1                   1
## 2276                    1                   1                   1
## 2277                    1                   1                   1
## 2278                    2                   2                   2
## 2279                    1                   1                   1
## 2280                    1                   1                   1
## 2281                    1                   1                   1
## 2282                    1                   1                   1
## 2283                    1                   1                   1
## 2284                    1                   1                   1
## 2285                    1                   1                   1
## 2286                    1                   1                   1
## 2287                    2                   2                   2
## 2288                    2                   2                   1
## 2289                    1                   1                   1
## 2290                    1                   1                   2
## 2291                    1                   1                   1
## 2292                    2                   2                   1
## 2293                    1                   1                   1
## 2294                    1                   1                   1
## 2295                    1                   1                   1
## 2296                    1                   1                   1
## 2297                    2                   2                   2
## 2298                    1                   1                   1
## 2299                    2                   1                   2
## 2300                    1                   1                   1
## 2301                    2                   2                   1
## 2302                    1                   1                   1
## 2303                    1                   1                   1
## 2304                    1                   1                   1
## 2305                    1                   1                   1
## 2306                    2                   2                   2
## 2307                    2                   1                   2
## 2308                    1                   1                   1
## 2309                    1                   1                   1
## 2310                    1                   1                   1
## 2311                    2                   1                   1
## 2312                    2                   2                   2
## 2313                    2                   2                   2
## 2315                    2                   2                   2
## 2316                    2                   2                   2
## 2317                    1                   1                   1
## 2318                    1                   1                   1
## 2319                    1                   1                   1
## 2320                    1                   1                   1
## 2321                    1                   1                   1
## 2322                    2                   2                   2
## 2323                    2                   2                   2
## 2324                    2                   2                   2
## 2325                    2                   1                   2
## 2326                    1                   1                   1
## 2327                    1                   1                   1
## 2328                    1                   1                   1
## 2329                    2                   2                   2
## 2330                    1                   1                   1
## 2331                    2                   1                   2
## 2332                    1                   1                   1
## 2333                    1                   1                   1
## 2334                    1                   1                   1
## 2335                    2                   2                   2
## 2336                    2                   2                   2
## 2337                    2                   1                   1
## 2338                    1                   1                   1
## 2339                    1                   1                   1
## 2341                    1                   1                   1
## 2342                    2                   2                   2
## 2343                    2                   2                   2
## 2344                    2                   2                   2
## 2345                    1                   1                   1
## 2347                    1                   1                   1
## 2348                    2                   2                   2
## 2349                    1                   1                   1
## 2350                    2                   2                   2
## 2351                    1                   1                   1
## 2352                    1                   1                   1
## 2353                    1                   1                   1
## 2354                    2                   2                   2
## 2355                    1                   1                   1
## 2356                    1                   1                   1
## 2357                    2                   1                   1
## 2358                    1                   1                   1
## 2359                    1                   1                   1
## 2360                    1                   1                   1
## 2361                    2                   1                   2
## 2362                    2                   2                   2
## 2363                    1                   1                   1
## 2364                    2                   1                   1
## 2365                    1                   1                   1
## 2366                    2                   2                   1
## 2367                    1                   1                   1
## 2368                    1                   1                   1
## 2369                    2                   2                   2
## 2370                    1                   1                   1
## 2371                    2                   2                   2
## 2372                    1                   1                   1
## 2373                    1                   1                   1
## 2374                    1                   1                   1
## 2375                    1                   1                   1
## 2376                    2                   1                   2
## 2377                    1                   1                   1
## 2378                    1                   1                   1
## 2379                    2                   2                   2
## 2380                    1                   1                   1
## 2381                    1                   1                   1
## 2383                    2                   2                   1
## 2384                    1                   1                   1
## 2385                    1                   1                   1
## 2386                    1                   1                   1
## 2387                    1                   1                   1
## 2388                    2                   2                   2
## 2389                    1                   1                   1
## 2390                    1                   1                   1
## 2391                    1                   1                   1
## 2392                    1                   1                   2
## 2394                    2                   2                   2
## 2395                    1                   1                   1
## 2396                    2                   1                   2
## 2398                    2                   2                   2
## 2400                    1                   1                   1
## 2401                    1                   1                   1
## 2402                    1                   1                   1
## 2403                    2                   2                   2
## 2404                    1                   1                   1
## 2405                    1                   2                   2
## 2406                    2                   2                   2
## 2407                    1                   1                   1
## 2408                    1                   1                   1
## 2409                    2                   1                   1
## 2410                    2                   2                   2
## 2411                    1                   1                   2
## 2412                    1                   1                   1
## 2413                    2                   1                   1
## 2414                    1                   2                   1
## 2415                    2                   2                   2
## 2416                    2                   2                   2
## 2417                    1                   1                   1
## 2418                    2                   2                   2
## 2419                    2                   1                   2
## 2420                    1                   1                   1
## 2421                    2                   1                   2
## 2422                    1                   1                   1
## 2423                    2                   1                   1
## 2424                    2                   2                   1
## 2425                    2                   2                   1
## 2427                    1                   1                   1
## 2428                    2                   2                   2
## 2429                    1                   1                   1
## 2430                    1                   1                   1
## 2431                    1                   1                   1
## 2432                    2                   2                   1
## 2433                    2                   1                   2
## 2434                    2                   2                   2
## 2435                    1                   1                   1
## 2436                    1                   1                   1
## 2437                    2                   1                   2
## 2438                    1                   1                   1
## 2439                    1                   1                   1
## 2440                    2                   2                   2
## 2441                    1                   1                   1
## 2442                    1                   1                   1
## 2443                    2                   2                   2
## 2444                    1                   1                   1
## 2445                    1                   1                   1
## 2446                    2                   2                   2
## 2447                    1                   1                   1
## 2448                    1                   1                   1
## 2449                    1                   1                   1
## 2450                    1                   1                   1
## 2451                    1                   1                   1
## 2453                    2                   1                   1
## 2454                    1                   1                   1
## 2455                    1                   1                   1
## 2456                    2                   2                   2
## 2457                    1                   1                   1
## 2458                    2                   2                   2
## 2459                    1                   1                   1
## 2460                    1                   1                   1
## 2461                    1                   1                   1
## 2463                    2                   2                   2
## 2464                    1                   1                   1
## 2465                    2                   1                   2
## 2466                    1                   1                   1
## 2467                    2                   2                   2
## 2468                    1                   1                   1
## 2470                    2                   1                   2
## 2471                    1                   1                   1
## 2473                    1                   1                   1
## 2474                    1                   1                   1
## 2475                    2                   2                   2
## 2476                    2                   2                   2
## 2477                    1                   1                   1
## 2478                    1                   1                   1
## 2479                    1                   1                   1
## 2480                    2                   1                   1
## 2483                    1                   1                   1
## 2484                    2                   1                   2
## 2485                    2                   2                   1
## 2486                    1                   1                   1
## 2487                    1                   1                   1
## 2488                    1                   2                   2
## 2489                    1                   1                   1
## 2490                    1                   1                   1
## 2491                    1                   1                   1
## 2492                    2                   1                   1
## 2493                    2                   2                   2
## 2495                    1                   2                   1
## 2496                    1                   1                   1
## 2497                    2                   1                   1
## 2498                    2                   1                   2
## 2499                    2                   2                   2
## 2500                    1                   1                   1
## 2501                    2                   1                   1
## 2502                    1                   2                   2
## 2503                    1                   1                   1
## 2504                    1                   1                   1
## 2505                    1                   2                   1
## 2506                    1                   1                   1
## 2507                    1                   1                   1
## 2508                    2                   2                   2
## 2509                    1                   1                   1
## 2510                    1                   1                   1
## 2511                    1                   1                   1
## 2512                    1                   1                   1
## 2513                    2                   2                   2
## 2514                    2                   2                   1
## 2515                    2                   2                   2
## 2518                    2                   2                   2
## 2519                    2                   2                   2
## 2520                    2                   1                   1
## 2521                    2                   2                   2
## 2522                    2                   2                   1
## 2523                    1                   1                   1
## 2524                    2                   2                   2
## 2525                    2                   2                   2
## 2526                    1                   1                   1
## 2527                    2                   2                   2
## 2528                    2                   2                   2
## 2529                    2                   2                   2
## 2530                    1                   1                   1
## 2531                    1                   1                   1
## 2532                    2                   1                   1
## 2534                    1                   1                   1
## 2535                    1                   1                   1
## 2536                    2                   2                   2
## 2537                    1                   1                   1
## 2538                    1                   1                   1
## 2539                    1                   1                   1
## 2540                    1                   1                   1
## 2541                    2                   2                   2
## 2542                    1                   1                   1
## 2543                    1                   1                   1
## 2544                    1                   1                   1
## 2545                    2                   2                   2
## 2546                    1                   1                   1
## 2547                    2                   2                   1
## 2548                    1                   2                   2
## 2550                    2                   2                   2
## 2551                    1                   1                   1
## 2552                    1                   1                   2
## 2553                    1                   1                   1
## 2554                    2                   2                   2
## 2555                    1                   1                   1
## 2556                    1                   1                   1
## 2558                    1                   1                   1
## 2559                    1                   1                   1
## 2560                    2                   1                   2
## 2561                    1                   1                   1
## 2562                    2                   2                   1
## 2563                    2                   2                   2
## 2564                    2                   2                   2
## 2565                    1                   1                   1
## 2566                    1                   1                   1
## 2567                    2                   1                   2
## 2568                    2                   2                   2
## 2569                    2                   1                   1
## 2570                    1                   1                   1
## 2571                    2                   1                   1
## 2572                    1                   1                   1
## 2573                    2                   2                   2
## 2574                    2                   1                   2
## 2575                    2                   2                   2
## 2576                    2                   2                   2
## 2577                    1                   2                   2
## 2578                    2                   1                   1
## 2579                    2                   2                   2
## 2580                    1                   1                   1
## 2581                    1                   1                   1
## 2582                    2                   1                   1
## 2583                    1                   1                   1
## 2584                    1                   1                   1
## 2585                    2                   2                   2
## 2586                    1                   1                   1
## 2587                    2                   2                   2
## 2588                    2                   1                   2
## 2589                    1                   1                   1
## 2590                    1                   1                   2
## 2591                    2                   1                   2
## 2592                    2                   2                   2
## 2593                    1                   1                   1
## 2594                    1                   1                   1
## 2595                    1                   1                   1
## 2596                    2                   2                   2
## 2598                    2                   2                   2
## 2599                    2                   2                   2
## 2600                    2                   1                   2
## 2601                    2                   1                   1
## 2602                    1                   1                   1
## 2603                    2                   2                   1
## 2604                    2                   2                   2
## 2605                    1                   1                   1
## 2606                    2                   1                   2
## 2607                    1                   1                   1
## 2608                    2                   2                   2
## 2609                    1                   1                   1
## 2610                    1                   1                   1
## 2611                    1                   1                   1
## 2612                    1                   1                   1
## 2613                    2                   2                   2
## 2614                    1                   1                   1
## 2615                    1                   1                   1
## 2616                    1                   1                   1
## 2617                    1                   1                   1
## 2618                    2                   1                   2
## 2619                    1                   1                   1
## 2620                    1                   1                   1
## 2621                    1                   1                   1
## 2622                    1                   1                   1
## 2623                    2                   2                   2
## 2624                    2                   2                   2
## 2625                    2                   2                   2
## 2626                    2                   1                   1
## 2627                    2                   2                   2
## 2628                    1                   1                   1
## 2629                    2                   2                   1
## 2630                    1                   1                   1
## 2631                    2                   2                   2
## 2632                    2                   2                   1
## 2633                    1                   1                   1
## 2634                    1                   1                   1
## 2635                    1                   1                   1
## 2636                    2                   2                   2
## 2637                    1                   2                   2
## 2638                    1                   1                   1
## 2639                    2                   1                   1
## 2640                    1                   1                   1
## 2641                    2                   2                   2
## 2642                    2                   1                   1
## 2643                    1                   2                   2
## 2644                    1                   1                   1
## 2645                    1                   1                   1
## 2646                    1                   1                   1
## 2648                    2                   2                   1
## 2649                    1                   1                   1
## 2650                    1                   1                   1
## 2651                    1                   1                   1
## 2652                    1                   1                   2
## 2653                    2                   2                   2
## 2654                    2                   2                   2
## 2655                    2                   1                   1
## 2656                    1                   1                   1
## 2657                    1                   2                   2
## 2659                    1                   1                   1
## 2660                    1                   1                   1
## 2661                    1                   1                   1
## 2662                    1                   1                   1
## 2665                    1                   1                   2
## 2666                    2                   2                   1
## 2667                    1                   1                   1
## 2669                    2                   2                   2
## 2670                    2                   2                   2
## 2672                    1                   1                   1
## 2673                    1                   1                   1
## 2674                    2                   2                   2
## 2675                    1                   1                   1
## 2676                    1                   1                   1
## 2677                    2                   1                   2
## 2678                    1                   1                   1
## 2679                    2                   2                   1
## 2680                    2                   2                   2
## 2681                    2                   1                   2
## 2682                    2                   1                   2
## 2684                    2                   2                   2
## 2685                    1                   2                   2
## 2686                    2                   2                   2
## 2687                    2                   2                   2
## 2688                    1                   1                   1
## 2689                    2                   1                   1
## 2690                    2                   2                   2
## 2691                    2                   2                   1
## 2693                    1                   1                   1
## 2695                    1                   1                   1
## 2696                    2                   2                   2
## 2697                    2                   2                   2
## 2698                    2                   1                   1
## 2699                    1                   1                   1
## 2700                    2                   2                   2
## 2701                    1                   1                   1
## 2702                    1                   1                   1
## 2703                    2                   1                   1
## 2704                    1                   1                   1
## 2705                    1                   1                   1
## 2706                    1                   1                   1
## 2707                    1                   1                   1
## 2708                    1                   1                   1
## 2709                    2                   2                   1
## 2710                    1                   1                   1
## 2711                    1                   1                   2
## 2713                    2                   2                   2
## 2714                    1                   1                   1
## 2715                    1                   1                   1
## 2716                    1                   1                   1
## 2717                    1                   1                   1
## 2718                    2                   2                   2
## 2720                    1                   1                   1
## 2721                    2                   2                   2
## 2722                    1                   1                   1
## 2723                    2                   1                   1
## 2724                    2                   2                   2
## 2725                    2                   1                   1
## 2726                    1                   1                   1
## 2727                    1                   1                   1
## 2728                    2                   1                   2
## 2729                    2                   2                   2
## 2730                    2                   2                   1
## 2731                    1                   1                   1
## 2732                    2                   2                   2
## 2733                    1                   1                   1
## 2734                    2                   2                   2
## 2735                    1                   1                   1
## 2737                    1                   1                   1
## 2738                    2                   1                   2
## 2739                    1                   1                   1
## 2740                    2                   2                   2
## 2741                    1                   1                   1
## 2742                    2                   1                   1
## 2743                    2                   2                   2
## 2744                    1                   1                   1
## 2745                    1                   1                   1
## 2746                    1                   1                   1
## 2747                    2                   1                   2
## 2748                    2                   1                   1
## 2749                    2                   2                   2
## 2750                    1                   1                   1
## 2751                    1                   1                   1
## 2752                    1                   1                   1
## 2753                    1                   1                   1
## 2755                    2                   2                   1
## 2756                    1                   1                   1
## 2757                    1                   1                   1
## 2760                    2                   1                   1
## 2761                    2                   1                   1
## 2762                    1                   1                   1
## 2763                    2                   2                   2
## 2764                    2                   2                   2
## 2765                    1                   1                   1
## 2766                    2                   2                   1
## 2767                    1                   1                   1
## 2768                    2                   1                   2
## 2769                    2                   2                   2
## 2770                    2                   1                   2
## 2771                    2                   2                   1
## 2772                    1                   1                   1
## 2773                    1                   1                   2
## 2774                    1                   1                   1
## 2775                    1                   1                   1
## 2776                    2                   2                   1
## 2777                    2                   2                   2
## 2778                    2                   2                   2
## 2779                    1                   1                   1
## 2780                    1                   1                   1
## 2781                    2                   1                   2
## 2782                    1                   1                   1
## 2783                    1                   1                   1
## 2784                    1                   1                   1
## 2785                    2                   1                   1
## 2786                    2                   1                   1
## 2787                    1                   1                   1
## 2788                    1                   1                   2
## 2789                    2                   2                   2
## 2790                    1                   1                   1
## 2791                    2                   1                   2
## 2792                    2                   1                   2
## 2793                    2                   2                   2
## 2794                    1                   1                   1
## 2795                    1                   1                   1
## 2796                    2                   2                   2
## 2797                    1                   1                   1
## 2798                    1                   1                   1
## 2799                    1                   1                   1
## 2800                    2                   2                   1
## 2801                    1                   1                   1
## 2802                    2                   2                   2
## 2803                    2                   2                   1
## 2804                    1                   1                   1
## 2805                    1                   1                   1
## 2806                    2                   1                   2
## 2807                    2                   1                   1
## 2808                    1                   1                   1
## 2809                    2                   1                   2
## 2810                    1                   1                   1
## 2811                    2                   2                   2
## 2813                    2                   2                   1
## 2814                    1                   1                   1
## 2815                    2                   2                   2
## 2816                    2                   2                   2
## 2817                    1                   1                   1
## 2818                    2                   2                   2
## 2821                    2                   1                   1
## 2822                    2                   2                   1
## 2823                    1                   1                   1
## 2824                    2                   2                   2
## 2825                    2                   2                   2
## 2826                    1                   1                   1
## 2827                    2                   1                   1
## 2828                    2                   1                   2
## 2829                    1                   1                   1
## 2831                    2                   2                   2
## 2832                    1                   1                   1
## 2833                    2                   2                   1
## 2834                    2                   2                   1
## 2835                    2                   1                   1
## 2836                    2                   1                   1
## 2837                    2                   2                   2
## 2838                    1                   1                   1
## 2839                    1                   1                   1
## 2840                    1                   1                   1
## 2841                    2                   2                   2
## 2842                    2                   2                   2
## 2843                    1                   1                   1
## 2844                    2                   2                   2
## 2845                    2                   1                   1
## 2846                    1                   1                   1
## 2848                    1                   1                   1
## 2850                    2                   2                   2
## 2851                    1                   1                   1
## 2852                    1                   1                   1
## 2853                    2                   1                   1
## 2854                    1                   1                   1
## 2855                    2                   1                   1
## 2856                    1                   1                   1
## 2857                    1                   1                   1
## 2858                    2                   2                   2
## 2859                    2                   2                   2
## 2860                    2                   1                   1
## 2862                    1                   1                   1
## 2863                    2                   2                   2
## 2864                    2                   1                   1
## 2865                    1                   1                   1
## 2866                    2                   2                   2
## 2868                    1                   1                   1
## 2869                    2                   2                   2
## 2870                    2                   2                   2
## 2871                    2                   2                   2
## 2872                    1                   1                   1
## 2874                    1                   1                   1
## 2875                    1                   1                   1
## 2876                    1                   1                   1
## 2877                    1                   1                   1
## 2878                    2                   2                   2
## 2879                    1                   1                   1
## 2880                    1                   1                   1
## 2881                    2                   2                   2
## 2882                    1                   1                   1
## 2883                    1                   1                   2
## 2885                    2                   2                   2
## 2886                    2                   1                   1
## 2887                    1                   1                   1
## 2888                    2                   2                   2
## 2889                    2                   2                   2
## 2890                    2                   2                   2
## 2891                    1                   1                   1
## 2892                    2                   1                   1
## 2893                    1                   1                   1
## 2894                    2                   2                   2
## 2895                    2                   1                   1
## 2896                    1                   1                   1
## 2897                    1                   2                   2
## 2898                    1                   1                   1
## 2899                    2                   2                   2
## 2900                    1                   1                   1
## 2901                    1                   1                   1
## 2902                    2                   1                   1
## 2903                    1                   1                   1
## 2904                    2                   2                   2
## 2905                    1                   1                   1
## 2906                    1                   1                   1
## 2909                    1                   1                   1
## 2910                    1                   1                   1
## 2911                    1                   1                   1
## 2912                    2                   2                   2
## 2913                    2                   2                   2
## 2914                    1                   1                   1
## 2915                    1                   1                   1
## 2916                    1                   1                   1
## 2917                    2                   2                   2
## 2918                    1                   1                   1
## 2919                    1                   1                   2
## 2921                    1                   1                   1
## 2922                    2                   1                   1
## 2923                    1                   1                   1
## 2924                    1                   1                   1
## 2925                    1                   1                   1
## 2926                    1                   1                   1
## 2927                    1                   1                   1
## 2928                    2                   2                   2
## 2929                    2                   2                   1
## 2930                    2                   2                   2
## 2931                    2                   2                   2
## 2932                    1                   1                   1
## 2933                    2                   2                   2
## 2934                    2                   2                   2
## 2935                    1                   1                   1
## 2936                    2                   2                   1
## 2937                    2                   2                   2
## 2938                    2                   2                   2
## 2939                    1                   1                   1
## 2940                    2                   1                   2
## 2941                    2                   2                   2
## 2942                    1                   1                   1
## 2943                    1                   1                   1
## 2944                    1                   1                   1
## 2946                    1                   1                   1
## 2947                    2                   2                   2
## 2948                    1                   1                   1
## 2949                    2                   2                   2
## 2950                    1                   1                   1
## 2951                    1                   1                   1
## 2952                    1                   1                   1
## 2953                    2                   2                   1
## 2954                    1                   1                   1
## 2955                    1                   1                   1
## 2956                    1                   1                   1
## 2957                    2                   2                   2
## 2958                    2                   2                   2
## 2959                    1                   1                   2
## 2960                    1                   1                   1
## 2961                    1                   1                   1
## 2962                    1                   1                   1
## 2964                    1                   1                   1
## 2965                    1                   1                   2
## 2966                    2                   2                   1
## 2967                    1                   1                   1
## 2968                    1                   1                   1
## 2969                    1                   1                   1
## 2970                    2                   1                   2
## 2971                    1                   2                   2
## 2972                    2                   2                   2
## 2973                    1                   1                   2
## 2974                    1                   1                   1
## 2975                    1                   1                   1
## 2976                    2                   2                   2
## 2977                    2                   2                   2
## 2978                    1                   1                   1
## 2980                    1                   1                   1
## 2982                    1                   1                   2
## 2983                    1                   1                   1
## 2984                    2                   2                   2
## 2985                    1                   1                   1
## 2986                    2                   2                   2
## 2987                    2                   2                   1
## 2988                    1                   1                   1
## 2989                    2                   2                   1
## 2990                    2                   1                   2
## 2991                    1                   1                   1
## 2992                    2                   2                   2
## 2993                    1                   2                   2
## 2994                    1                   1                   1
## 2995                    1                   1                   1
## 2996                    2                   2                   2
## 2997                    1                   1                   1
## 2998                    2                   1                   1
## 2999                    2                   2                   2
## 3000                    2                   2                   2
## 3002                    2                   1                   1
## 3003                    2                   2                   2
## 3004                    1                   1                   1
## 3005                    2                   2                   2
## 3006                    1                   1                   1
## 3007                    2                   2                   1
## 3008                    2                   2                   1
## 3009                    2                   2                   2
## 3010                    2                   1                   1
## 3011                    1                   1                   1
## 3012                    2                   1                   2
## 3013                    2                   1                   1
## 3015                    2                   2                   2
## 3016                    1                   1                   1
## 3017                    2                   1                   1
## 3018                    1                   1                   1
## 3019                    2                   1                   1
## 3020                    2                   1                   2
## 3021                    2                   2                   2
## 3022                    2                   2                   2
## 3023                    1                   2                   2
## 3024                    2                   2                   2
## 3025                    2                   2                   2
## 3027                    2                   1                   2
## 3028                    1                   2                   2
## 3029                    1                   1                   1
## 3030                    2                   2                   1
## 3031                    1                   1                   1
## 3032                    2                   2                   2
## 3033                    2                   2                   2
## 3034                    2                   2                   2
## 3035                    2                   2                   2
## 3036                    2                   2                   2
## 3037                    2                   2                   2
## 3038                    1                   1                   1
## 3039                    1                   1                   2
## 3040                    2                   1                   2
## 3041                    1                   1                   1
## 3042                    2                   1                   2
## 3044                    2                   2                   2
## 3045                    1                   1                   1
## 3046                    1                   1                   1
## 3047                    1                   1                   1
## 3048                    2                   2                   2
## 3049                    1                   1                   1
## 3050                    2                   1                   1
## 3051                    2                   2                   2
## 3053                    1                   1                   1
## 3054                    1                   1                   1
## 3055                    1                   1                   1
## 3056                    1                   1                   1
## 3057                    1                   1                   1
## 3058                    2                   2                   2
## 3059                    2                   2                   2
## 3060                    1                   1                   1
## 3061                    1                   1                   1
## 3062                    1                   1                   1
## 3063                    1                   1                   1
## 3064                    2                   2                   2
## 3065                    1                   1                   1
## 3066                    2                   2                   2
## 3067                    1                   2                   2
## 3068                    1                   1                   1
## 3069                    2                   1                   1
## 3070                    1                   1                   1
## 3071                    1                   1                   1
## 3072                    2                   1                   1
## 3073                    2                   2                   2
## 3074                    1                   1                   1
## 3075                    1                   1                   2
## 3076                    2                   2                   2
## 3078                    1                   1                   1
## 3079                    1                   1                   1
## 3080                    1                   1                   1
## 3081                    1                   1                   1
## 3082                    1                   2                   2
## 3084                    2                   2                   2
## 3085                    1                   1                   1
## 3086                    2                   1                   2
## 3087                    1                   1                   1
## 3088                    1                   1                   1
## 3090                    2                   2                   2
## 3091                    2                   2                   2
## 3092                    2                   1                   1
## 3093                    1                   1                   1
## 3094                    1                   1                   1
## 3095                    1                   1                   1
## 3096                    1                   1                   1
## 3097                    2                   2                   2
## 3098                    2                   2                   2
## 3099                    2                   2                   2
## 3100                    2                   2                   2
## 3101                    1                   1                   1
## 3102                    1                   1                   1
## 3103                    1                   1                   1
## 3104                    2                   2                   2
## 3105                    1                   1                   1
## 3106                    1                   1                   1
## 3107                    2                   2                   2
## 3108                    1                   1                   1
## 3109                    2                   1                   1
## 3110                    1                   1                   1
## 3111                    2                   1                   1
## 3112                    1                   1                   1
## 3113                    2                   2                   1
## 3114                    2                   2                   2
## 3115                    1                   1                   1
## 3116                    2                   2                   2
## 3117                    1                   1                   1
## 3118                    1                   1                   1
## 3119                    2                   2                   2
## 3120                    1                   1                   1
## 3121                    2                   1                   2
## 3122                    1                   1                   1
## 3123                    2                   2                   2
## 3124                    1                   1                   2
## 3126                    2                   2                   2
## 3127                    1                   1                   1
## 3128                    2                   1                   1
## 3129                    2                   1                   1
## 3130                    2                   2                   1
## 3131                    1                   1                   1
## 3132                    1                   1                   2
## 3133                    1                   1                   1
## 3134                    1                   1                   1
## 3136                    1                   2                   1
## 3137                    1                   1                   2
## 3138                    2                   2                   2
## 3139                    1                   1                   1
## 3140                    1                   1                   1
## 3141                    1                   2                   2
## 3142                    2                   2                   2
## 3143                    1                   1                   1
## 3144                    2                   2                   2
## 3145                    1                   1                   1
## 3146                    1                   1                   1
## 3147                    2                   1                   2
## 3148                    2                   1                   1
## 3149                    1                   1                   1
## 3150                    1                   1                   1
## 3151                    1                   1                   1
## 3152                    1                   1                   1
## 3153                    2                   2                   2
## 3154                    1                   1                   1
## 3155                    1                   1                   1
## 3156                    1                   1                   1
## 3157                    2                   2                   2
## 3158                    2                   2                   1
## 3159                    1                   1                   1
## 3160                    1                   1                   1
## 3161                    1                   1                   1
## 3162                    1                   1                   1
## 3163                    1                   1                   1
## 3164                    2                   1                   2
## 3165                    2                   2                   2
## 3166                    1                   1                   1
## 3167                    2                   2                   2
## 3168                    2                   2                   2
## 3169                    1                   1                   1
## 3170                    1                   1                   2
## 3171                    1                   1                   1
## 3172                    1                   1                   1
## 3173                    1                   1                   1
## 3174                    1                   2                   2
## 3175                    1                   1                   1
## 3177                    1                   1                   1
## 3178                    1                   1                   1
## 3179                    1                   1                   1
## 3180                    2                   1                   2
## 3181                    1                   1                   1
## 3182                    1                   1                   1
## 3183                    1                   1                   1
## 3184                    1                   1                   1
## 3185                    2                   2                   2
## 3186                    2                   2                   2
## 3187                    2                   2                   2
## 3188                    2                   2                   2
## 3189                    1                   1                   1
## 3190                    2                   1                   2
## 3191                    1                   1                   1
## 3192                    2                   2                   2
## 3193                    2                   2                   2
## 3194                    2                   2                   2
## 3195                    1                   1                   1
## 3196                    1                   1                   1
## 3197                    1                   2                   2
## 3198                    2                   1                   1
## 3199                    2                   1                   2
## 3200                    1                   1                   1
## 3201                    2                   2                   2
## 3202                    1                   1                   1
## 3203                    1                   1                   1
## 3204                    1                   1                   1
## 3205                    1                   1                   1
## 3206                    2                   2                   2
## 3207                    2                   1                   1
## 3208                    2                   2                   1
## 3210                    2                   2                   2
## 3211                    1                   1                   1
## 3212                    2                   2                   2
## 3213                    1                   1                   1
## 3215                    2                   2                   2
## 3216                    1                   1                   1
## 3217                    1                   1                   1
## 3218                    2                   2                   2
## 3219                    1                   1                   1
## 3221                    1                   1                   1
## 3222                    1                   1                   1
## 3223                    1                   1                   1
## 3224                    1                   1                   1
## 3225                    2                   2                   2
## 3226                    2                   2                   2
## 3227                    2                   1                   1
## 3228                    2                   1                   1
## 3229                    2                   2                   2
## 3230                    2                   2                   2
## 3231                    2                   1                   2
## 3232                    1                   1                   1
## 3233                    1                   1                   1
## 3234                    2                   2                   2
## 3235                    1                   1                   1
## 3236                    1                   1                   1
## 3238                    1                   1                   1
## 3239                    2                   2                   2
## 3240                    2                   1                   1
## 3241                    2                   2                   2
## 3242                    1                   1                   1
## 3243                    1                   1                   1
## 3244                    1                   1                   1
## 3245                    1                   1                   1
## 3246                    2                   2                   2
## 3247                    2                   1                   1
## 3248                    1                   1                   1
## 3249                    2                   1                   2
## 3250                    1                   1                   1
## 3251                    1                   1                   1
## 3252                    1                   1                   1
## 3253                    1                   1                   1
## 3254                    1                   1                   1
## 3255                    1                   1                   1
## 3256                    2                   1                   1
## 3257                    1                   1                   1
## 3258                    2                   1                   1
## 3259                    1                   1                   1
## 3260                    2                   2                   2
## 3261                    1                   1                   1
## 3262                    2                   2                   2
## 3263                    2                   2                   2
## 3264                    1                   1                   1
## 3266                    1                   1                   1
## 3267                    1                   1                   1
## 3268                    1                   1                   1
## 3269                    1                   1                   1
## 3270                    2                   2                   2
## 3271                    1                   1                   1
## 3272                    2                   1                   1
## 3273                    1                   1                   1
## 3274                    2                   2                   1
## 3275                    1                   1                   1
## 3276                    2                   2                   1
## 3277                    2                   2                   2
## 3278                    1                   1                   1
## 3279                    1                   1                   1
## 3280                    2                   1                   1
## 3282                    2                   2                   2
## 3283                    2                   2                   2
## 3284                    1                   1                   1
## 3285                    1                   1                   1
## 3286                    1                   1                   1
## 3287                    2                   1                   1
## 3288                    1                   1                   1
## 3289                    2                   2                   2
## 3290                    2                   2                   1
## 3291                    2                   2                   2
## 3292                    2                   2                   1
## 3293                    1                   1                   1
## 3294                    2                   1                   2
## 3295                    2                   1                   1
## 3296                    1                   1                   1
## 3297                    2                   1                   1
## 3298                    2                   2                   2
## 3299                    2                   2                   2
## 3300                    1                   1                   1
## 3301                    2                   1                   2
## 3302                    1                   1                   1
## 3303                    2                   2                   2
## 3305                    1                   1                   1
## 3306                    1                   1                   1
## 3307                    2                   1                   1
## 3308                    2                   1                   1
## 3309                    1                   1                   1
## 3310                    2                   2                   2
## 3312                    1                   1                   1
## 3313                    1                   1                   1
## 3314                    2                   2                   2
## 3315                    1                   1                   1
## 3316                    1                   2                   2
## 3317                    1                   1                   1
## 3318                    1                   1                   1
## 3319                    1                   1                   1
## 3320                    1                   1                   1
## 3321                    1                   1                   1
## 3322                    1                   1                   1
## 3323                    2                   2                   2
## 3324                    1                   1                   1
## 3325                    2                   2                   2
## 3326                    1                   1                   1
## 3327                    2                   2                   2
## 3328                    1                   1                   1
## 3330                    1                   1                   1
## 3331                    2                   2                   1
## 3332                    1                   1                   1
## 3334                    2                   2                   2
## 3335                    2                   1                   1
## 3336                    2                   1                   2
## 3337                    1                   1                   1
## 3338                    2                   1                   2
## 3339                    1                   1                   1
## 3340                    1                   1                   1
## 3341                    1                   1                   1
## 3342                    2                   1                   1
## 3343                    1                   1                   1
## 3344                    1                   1                   1
## 3346                    2                   2                   1
## 3347                    2                   2                   2
## 3348                    2                   1                   2
## 3349                    2                   2                   1
## 3350                    2                   1                   1
## 3351                    1                   1                   1
## 3352                    2                   1                   1
## 3353                    1                   1                   1
## 3354                    2                   1                   1
## 3355                    2                   1                   1
## 3356                    2                   2                   2
## 3357                    1                   1                   1
## 3358                    2                   1                   1
## 3359                    1                   2                   2
## 3360                    2                   1                   2
## 3361                    1                   1                   1
## 3362                    2                   2                   2
## 3363                    1                   1                   1
## 3364                    1                   1                   1
## 3365                    2                   2                   2
## 3366                    1                   1                   1
## 3367                    2                   2                   2
## 3368                    2                   1                   1
## 3369                    2                   1                   1
## 3370                    2                   2                   2
## 3371                    1                   1                   1
## 3372                    2                   2                   2
## 3373                    2                   1                   1
## 3374                    2                   1                   2
## 3376                    1                   1                   1
## 3377                    2                   1                   2
## 3378                    1                   1                   1
## 3379                    1                   1                   1
## 3380                    2                   1                   1
## 3381                    2                   1                   1
## 3382                    2                   2                   2
## 3383                    2                   1                   1
## 3384                    2                   1                   1
## 3385                    2                   2                   2
## 3386                    2                   2                   2
## 3387                    2                   1                   1
## 3388                    1                   1                   1
## 3389                    1                   2                   2
## 3391                    2                   2                   1
## 3392                    1                   1                   1
## 3393                    2                   2                   2
## 3394                    2                   2                   2
## 3395                    1                   1                   1
## 3396                    1                   1                   1
## 3398                    1                   1                   1
## 3399                    1                   1                   1
## 3400                    2                   1                   2
## 3401                    1                   1                   1
## 3402                    2                   2                   2
## 3403                    2                   2                   2
## 3404                    2                   2                   2
## 3405                    1                   1                   1
## 3406                    2                   1                   2
## 3407                    1                   1                   1
## 3408                    2                   1                   1
## 3409                    1                   1                   1
## 3410                    2                   2                   2
## 3411                    2                   2                   2
## 3413                    1                   1                   1
## 3414                    2                   1                   2
## 3415                    1                   1                   1
## 3416                    2                   2                   2
## 3417                    1                   1                   1
## 3418                    2                   2                   2
## 3419                    1                   1                   1
## 3422                    2                   1                   1
## 3423                    2                   2                   2
## 3424                    1                   1                   1
## 3425                    1                   1                   2
## 3426                    2                   1                   2
## 3428                    1                   1                   1
## 3429                    1                   1                   1
## 3430                    2                   2                   2
## 3431                    2                   1                   2
## 3432                    2                   2                   2
## 3433                    1                   1                   1
## 3434                    1                   1                   1
## 3435                    1                   1                   1
## 3436                    1                   1                   1
## 3437                    1                   1                   1
## 3438                    1                   1                   1
## 3439                    1                   1                   1
## 3440                    1                   1                   1
## 3441                    2                   1                   1
## 3442                    2                   1                   1
## 3443                    1                   1                   1
## 3444                    2                   2                   2
## 3445                    2                   2                   2
## 3446                    1                   1                   1
## 3447                    2                   2                   2
## 3448                    2                   2                   2
## 3449                    2                   2                   2
## 3450                    2                   1                   1
## 3451                    1                   1                   1
## 3452                    2                   2                   2
## 3453                    2                   2                   2
## 3454                    1                   1                   1
## 3455                    2                   2                   1
## 3456                    1                   1                   1
## 3457                    1                   1                   1
## 3458                    1                   1                   1
## 3459                    1                   1                   1
## 3460                    2                   1                   2
## 3461                    1                   1                   1
## 3462                    1                   1                   1
## 3463                    1                   1                   1
## 3464                    1                   1                   1
## 3465                    1                   1                   1
## 3466                    2                   1                   1
## 3467                    1                   1                   1
## 3468                    1                   1                   1
## 3469                    1                   1                   1
## 3470                    2                   2                   2
## 3471                    2                   1                   2
## 3472                    1                   1                   1
## 3473                    1                   1                   1
## 3474                    1                   1                   1
## 3476                    1                   1                   1
## 3477                    2                   2                   2
## 3478                    1                   1                   1
## 3479                    1                   1                   1
## 3480                    1                   1                   1
## 3481                    2                   2                   2
## 3483                    1                   1                   1
## 3484                    1                   1                   1
## 3485                    1                   1                   1
## 3486                    2                   1                   2
## 3487                    1                   1                   1
## 3489                    1                   1                   2
## 3490                    2                   2                   2
## 3491                    1                   2                   2
## 3492                    1                   1                   1
## 3493                    2                   2                   2
## 3494                    2                   2                   2
## 3495                    2                   2                   2
## 3496                    1                   1                   1
## 3497                    1                   1                   1
## 3498                    2                   2                   2
## 3499                    1                   1                   1
## 3500                    1                   1                   1
## 3501                    2                   1                   1
## 3502                    2                   2                   1
## 3503                    2                   1                   1
## 3504                    2                   2                   2
## 3505                    2                   2                   2
## 3506                    2                   2                   2
## 3507                    2                   1                   1
## 3508                    1                   1                   1
## 3510                    1                   1                   1
## 3511                    1                   1                   1
## 3512                    2                   1                   2
## 3513                    1                   1                   1
## 3514                    1                   1                   1
## 3515                    1                   1                   1
## 3516                    1                   1                   1
## 3517                    2                   2                   2
## 3518                    1                   1                   1
## 3519                    2                   1                   1
## 3520                    2                   2                   2
## 3521                    1                   1                   1
## 3522                    1                   1                   1
## 3523                    2                   1                   2
## 3524                    1                   1                   1
## 3525                    2                   1                   1
## 3526                    1                   1                   1
## 3527                    1                   1                   1
## 3528                    1                   1                   1
## 3529                    1                   1                   2
## 3530                    1                   1                   1
## 3531                    1                   1                   1
## 3532                    2                   2                   2
## 3533                    1                   1                   1
## 3534                    2                   2                   2
## 3535                    1                   1                   1
## 3536                    2                   1                   2
## 3537                    1                   1                   1
## 3538                    2                   2                   2
## 3539                    1                   1                   1
## 3540                    1                   1                   1
## 3541                    2                   1                   2
## 3542                    2                   2                   1
## 3544                    1                   1                   1
## 3545                    1                   1                   1
## 3546                    1                   1                   1
## 3547                    1                   1                   2
## 3548                    2                   2                   2
## 3549                    1                   1                   1
## 3550                    2                   1                   2
## 3551                    2                   2                   2
## 3552                    1                   1                   1
## 3553                    2                   2                   2
## 3554                    2                   1                   1
## 3555                    2                   2                   2
## 3556                    1                   1                   1
## 3557                    1                   1                   1
## 3558                    2                   2                   2
## 3559                    2                   2                   2
## 3560                    1                   1                   1
## 3561                    1                   1                   1
## 3562                    2                   2                   2
## 3563                    1                   1                   1
## 3564                    2                   2                   2
## 3565                    2                   2                   2
## 3567                    2                   2                   1
## 3568                    2                   1                   1
## 3569                    2                   2                   2
## 3570                    1                   1                   1
## 3571                    2                   2                   2
## 3573                    1                   1                   1
## 3574                    1                   1                   1
## 3575                    1                   1                   2
## 3576                    1                   1                   1
## 3577                    1                   1                   1
## 3578                    1                   1                   1
## 3579                    1                   1                   1
## 3580                    1                   1                   1
## 3581                    1                   1                   1
## 3582                    2                   1                   1
## 3583                    1                   1                   1
## 3584                    2                   2                   2
## 3585                    2                   2                   2
## 3586                    2                   2                   2
## 3587                    1                   1                   1
## 3588                    1                   1                   1
## 3589                    1                   1                   1
## 3590                    1                   1                   1
## 3591                    2                   2                   1
## 3592                    2                   2                   2
## 3593                    2                   1                   1
## 3594                    1                   1                   1
## 3595                    2                   2                   2
## 3596                    1                   1                   1
## 3597                    2                   2                   2
## 3598                    1                   1                   1
## 3599                    1                   1                   1
## 3600                    2                   2                   2
## 3601                    1                   1                   1
## 3602                    1                   1                   1
## 3603                    2                   2                   2
## 3604                    1                   1                   1
## 3605                    1                   1                   1
## 3606                    1                   1                   1
## 3607                    1                   1                   1
## 3608                    1                   1                   1
## 3609                    1                   1                   1
## 3610                    2                   2                   2
## 3611                    2                   1                   1
## 3612                    2                   2                   2
## 3613                    2                   2                   2
## 3614                    1                   1                   1
## 3615                    1                   1                   1
## 3616                    1                   1                   1
## 3617                    1                   1                   1
## 3618                    1                   1                   1
## 3619                    2                   1                   2
## 3620                    2                   2                   2
## 3621                    1                   1                   1
## 3622                    1                   1                   1
## 3623                    2                   1                   2
## 3624                    2                   2                   1
## 3625                    1                   1                   1
## 3627                    2                   2                   2
## 3628                    2                   2                   1
## 3629                    1                   1                   1
## 3630                    2                   1                   1
## 3631                    2                   2                   2
## 3632                    1                   1                   1
## 3633                    2                   2                   2
## 3634                    2                   2                   2
## 3635                    1                   2                   1
## 3637                    1                   1                   1
## 3638                    1                   1                   1
## 3639                    2                   1                   1
## 3640                    1                   1                   1
## 3641                    2                   1                   2
## 3642                    2                   2                   2
## 3643                    1                   1                   1
## 3644                    2                   2                   2
## 3645                    2                   2                   2
## 3646                    2                   1                   1
## 3647                    1                   1                   2
## 3648                    2                   2                   2
## 3649                    1                   1                   1
## 3650                    1                   1                   1
## 3652                    1                   1                   1
## 3653                    1                   1                   1
## 3654                    1                   1                   1
## 3655                    1                   1                   1
## 3656                    2                   2                   2
## 3657                    2                   2                   1
## 3658                    2                   1                   1
## 3659                    1                   1                   1
## 3660                    2                   1                   1
## 3661                    1                   1                   1
## 3662                    1                   1                   1
## 3663                    2                   2                   2
## 3664                    2                   2                   2
## 3665                    1                   1                   1
## 3667                    2                   2                   2
## 3668                    1                   1                   1
## 3670                    1                   1                   1
## 3671                    1                   1                   1
## 3672                    1                   1                   1
## 3673                    1                   1                   2
## 3674                    1                   1                   1
## 3675                    1                   1                   1
## 3676                    2                   1                   1
## 3677                    1                   1                   1
## 3678                    1                   1                   1
## 3679                    1                   1                   1
## 3680                    2                   1                   1
## 3681                    2                   2                   2
## 3682                    2                   2                   2
## 3683                    2                   2                   2
## 3684                    2                   1                   1
## 3685                    2                   2                   2
## 3686                    1                   1                   1
## 3687                    1                   1                   1
## 3688                    2                   1                   1
## 3689                    2                   2                   2
## 3690                    1                   1                   1
## 3691                    1                   1                   1
## 3692                    2                   2                   2
## 3694                    2                   1                   1
## 3695                    1                   2                   1
## 3696                    2                   2                   2
## 3697                    2                   2                   2
## 3698                    2                   2                   1
## 3699                    2                   2                   2
## 3700                    1                   1                   1
## 3701                    1                   1                   1
## 3702                    1                   1                   1
## 3703                    2                   2                   2
## 3704                    2                   2                   2
## 3706                    1                   1                   1
## 3707                    2                   2                   2
## 3708                    2                   2                   2
## 3709                    2                   2                   1
## 3710                    2                   2                   2
## 3711                    1                   1                   1
## 3712                    2                   2                   2
## 3713                    2                   1                   2
## 3714                    1                   1                   1
## 3715                    2                   2                   2
## 3716                    2                   1                   1
## 3717                    2                   2                   1
## 3718                    2                   2                   2
## 3719                    1                   1                   1
## 3720                    1                   1                   1
## 3721                    1                   1                   1
## 3722                    2                   2                   2
## 3723                    1                   1                   1
## 3724                    1                   1                   1
## 3725                    1                   1                   1
## 3726                    1                   1                   1
## 3727                    2                   2                   2
## 3728                    1                   1                   1
## 3729                    1                   2                   2
## 3730                    1                   1                   1
## 3731                    1                   1                   1
## 3732                    1                   1                   1
## 3733                    2                   2                   2
## 3734                    1                   2                   2
## 3736                    1                   1                   1
## 3737                    2                   1                   2
## 3738                    1                   1                   1
## 3739                    1                   1                   1
## 3740                    1                   1                   1
## 3741                    1                   1                   1
## 3742                    1                   1                   1
## 3743                    1                   2                   2
## 3744                    2                   1                   2
## 3745                    2                   2                   2
## 3746                    2                   2                   2
## 3747                    2                   2                   2
## 3748                    1                   1                   1
## 3749                    2                   2                   2
## 3750                    1                   1                   1
## 3751                    2                   2                   2
## 3752                    1                   1                   1
## 3753                    1                   1                   1
## 3754                    2                   2                   2
## 3755                    2                   2                   2
## 3756                    1                   1                   1
## 3757                    2                   2                   2
## 3758                    1                   1                   1
## 3759                    2                   2                   2
## 3760                    2                   1                   2
## 3761                    1                   1                   1
## 3762                    1                   1                   1
## 3763                    2                   2                   2
## 3764                    2                   1                   1
## 3765                    1                   1                   1
## 3766                    2                   1                   2
## 3767                    1                   1                   1
## 3768                    2                   1                   2
## 3769                    1                   1                   1
## 3770                    1                   1                   1
## 3771                    2                   2                   2
## 3774                    1                   1                   1
## 3775                    1                   1                   1
## 3776                    1                   1                   1
## 3777                    2                   2                   2
## 3778                    1                   1                   1
## 3779                    2                   2                   2
## 3780                    2                   1                   2
## 3781                    2                   1                   1
## 3782                    1                   1                   1
## 3783                    2                   2                   2
## 3784                    1                   1                   1
## 3785                    1                   1                   1
## 3786                    2                   1                   1
## 3787                    1                   1                   1
## 3788                    1                   1                   1
## 3789                    1                   1                   1
## 3790                    1                   1                   2
## 3791                    2                   2                   2
## 3792                    2                   2                   2
## 3793                    1                   1                   1
## 3794                    1                   1                   1
## 3795                    2                   1                   1
## 3796                    2                   2                   2
## 3797                    2                   1                   2
## 3798                    1                   1                   1
## 3800                    1                   1                   1
## 3801                    1                   1                   1
## 3802                    2                   2                   2
## 3803                    2                   2                   2
## 3804                    2                   2                   2
## 3806                    2                   1                   2
## 3807                    1                   1                   1
## 3808                    1                   1                   1
## 3809                    1                   1                   1
## 3810                    2                   2                   2
## 3811                    2                   1                   2
## 3812                    1                   1                   1
## 3813                    2                   2                   1
## 3814                    2                   2                   1
## 3815                    1                   1                   1
## 3816                    1                   1                   1
## 3817                    1                   1                   1
## 3818                    1                   1                   1
## 3819                    2                   1                   1
## 3820                    1                   1                   1
## 3821                    2                   2                   2
## 3822                    2                   1                   1
## 3823                    2                   2                   2
## 3824                    1                   1                   1
## 3825                    1                   1                   1
## 3826                    1                   2                   1
## 3827                    2                   2                   2
## 3828                    2                   2                   1
## 3829                    1                   1                   1
## 3830                    2                   1                   1
## 3831                    2                   2                   2
## 3832                    1                   1                   1
## 3833                    1                   1                   1
## 3834                    2                   2                   2
## 3835                    2                   1                   2
## 3836                    1                   1                   1
## 3837                    2                   2                   1
## 3838                    2                   1                   2
## 3839                    2                   1                   1
## 3840                    1                   1                   1
## 3841                    1                   1                   1
## 3842                    2                   2                   2
## 3843                    1                   1                   1
## 3844                    1                   2                   2
## 3846                    1                   1                   1
## 3847                    2                   2                   2
## 3848                    1                   1                   1
## 3849                    2                   1                   1
## 3850                    1                   2                   2
## 3851                    1                   1                   1
## 3852                    2                   1                   1
## 3853                    1                   1                   1
## 3854                    1                   1                   1
## 3855                    2                   2                   2
## 3856                    1                   1                   1
## 3857                    2                   2                   2
## 3858                    1                   1                   1
## 3859                    2                   2                   2
## 3860                    2                   2                   2
## 3861                    2                   2                   1
## 3862                    2                   1                   1
## 3863                    2                   2                   2
## 3864                    1                   1                   1
## 3865                    2                   2                   2
## 3866                    2                   2                   2
## 3867                    2                   2                   2
## 3868                    1                   1                   1
## 3869                    1                   1                   1
## 3870                    1                   1                   1
## 3871                    2                   1                   1
## 3872                    1                   1                   2
## 3873                    1                   2                   2
## 3874                    1                   1                   1
## 3875                    1                   1                   1
## 3876                    2                   2                   2
## 3877                    2                   2                   2
## 3878                    1                   1                   1
## 3879                    2                   1                   2
## 3880                    1                   1                   1
## 3881                    2                   2                   2
## 3882                    2                   1                   2
## 3883                    2                   2                   1
## 3884                    1                   1                   1
## 3885                    1                   1                   1
## 3886                    1                   1                   1
## 3887                    2                   1                   1
## 3888                    2                   1                   1
## 3889                    2                   2                   2
## 3890                    2                   2                   1
## 3891                    2                   2                   2
## 3892                    1                   1                   1
## 3893                    1                   1                   1
## 3894                    2                   2                   2
## 3895                    1                   1                   1
## 3896                    2                   2                   2
## 3897                    1                   1                   1
## 3898                    1                   1                   1
## 3899                    1                   1                   1
## 3900                    1                   1                   1
## 3902                    2                   1                   1
## 3903                    2                   2                   2
## 3904                    2                   2                   2
## 3905                    2                   2                   2
## 3906                    1                   1                   1
## 3907                    2                   2                   2
## 3908                    1                   2                   2
## 3909                    2                   1                   1
## 3910                    1                   1                   1
## 3911                    1                   1                   1
## 3912                    2                   2                   2
## 3913                    2                   1                   2
## 3914                    1                   1                   1
## 3915                    2                   2                   2
## 3916                    1                   1                   1
## 3917                    2                   2                   2
## 3918                    1                   1                   1
## 3919                    2                   2                   2
## 3920                    1                   1                   1
## 3921                    1                   1                   1
## 3922                    1                   1                   1
## 3923                    2                   1                   2
## 3924                    1                   1                   1
## 3925                    1                   1                   1
## 3926                    1                   1                   1
## 3927                    2                   2                   1
## 3928                    1                   1                   1
## 3929                    2                   2                   2
## 3930                    1                   1                   1
## 3931                    2                   2                   2
## 3932                    1                   1                   1
## 3933                    2                   2                   2
## 3934                    2                   2                   2
## 3935                    1                   1                   1
## 3936                    1                   1                   1
## 3937                    2                   2                   2
## 3939                    2                   1                   1
## 3940                    2                   2                   2
## 3941                    1                   1                   1
## 3943                    1                   1                   1
## 3944                    1                   1                   1
## 3945                    1                   1                   1
## 3946                    1                   1                   1
## 3947                    2                   2                   2
## 3949                    2                   2                   2
## 3950                    2                   2                   1
## 3952                    1                   1                   1
## 3953                    1                   1                   1
## 3954                    2                   1                   1
## 3955                    1                   1                   1
## 3957                    2                   2                   2
## 3958                    1                   1                   1
## 3959                    2                   2                   2
## 3960                    1                   1                   1
## 3961                    1                   1                   1
## 3962                    1                   1                   1
## 3963                    2                   2                   2
## 3964                    1                   1                   1
## 3965                    1                   1                   1
## 3966                    2                   1                   2
## 3967                    1                   1                   1
## 3968                    1                   1                   1
## 3969                    2                   2                   1
## 3970                    2                   2                   2
## 3971                    2                   2                   2
## 3972                    1                   1                   1
## 3973                    2                   2                   2
## 3974                    1                   1                   1
## 3975                    1                   2                   2
## 3976                    1                   1                   1
## 3978                    1                   1                   1
## 3979                    2                   2                   2
## 3980                    2                   2                   2
## 3981                    1                   1                   1
## 3982                    1                   1                   1
## 3983                    2                   1                   1
## 3984                    2                   2                   1
## 3985                    1                   1                   1
## 3986                    2                   2                   2
## 3987                    1                   1                   1
## 3988                    1                   1                   1
## 3989                    1                   1                   1
## 3990                    1                   1                   1
## 3991                    2                   2                   2
## 3992                    2                   2                   2
## 3993                    2                   2                   2
## 3994                    1                   2                   2
## 3995                    2                   1                   1
## 3996                    1                   1                   1
## 3997                    1                   1                   1
## 3998                    1                   1                   1
## 3999                    2                   2                   2
## 4000                    2                   2                   2
## 4001                    1                   1                   1
## 4002                    1                   1                   1
## 4003                    2                   2                   2
## 4004                    1                   1                   1
## 4005                    1                   1                   1
## 4006                    1                   1                   1
## 4007                    1                   1                   1
## 4008                    1                   1                   1
## 4009                    1                   1                   1
## 4010                    1                   2                   1
## 4011                    1                   1                   1
## 4012                    2                   1                   1
## 4013                    2                   2                   2
## 4014                    1                   2                   2
## 4015                    1                   1                   1
## 4016                    2                   1                   2
## 4017                    1                   1                   1
## 4018                    1                   1                   1
## 4019                    2                   2                   2
## 4020                    2                   2                   2
## 4021                    1                   1                   1
## 4022                    2                   1                   1
## 4023                    2                   2                   2
## 4024                    1                   1                   1
## 4025                    2                   2                   2
## 4026                    1                   1                   1
## 4027                    2                   1                   2
## 4028                    1                   1                   1
## 4029                    1                   1                   1
## 4030                    1                   1                   1
## 4031                    2                   1                   2
## 4032                    2                   1                   1
## 4033                    2                   1                   1
## 4034                    1                   1                   1
## 4035                    2                   1                   1
## 4036                    2                   2                   2
## 4037                    1                   1                   1
## 4038                    2                   2                   2
## 4039                    1                   1                   1
## 4040                    1                   1                   1
## 4041                    2                   2                   2
## 4042                    1                   1                   1
## 4043                    1                   1                   2
## 4044                    1                   2                   2
## 4046                    2                   2                   2
## 4047                    2                   1                   2
## 4048                    1                   1                   1
## 4049                    1                   2                   2
## 4050                    2                   2                   2
## 4051                    1                   1                   1
## 4052                    1                   1                   1
## 4053                    2                   2                   2
## 4054                    1                   1                   1
## 4055                    2                   1                   1
## 4056                    1                   1                   1
## 4057                    1                   1                   1
## 4058                    1                   1                   1
## 4061                    1                   1                   1
## 4062                    1                   1                   1
## 4063                    1                   1                   1
## 4064                    1                   1                   1
## 4065                    1                   1                   1
## 4067                    2                   1                   2
## 4068                    1                   1                   1
## 4069                    1                   1                   1
## 4070                    1                   1                   1
## 4071                    2                   1                   2
## 4072                    1                   1                   1
## 4073                    1                   1                   2
## 4074                    2                   1                   2
## 4075                    2                   1                   1
## 4076                    2                   2                   2
## 4077                    2                   2                   2
## 4078                    2                   2                   2
## 4079                    1                   1                   1
## 4080                    2                   2                   2
## 4081                    1                   1                   1
## 4082                    2                   2                   2
## 4083                    1                   1                   1
## 4084                    2                   2                   2
## 4085                    2                   2                   2
## 4086                    1                   1                   1
## 4087                    2                   2                   1
## 4088                    2                   2                   2
## 4089                    1                   2                   2
## 4090                    1                   1                   1
## 4091                    2                   2                   2
## 4092                    1                   1                   1
## 4094                    2                   2                   2
## 4095                    2                   2                   2
## 4096                    1                   1                   1
## 4097                    1                   1                   1
## 4098                    1                   1                   1
## 4099                    1                   1                   1
## 4100                    1                   1                   1
## 4101                    2                   2                   1
## 4102                    2                   2                   2
## 4103                    2                   2                   2
## 4104                    1                   1                   1
## 4105                    1                   1                   1
## 4106                    1                   1                   1
## 4107                    2                   1                   1
## 4108                    1                   1                   2
## 4109                    1                   1                   1
## 4111                    1                   1                   1
## 4112                    1                   1                   1
## 4113                    1                   1                   1
## 4114                    1                   1                   1
## 4115                    1                   1                   1
## 4116                    2                   1                   1
## 4117                    1                   1                   1
## 4118                    1                   1                   1
## 4119                    1                   1                   1
## 4121                    2                   2                   2
## 4122                    1                   1                   1
## 4123                    1                   1                   1
## 4124                    1                   1                   1
## 4126                    1                   1                   1
## 4127                    2                   1                   1
## 4130                    1                   1                   1
## 4131                    1                   1                   1
## 4133                    1                   1                   1
## 4134                    2                   2                   2
## 4135                    1                   1                   1
## 4136                    1                   1                   1
## 4137                    2                   2                   2
## 4138                    2                   2                   2
## 4139                    1                   1                   1
## 4140                    1                   1                   1
## 4141                    2                   1                   2
## 4142                    1                   1                   1
## 4143                    1                   1                   1
## 4144                    1                   1                   1
## 4145                    2                   1                   2
## 4146                    1                   1                   1
## 4147                    2                   2                   2
## 4148                    1                   1                   1
## 4149                    2                   2                   2
## 4150                    1                   1                   1
## 4151                    1                   1                   1
## 4152                    1                   1                   1
## 4153                    1                   1                   1
## 4154                    1                   1                   1
## 4155                    1                   1                   1
## 4156                    2                   2                   2
## 4157                    1                   1                   1
## 4158                    1                   1                   1
## 4159                    2                   2                   2
## 4160                    1                   1                   2
## 4161                    1                   1                   1
## 4162                    2                   2                   2
## 4163                    1                   1                   1
## 4164                    1                   1                   1
## 4165                    1                   1                   1
## 4166                    1                   1                   1
## 4167                    2                   2                   1
## 4168                    1                   1                   1
## 4169                    1                   1                   1
## 4170                    1                   1                   1
## 4171                    2                   2                   2
## 4172                    2                   1                   1
## 4173                    1                   1                   1
## 4174                    1                   1                   1
## 4175                    1                   1                   1
## 4176                    1                   2                   1
## 4177                    2                   2                   2
## 4178                    1                   1                   1
## 4179                    1                   1                   1
## 4180                    2                   2                   2
## 4181                    1                   1                   1
## 4182                    1                   1                   1
## 4183                    1                   1                   1
## 4184                    2                   2                   2
## 4185                    1                   2                   2
## 4186                    1                   1                   1
## 4187                    1                   1                   1
## 4188                    1                   1                   1
## 4189                    1                   1                   1
## 4190                    1                   1                   1
## 4191                    2                   2                   1
## 4192                    2                   1                   1
## 4193                    1                   1                   1
## 4194                    2                   1                   2
## 4195                    2                   1                   1
## 4196                    2                   2                   2
## 4197                    1                   1                   1
## 4198                    1                   1                   1
## 4199                    2                   2                   2
## 4200                    1                   1                   1
## 4201                    1                   1                   1
## 4202                    1                   1                   1
## 4203                    1                   1                   1
## 4204                    2                   2                   2
## 4205                    1                   1                   1
## 4206                    1                   1                   1
## 4207                    2                   2                   2
## 4209                    1                   1                   1
## 4211                    1                   1                   1
## 4212                    1                   1                   1
## 4213                    1                   1                   1
## 4214                    1                   1                   1
## 4215                    1                   1                   1
## 4216                    1                   1                   1
## 4217                    1                   1                   1
## 4218                    2                   1                   2
## 4220                    2                   1                   1
## 4221                    2                   1                   2
## 4222                    1                   1                   1
## 4223                    1                   1                   1
## 4224                    1                   1                   1
## 4225                    1                   1                   1
## 4226                    1                   1                   1
## 4227                    1                   1                   1
## 4228                    1                   1                   1
## 4229                    2                   2                   2
## 4230                    1                   1                   1
## 4232                    2                   2                   2
## 4233                    1                   1                   1
## 4234                    1                   2                   2
## 4235                    2                   2                   2
## 4236                    2                   2                   2
## 4237                    1                   1                   1
## 4238                    1                   1                   1
## 4239                    1                   1                   1
## 4240                    1                   1                   1
## 4241                    2                   2                   2
## 4242                    1                   1                   1
## 4243                    1                   1                   1
## 4244                    1                   1                   1
## 4245                    2                   2                   2
## 4246                    2                   2                   2
## 4247                    1                   1                   1
## 4248                    1                   1                   1
## 4249                    2                   2                   2
## 4250                    1                   1                   1
## 4251                    1                   1                   1
## 4252                    2                   1                   2
## 4253                    1                   1                   1
## 4254                    1                   1                   1
## 4255                    1                   1                   1
## 4257                    2                   2                   1
## 4258                    2                   1                   1
## 4259                    1                   1                   1
## 4260                    2                   1                   1
## 4261                    1                   1                   1
## 4262                    2                   2                   2
## 4263                    2                   2                   2
## 4264                    1                   1                   1
## 4265                    2                   2                   2
## 4266                    1                   1                   1
## 4267                    1                   1                   1
## 4268                    2                   1                   1
## 4269                    2                   2                   2
## 4270                    2                   1                   1
## 4271                    1                   1                   1
## 4272                    1                   1                   1
## 4273                    2                   2                   2
## 4275                    1                   1                   1
## 4276                    1                   1                   1
## 4277                    1                   1                   1
## 4278                    2                   2                   2
## 4279                    2                   2                   2
## 4280                    2                   2                   2
## 4282                    1                   1                   1
## 4283                    1                   1                   1
## 4285                    1                   1                   1
## 4286                    1                   1                   1
## 4287                    2                   2                   2
## 4288                    2                   2                   2
## 4289                    1                   1                   1
## 4290                    1                   1                   1
## 4291                    1                   1                   1
## 4292                    1                   1                   1
## 4293                    1                   1                   1
## 4294                    1                   1                   1
## 4295                    2                   2                   2
## 4296                    2                   2                   2
## 4297                    1                   1                   1
## 4298                    2                   1                   1
## 4299                    1                   1                   1
## 4300                    2                   2                   2
## 4301                    1                   1                   1
## 4302                    2                   2                   2
## 4303                    1                   1                   1
## 4304                    2                   2                   2
## 4305                    2                   2                   2
## 4306                    1                   1                   1
## 4307                    1                   1                   1
## 4308                    1                   1                   1
## 4309                    1                   1                   1
## 4310                    1                   1                   1
## 4311                    1                   1                   1
## 4312                    1                   1                   1
## 4313                    2                   2                   2
## 4314                    1                   1                   1
## 4315                    2                   2                   2
## 4316                    1                   1                   1
## 4317                    1                   1                   1
## 4318                    2                   2                   2
## 4319                    2                   2                   2
## 4320                    2                   2                   2
## 4321                    2                   1                   2
## 4322                    2                   2                   2
## 4323                    2                   2                   2
## 4324                    2                   2                   2
## 4325                    2                   1                   2
## 4326                    1                   1                   1
## 4327                    1                   1                   1
## 4328                    2                   2                   2
## 4329                    1                   1                   1
## 4330                    1                   1                   1
## 4331                    2                   2                   2
## 4332                    1                   1                   1
## 4333                    1                   1                   1
## 4334                    2                   2                   2
## 4335                    2                   1                   1
## 4336                    1                   1                   1
## 4337                    1                   1                   1
## 4338                    1                   1                   1
## 4339                    2                   1                   1
## 4340                    2                   1                   1
## 4341                    2                   2                   2
## 4342                    1                   1                   1
## 4343                    1                   1                   1
## 4344                    1                   1                   1
## 4345                    1                   1                   1
## 4346                    1                   1                   1
## 4347                    2                   1                   1
## 4348                    1                   1                   1
## 4349                    1                   1                   1
## 4350                    1                   1                   1
## 4351                    1                   1                   1
## 4352                    2                   1                   2
## 4353                    1                   1                   1
## 4354                    1                   1                   1
## 4355                    1                   1                   1
## 4356                    1                   1                   1
## 4357                    1                   1                   1
## 4358                    2                   2                   2
## 4359                    1                   1                   1
## 4360                    2                   1                   1
## 4361                    2                   1                   1
## 4362                    2                   2                   2
## 4363                    2                   2                   2
## 4364                    1                   2                   2
## 4365                    1                   1                   1
## 4366                    1                   1                   1
## 4367                    1                   1                   1
## 4368                    1                   2                   2
## 4369                    2                   1                   1
## 4370                    2                   2                   2
## 4371                    1                   1                   1
## 4372                    1                   1                   1
## 4373                    1                   1                   1
## 4374                    1                   1                   1
## 4375                    1                   1                   1
## 4376                    2                   1                   2
## 4377                    2                   2                   2
## 4378                    2                   2                   2
## 4379                    1                   1                   1
## 4380                    1                   1                   1
## 4381                    1                   1                   1
## 4383                    1                   2                   1
## 4384                    2                   1                   1
## 4385                    2                   1                   2
## 4386                    2                   1                   2
## 4387                    1                   1                   1
## 4388                    2                   2                   2
## 4389                    1                   1                   1
## 4390                    2                   1                   2
## 4391                    2                   1                   1
## 4392                    1                   1                   1
## 4393                    1                   1                   1
## 4394                    2                   2                   2
## 4395                    2                   2                   2
## 4396                    1                   1                   1
## 4397                    2                   2                   2
## 4398                    2                   2                   2
## 4400                    2                   2                   2
## 4401                    2                   2                   2
## 4402                    1                   1                   1
## 4403                    2                   1                   2
## 4404                    1                   1                   1
## 4405                    2                   1                   1
## 4406                    2                   2                   2
## 4407                    2                   2                   2
## 4408                    1                   1                   1
## 4409                    1                   1                   1
## 4410                    2                   1                   1
## 4411                    2                   2                   2
## 4412                    2                   2                   2
## 4413                    2                   1                   1
## 4414                    1                   1                   1
## 4415                    1                   1                   1
## 4416                    1                   1                   1
## 4417                    1                   1                   1
## 4419                    1                   1                   1
## 4420                    2                   2                   2
## 4421                    2                   2                   2
## 4422                    2                   1                   1
## 4423                    2                   2                   2
## 4424                    1                   1                   1
## 4425                    2                   2                   2
## 4426                    2                   2                   2
## 4427                    1                   1                   1
## 4428                    1                   1                   1
## 4429                    1                   1                   1
## 4430                    2                   2                   2
## 4431                    2                   2                   2
## 4432                    1                   1                   2
## 4433                    2                   2                   2
## 4434                    1                   2                   1
## 4435                    1                   1                   1
## 4436                    2                   1                   2
## 4437                    2                   2                   2
## 4438                    1                   1                   1
## 4439                    2                   1                   1
## 4440                    1                   1                   1
## 4441                    1                   1                   1
## 4442                    2                   2                   1
## 4443                    1                   1                   1
## 4444                    1                   1                   1
## 4445                    1                   1                   1
## 4446                    2                   2                   2
## 4447                    1                   1                   1
## 4448                    1                   1                   1
## 4449                    1                   1                   1
## 4450                    1                   1                   1
## 4451                    1                   1                   1
## 4452                    1                   2                   2
## 4453                    1                   1                   1
## 4454                    1                   1                   1
## 4455                    1                   1                   1
## 4456                    1                   1                   1
## 4457                    1                   1                   1
## 4458                    1                   1                   1
## 4459                    2                   2                   2
## 4460                    1                   1                   1
## 4461                    2                   1                   1
## 4462                    2                   2                   2
## 4463                    1                   1                   1
## 4464                    1                   1                   1
## 4465                    2                   2                   2
## 4466                    1                   1                   1
## 4467                    2                   2                   2
## 4468                    1                   1                   1
## 4469                    2                   2                   1
## 4471                    2                   2                   2
## 4472                    2                   2                   2
## 4473                    2                   2                   2
## 4474                    1                   1                   1
## 4475                    1                   1                   1
## 4476                    1                   1                   1
## 4477                    1                   1                   1
## 4478                    1                   1                   1
## 4479                    2                   2                   2
## 4480                    1                   1                   1
## 4481                    1                   1                   1
## 4482                    1                   1                   1
## 4483                    1                   1                   1
## 4485                    1                   1                   1
## 4486                    1                   1                   1
## 4487                    1                   1                   1
## 4488                    2                   2                   2
## 4489                    1                   1                   1
## 4490                    1                   1                   1
## 4491                    2                   2                   2
## 4492                    2                   2                   2
## 4493                    2                   2                   2
## 4494                    1                   1                   1
## 4495                    1                   1                   1
## 4496                    1                   1                   1
## 4497                    2                   1                   1
## 4498                    1                   1                   1
## 4499                    2                   2                   2
## 4500                    2                   1                   1
## 4501                    2                   2                   2
## 4502                    2                   1                   2
## 4504                    1                   1                   1
## 4505                    1                   1                   1
## 4506                    1                   1                   1
## 4507                    2                   2                   2
## 4508                    2                   2                   2
## 4509                    2                   2                   1
## 4510                    2                   1                   1
## 4511                    1                   1                   1
## 4512                    1                   1                   1
## 4513                    1                   1                   1
## 4514                    2                   2                   2
## 4515                    2                   1                   1
## 4516                    2                   1                   2
## 4517                    1                   1                   1
## 4518                    2                   2                   2
## 4519                    1                   1                   1
## 4520                    1                   1                   1
## 4521                    1                   1                   1
## 4522                    2                   2                   1
## 4523                    2                   1                   1
## 4524                    2                   1                   1
## 4525                    2                   2                   1
## 4526                    1                   1                   1
## 4528                    2                   2                   2
## 4529                    1                   1                   1
## 4530                    1                   1                   1
## 4531                    1                   1                   1
## 4532                    1                   1                   1
## 4533                    1                   1                   1
## 4534                    2                   2                   2
## 4535                    2                   2                   2
## 4536                    1                   1                   1
## 4537                    2                   2                   2
## 4538                    2                   2                   2
## 4539                    2                   1                   1
## 4540                    1                   1                   1
## 4541                    1                   1                   1
## 4542                    1                   1                   1
## 4543                    2                   2                   2
## 4545                    1                   1                   1
## 4546                    1                   2                   2
## 4547                    1                   1                   1
## 4548                    1                   1                   1
## 4549                    2                   2                   2
## 4550                    1                   1                   1
## 4551                    1                   1                   1
## 4552                    2                   1                   1
## 4553                    1                   1                   1
## 4554                    1                   1                   1
## 4555                    2                   1                   1
## 4556                    1                   1                   1
## 4557                    2                   1                   1
## 4558                    2                   2                   2
## 4559                    1                   1                   1
## 4560                    2                   1                   1
## 4561                    1                   1                   1
## 4562                    1                   1                   1
## 4563                    2                   1                   1
## 4564                    2                   2                   2
## 4565                    2                   1                   1
## 4566                    2                   2                   2
## 4567                    2                   1                   1
## 4568                    2                   2                   2
## 4569                    1                   1                   1
## 4570                    1                   1                   1
## 4571                    1                   1                   1
## 4572                    1                   1                   1
## 4573                    2                   1                   1
## 4574                    2                   1                   2
## 4575                    2                   2                   2
## 4577                    1                   1                   1
## 4578                    1                   1                   1
## 4579                    2                   1                   1
## 4580                    1                   1                   1
## 4581                    1                   1                   1
## 4582                    1                   1                   1
## 4583                    1                   2                   2
## 4584                    1                   1                   1
## 4585                    1                   1                   1
## 4586                    1                   1                   1
## 4587                    2                   2                   2
## 4588                    2                   2                   2
## 4589                    2                   2                   2
## 4590                    1                   1                   1
## 4591                    2                   2                   2
## 4592                    1                   1                   1
## 4593                    2                   2                   2
## 4594                    2                   2                   2
## 4595                    1                   1                   1
## 4596                    1                   1                   1
## 4597                    1                   1                   1
## 4598                    2                   2                   2
## 4599                    1                   1                   1
## 4600                    2                   1                   1
## 4601                    1                   1                   1
## 4602                    1                   1                   1
## 4603                    2                   2                   2
## 4604                    2                   2                   2
## 4605                    2                   1                   1
## 4606                    1                   1                   1
## 4607                    1                   1                   1
## 4608                    2                   2                   2
## 4609                    1                   1                   1
## 4610                    1                   1                   1
## 4611                    2                   1                   1
## 4612                    1                   1                   1
## 4615                    2                   1                   2
## 4616                    2                   2                   2
## 4617                    1                   1                   1
## 4618                    2                   1                   1
## 4619                    2                   1                   1
## 4620                    2                   2                   2
## 4621                    1                   1                   1
## 4622                    1                   1                   1
## 4623                    1                   1                   1
## 4624                    2                   2                   1
## 4625                    1                   1                   1
## 4626                    1                   1                   1
## 4627                    2                   2                   2
## 4628                    1                   1                   1
## 4629                    1                   1                   1
## 4630                    2                   1                   2
## 4631                    1                   1                   1
## 4633                    1                   1                   1
## 4634                    1                   1                   1
## 4635                    1                   1                   1
## 4636                    2                   2                   2
## 4637                    1                   1                   1
## 4638                    2                   1                   2
## 4639                    1                   1                   1
## 4640                    2                   1                   2
## 4641                    1                   1                   1
## 4642                    2                   2                   2
## 4643                    2                   1                   1
## 4644                    2                   2                   2
## 4645                    1                   1                   1
## 4646                    2                   2                   2
## 4647                    2                   2                   2
## 4648                    2                   2                   2
## 4649                    1                   1                   1
## 4650                    2                   1                   1
## 4651                    1                   1                   1
## 4652                    2                   2                   2
## 4654                    1                   1                   1
## 4655                    1                   1                   1
## 4657                    1                   1                   1
## 4658                    2                   1                   2
## 4660                    2                   2                   2
## 4661                    1                   1                   1
## 4662                    1                   1                   1
## 4663                    2                   2                   2
## 4664                    1                   1                   1
## 4665                    1                   1                   1
## 4666                    2                   2                   1
## 4667                    2                   2                   2
## 4670                    1                   1                   1
## 4671                    2                   1                   2
## 4672                    1                   1                   1
## 4673                    2                   2                   1
## 4674                    2                   2                   2
## 4675                    1                   1                   1
## 4676                    2                   2                   2
## 4677                    1                   1                   1
## 4678                    1                   1                   1
## 4679                    2                   2                   2
## 4680                    1                   1                   1
## 4681                    1                   1                   1
## 4682                    1                   1                   1
## 4683                    1                   1                   1
## 4684                    1                   2                   2
## 4685                    1                   1                   1
## 4687                    2                   1                   1
## 4688                    2                   2                   2
## 4689                    2                   1                   1
## 4690                    2                   1                   1
## 4691                    1                   1                   1
## 4692                    2                   2                   2
## 4693                    1                   1                   1
## 4694                    1                   1                   1
## 4695                    2                   1                   1
## 4696                    2                   1                   1
## 4697                    2                   2                   2
## 4698                    1                   1                   1
## 4699                    1                   1                   1
## 4700                    1                   1                   1
## 4701                    2                   2                   2
## 4703                    1                   1                   1
## 4704                    2                   1                   1
## 4705                    2                   2                   2
## 4706                    1                   1                   1
## 4707                    1                   1                   1
## 4708                    1                   1                   1
## 4709                    1                   1                   1
## 4710                    1                   1                   1
## 4712                    1                   1                   1
## 4713                    2                   1                   2
## 4714                    1                   1                   1
## 4715                    2                   1                   1
## 4716                    1                   1                   1
## 4717                    1                   1                   1
## 4718                    1                   1                   1
## 4719                    1                   1                   1
## 4720                    1                   1                   1
## 4721                    2                   2                   2
## 4722                    2                   2                   2
## 4723                    2                   2                   2
## 4724                    1                   1                   1
## 4725                    2                   1                   2
## 4727                    2                   1                   1
## 4728                    1                   1                   1
## 4729                    1                   1                   1
## 4730                    1                   1                   1
## 4731                    1                   1                   1
## 4732                    1                   1                   1
## 4733                    1                   1                   1
## 4734                    2                   2                   2
## 4735                    2                   2                   2
## 4736                    1                   1                   1
## 4737                    2                   1                   1
## 4738                    1                   1                   1
## 4739                    2                   1                   2
## 4740                    2                   2                   2
## 4741                    1                   1                   1
## 4742                    1                   1                   1
## 4743                    1                   1                   1
## 4744                    1                   1                   1
## 4745                    2                   2                   2
## 4746                    2                   2                   2
## 4748                    1                   1                   1
## 4749                    2                   2                   1
## 4750                    1                   1                   1
## 4751                    1                   1                   1
## 4752                    1                   1                   1
## 4754                    1                   1                   1
## 4755                    2                   2                   2
## 4756                    2                   1                   1
## 4757                    2                   1                   2
## 4759                    1                   1                   1
## 4760                    1                   1                   1
## 4761                    1                   1                   1
## 4762                    2                   2                   2
## 4763                    1                   1                   1
## 4764                    1                   1                   1
## 4765                    1                   1                   1
## 4766                    2                   2                   2
## 4767                    1                   1                   1
## 4768                    1                   1                   1
## 4769                    1                   1                   1
## 4770                    2                   2                   1
## 4771                    2                   1                   2
## 4773                    2                   2                   2
## 4774                    2                   1                   2
## 4775                    1                   1                   1
## 4776                    1                   1                   1
## 4777                    2                   1                   1
## 4778                    1                   1                   2
## 4779                    1                   1                   1
## 4780                    1                   1                   1
## 4781                    1                   1                   1
## 4782                    2                   1                   2
## 4783                    1                   1                   1
## 4784                    2                   2                   2
## 4785                    1                   1                   1
## 4787                    1                   1                   1
## 4788                    2                   2                   2
## 4789                    1                   1                   1
## 4790                    2                   1                   1
## 4791                    1                   1                   1
## 4792                    1                   1                   1
## 4793                    1                   1                   1
## 4794                    1                   1                   1
## 4795                    2                   2                   2
## 4796                    1                   1                   1
## 4797                    2                   2                   2
## 4798                    1                   1                   1
## 4799                    1                   1                   1
## 4800                    2                   2                   1
## 4801                    2                   1                   1
## 4802                    2                   2                   1
## 4803                    2                   1                   2
## 4804                    2                   2                   2
## 4805                    2                   2                   2
## 4806                    1                   1                   1
## 4807                    1                   1                   1
## 4808                    1                   2                   1
## 4809                    1                   1                   1
## 4810                    1                   1                   1
## 4811                    1                   1                   1
## 4812                    2                   2                   2
## 4813                    1                   1                   1
## 4815                    1                   1                   1
## 4816                    1                   1                   1
## 4817                    2                   2                   2
## 4818                    2                   2                   2
## 4820                    2                   2                   1
## 4821                    2                   2                   2
## 4822                    2                   2                   2
## 4823                    1                   1                   1
## 4824                    1                   1                   1
## 4825                    1                   1                   1
## 4826                    2                   1                   2
## 4827                    1                   1                   1
## 4828                    2                   2                   2
## 4829                    1                   1                   1
## 4830                    1                   1                   2
## 4831                    1                   1                   1
## 4832                    1                   1                   1
## 4833                    2                   1                   1
## 4834                    1                   1                   1
## 4835                    2                   1                   1
## 4836                    1                   1                   1
## 4837                    1                   1                   1
## 4838                    1                   1                   1
## 4839                    1                   1                   2
## 4840                    1                   1                   1
## 4841                    1                   1                   1
## 4842                    2                   2                   2
## 4843                    2                   1                   2
## 4844                    1                   1                   1
## 4845                    1                   1                   1
## 4846                    2                   1                   1
## 4847                    2                   2                   2
## 4848                    2                   2                   1
## 4849                    1                   1                   1
## 4850                    1                   1                   1
## 4851                    1                   1                   1
## 4852                    1                   1                   1
## 4853                    2                   2                   2
## 4854                    1                   1                   1
## 4855                    1                   1                   1
## 4856                    1                   1                   1
## 4857                    1                   1                   1
## 4858                    1                   1                   1
## 4859                    1                   1                   1
## 4860                    2                   2                   2
## 4861                    2                   2                   2
## 4862                    1                   1                   1
## 4863                    2                   2                   2
## 4864                    2                   2                   2
## 4865                    2                   2                   2
## 4866                    1                   1                   1
## 4867                    1                   1                   1
## 4868                    1                   1                   1
## 4869                    1                   1                   1
## 4870                    1                   1                   1
## 4871                    2                   2                   2
## 4872                    2                   2                   2
## 4873                    2                   2                   2
## 4874                    1                   1                   1
## 4875                    1                   1                   1
## 4876                    1                   1                   1
## 4877                    2                   1                   2
## 4878                    1                   1                   1
## 4879                    2                   1                   1
## 4880                    1                   1                   1
## 4881                    1                   1                   1
## 4882                    1                   1                   1
## 4883                    2                   2                   2
## 4884                    2                   2                   2
## 4885                    1                   1                   1
## 4886                    2                   2                   2
## 4887                    2                   1                   2
## 4888                    1                   1                   1
## 4889                    2                   2                   2
## 4890                    2                   2                   2
## 4892                    1                   1                   1
## 4893                    2                   2                   1
## 4894                    1                   2                   1
## 4895                    2                   1                   1
## 4896                    2                   1                   2
## 4897                    1                   1                   1
## 4898                    2                   1                   1
## 4899                    1                   1                   1
## 4900                    1                   1                   1
## 4901                    1                   1                   1
## 4902                    1                   1                   1
## 4903                    1                   1                   1
## 4904                    1                   1                   1
## 4905                    2                   1                   1
## 4906                    2                   1                   2
## 4907                    1                   1                   1
## 4908                    1                   1                   1
## 4909                    1                   1                   1
## 4910                    2                   1                   1
## 4911                    2                   2                   2
## 4912                    1                   1                   1
## 4913                    1                   1                   1
## 4914                    1                   1                   1
## 4915                    1                   1                   1
## 4916                    1                   1                   1
## 4918                    2                   2                   2
## 4919                    2                   2                   2
## 4920                    2                   2                   2
## 4921                    1                   1                   1
## 4922                    1                   1                   1
## 4923                    1                   1                   1
## 4925                    2                   2                   2
## 4926                    1                   1                   1
## 4927                    2                   1                   2
## 4928                    1                   1                   1
## 4929                    2                   1                   2
## 4930                    2                   2                   2
## 4931                    2                   1                   2
## 4932                    1                   1                   1
## 4933                    1                   1                   1
## 4934                    2                   2                   2
## 4935                    1                   2                   2
## 4936                    2                   2                   2
## 4937                    1                   1                   1
## 4938                    1                   1                   1
## 4939                    1                   1                   1
## 4940                    1                   1                   2
## 4941                    1                   1                   1
## 4944                    1                   1                   1
## 4945                    1                   1                   1
## 4946                    1                   1                   2
## 4947                    1                   1                   1
## 4948                    2                   2                   1
## 4949                    1                   1                   1
## 4950                    1                   1                   1
## 4951                    1                   1                   1
## 4952                    2                   2                   1
## 4953                    1                   1                   1
## 4954                    1                   1                   1
## 4955                    2                   2                   2
## 4956                    2                   1                   1
## 4957                    1                   1                   1
## 4958                    1                   1                   1
## 4959                    2                   1                   2
## 4960                    1                   1                   1
## 4962                    1                   1                   1
## 4963                    2                   2                   2
## 4964                    2                   1                   1
## 4965                    2                   1                   1
## 4966                    2                   2                   2
## 4967                    1                   1                   1
## 4968                    2                   2                   2
## 4969                    1                   1                   1
## 4970                    2                   2                   2
## 4971                    1                   1                   1
## 4972                    1                   1                   1
## 4973                    2                   2                   1
## 4974                    2                   2                   2
## 4975                    1                   1                   1
## 4976                    1                   1                   1
## 4977                    2                   1                   1
## 4978                    1                   1                   1
## 4979                    1                   1                   1
## 4980                    2                   1                   1
## 4981                    1                   1                   1
## 4982                    1                   1                   1
## 4983                    1                   1                   1
## 4984                    1                   1                   1
## 4985                    1                   1                   1
## 4986                    2                   1                   1
## 4987                    2                   2                   2
## 4988                    2                   1                   2
## 4989                    1                   1                   1
## 4990                    2                   2                   2
## 4991                    2                   1                   1
## 4992                    2                   1                   1
## 4993                    2                   2                   2
## 4994                    1                   1                   1
## 4995                    1                   1                   1
## 4996                    1                   1                   1
## 4998                    2                   2                   2
## 4999                    1                   1                   1
## 5000                    2                   1                   2
## 5001                    1                   1                   1
## 5002                    1                   1                   1
## 5003                    2                   2                   2
## 5004                    1                   1                   1
## 5005                    1                   1                   1
## 5006                    1                   1                   1
## 5007                    2                   1                   1
## 5008                    2                   1                   2
## 5009                    2                   2                   2
## 5010                    2                   2                   2
## 5011                    2                   2                   2
## 5012                    1                   1                   1
## 5013                    1                   1                   1
## 5014                    2                   2                   2
## 5015                    2                   2                   2
## 5016                    2                   2                   2
## 5017                    1                   1                   1
## 5019                    1                   2                   1
## 5020                    1                   1                   1
## 5021                    2                   2                   2
## 5022                    1                   1                   1
## 5023                    1                   2                   2
## 5024                    2                   1                   1
## 5025                    1                   1                   1
## 5026                    2                   1                   1
## 5027                    2                   2                   1
## 5028                    2                   1                   1
## 5029                    2                   2                   2
## 5030                    1                   1                   1
## 5032                    2                   2                   2
## 5034                    1                   1                   1
## 5035                    1                   1                   1
## 5036                    1                   1                   1
## 5037                    1                   1                   1
## 5038                    1                   1                   1
## 5039                    1                   1                   1
## 5040                    2                   1                   1
## 5041                    1                   1                   1
## 5043                    1                   1                   1
## 5044                    1                   1                   1
## 5045                    2                   2                   2
## 5046                    1                   1                   1
## 5047                    2                   2                   1
## 5048                    2                   2                   2
## 5049                    1                   1                   1
## 5050                    2                   2                   2
## 5051                    2                   1                   2
## 5052                    2                   2                   2
## 5053                    1                   1                   1
## 5054                    1                   1                   1
## 5055                    1                   2                   2
## 5056                    1                   1                   1
## 5057                    2                   2                   2
## 5058                    2                   2                   2
## 5059                    1                   1                   1
## 5060                    2                   1                   1
## 5061                    2                   2                   1
## 5062                    1                   1                   1
## 5063                    1                   1                   1
## 5064                    1                   1                   1
## 5065                    1                   1                   1
## 5066                    1                   1                   1
## 5067                    2                   1                   1
## 5068                    1                   1                   1
## 5069                    1                   2                   1
## 5070                    1                   1                   1
## 5071                    1                   1                   1
## 5072                    1                   1                   1
## 5073                    2                   1                   2
## 5074                    1                   1                   1
## 5076                    2                   2                   2
## 5077                    2                   2                   2
## 5078                    2                   2                   2
## 5079                    1                   1                   1
## 5080                    1                   1                   1
## 5081                    2                   2                   2
## 5082                    2                   2                   2
## 5083                    1                   1                   1
## 5084                    1                   1                   1
## 5085                    1                   1                   1
## 5086                    2                   2                   2
## 5087                    1                   1                   1
## 5088                    2                   1                   2
## 5089                    2                   2                   2
## 5090                    1                   1                   1
## 5091                    2                   2                   2
## 5092                    2                   1                   2
## 5094                    1                   1                   1
## 5095                    1                   1                   1
## 5097                    2                   1                   1
## 5098                    1                   1                   1
## 5099                    2                   2                   2
## 5100                    1                   1                   1
## 5101                    2                   2                   2
## 5102                    1                   1                   1
## 5103                    1                   1                   1
## 5105                    2                   1                   1
## 5106                    1                   1                   1
## 5108                    1                   2                   1
## 5109                    2                   2                   1
## 5111                    2                   1                   1
## 5112                    1                   1                   1
## 5113                    2                   1                   2
## 5114                    1                   1                   1
## 5115                    1                   1                   1
## 5116                    2                   2                   2
## 5117                    2                   2                   2
## 5118                    1                   1                   1
## 5119                    2                   1                   1
## 5120                    1                   1                   1
## 5121                    1                   1                   1
## 5122                    1                   1                   1
## 5123                    1                   1                   2
## 5124                    1                   1                   1
## 5125                    2                   2                   2
## 5126                    1                   1                   1
## 5127                    2                   1                   1
## 5128                    1                   2                   1
## 5129                    1                   1                   1
## 5130                    1                   1                   1
## 5131                    1                   1                   1
## 5132                    1                   2                   2
## 5133                    2                   1                   2
## 5134                    1                   1                   1
## 5135                    1                   1                   1
## 5136                    2                   2                   2
## 5138                    1                   1                   1
## 5139                    2                   2                   2
## 5140                    2                   1                   1
## 5141                    1                   1                   1
## 5142                    1                   1                   1
## 5143                    2                   2                   2
## 5144                    2                   2                   1
## 5145                    1                   1                   1
## 5146                    2                   2                   2
## 5147                    1                   1                   1
## 5148                    1                   1                   1
## 5149                    1                   1                   1
## 5150                    2                   2                   2
## 5151                    1                   1                   1
## 5152                    1                   1                   1
## 5153                    2                   1                   2
## 5154                    1                   2                   1
## 5155                    2                   1                   2
## 5156                    1                   1                   1
## 5157                    1                   1                   1
## 5158                    1                   1                   1
## 5159                    1                   1                   1
## 5160                    1                   1                   1
## 5161                    1                   1                   1
## 5162                    2                   1                   2
## 5163                    2                   1                   2
## 5164                    1                   1                   1
## 5165                    1                   1                   1
## 5166                    1                   1                   1
## 5167                    2                   2                   2
## 5168                    1                   1                   1
## 5169                    1                   1                   1
## 5170                    2                   2                   2
## 5171                    1                   2                   1
## 5172                    2                   1                   1
## 5173                    2                   2                   2
## 5174                    2                   2                   2
## 5175                    2                   2                   1
## 5176                    1                   1                   1
## 5177                    2                   1                   1
## 5178                    1                   1                   1
## 5179                    2                   1                   2
## 5180                    1                   1                   1
## 5181                    2                   1                   2
## 5183                    2                   2                   2
## 5184                    1                   1                   1
## 5185                    1                   1                   1
## 5186                    1                   1                   1
## 5187                    1                   1                   1
## 5188                    1                   1                   1
## 5190                    1                   1                   1
## 5191                    1                   1                   1
## 5192                    1                   1                   2
## 5193                    2                   1                   2
## 5194                    1                   1                   1
## 5195                    2                   1                   1
## 5196                    1                   1                   1
## 5197                    1                   1                   1
## 5198                    1                   1                   1
## 5199                    1                   1                   1
## 5200                    1                   1                   1
## 5201                    1                   1                   1
## 5202                    1                   1                   2
## 5203                    1                   1                   1
## 5205                    2                   1                   1
## 5206                    2                   2                   2
## 5207                    1                   1                   1
## 5208                    2                   1                   1
## 5209                    1                   1                   1
## 5210                    1                   1                   1
## 5211                    1                   1                   1
## 5212                    2                   1                   1
## 5214                    1                   1                   1
## 5215                    1                   1                   1
## 5216                    1                   1                   1
## 5217                    1                   1                   1
## 5218                    1                   1                   1
## 5219                    2                   1                   1
## 5220                    2                   2                   2
## 5221                    1                   1                   1
## 5222                    1                   1                   1
## 5223                    1                   1                   1
## 5224                    1                   1                   1
## 5225                    2                   1                   2
## 5226                    1                   2                   2
## 5227                    2                   2                   2
## 5228                    1                   2                   1
## 5229                    1                   1                   2
## 5230                    1                   1                   1
## 5232                    1                   1                   1
## 5233                    1                   1                   1
## 5234                    1                   1                   1
## 5235                    2                   2                   2
## 5236                    2                   2                   2
## 5238                    2                   2                   1
## 5239                    1                   1                   1
## 5240                    1                   1                   1
## 5241                    2                   2                   2
## 5242                    1                   1                   1
## 5243                    1                   1                   1
## 5244                    1                   1                   1
## 5245                    2                   1                   1
## 5246                    1                   1                   1
## 5247                    2                   1                   1
## 5249                    1                   2                   1
## 5250                    1                   1                   1
## 5251                    2                   2                   2
## 5252                    1                   1                   1
## 5253                    2                   2                   2
## 5254                    1                   1                   1
## 5255                    1                   1                   1
## 5256                    2                   2                   1
## 5257                    2                   1                   2
## 5258                    1                   1                   1
## 5259                    2                   1                   2
## 5260                    1                   1                   1
## 5261                    2                   1                   1
## 5262                    1                   1                   1
## 5264                    2                   2                   2
## 5265                    1                   1                   1
## 5266                    1                   1                   1
## 5267                    1                   1                   1
## 5268                    1                   1                   1
## 5269                    1                   1                   1
## 5270                    1                   1                   1
## 5271                    2                   2                   2
## 5272                    2                   1                   2
## 5273                    2                   2                   2
## 5274                    1                   1                   1
## 5275                    2                   1                   1
## 5277                    1                   1                   1
## 5278                    2                   1                   1
## 5279                    2                   2                   2
## 5280                    1                   1                   1
## 5281                    1                   1                   1
## 5282                    1                   1                   1
## 5283                    2                   2                   2
## 5284                    1                   1                   1
## 5285                    1                   1                   1
## 5286                    1                   1                   1
## 5287                    1                   1                   1
## 5288                    2                   2                   1
## 5289                    1                   1                   1
## 5290                    1                   1                   1
## 5291                    2                   1                   1
## 5292                    2                   1                   1
## 5293                    2                   2                   2
## 5294                    1                   1                   1
## 5295                    1                   1                   1
## 5296                    2                   2                   1
## 5297                    2                   2                   2
## 5298                    1                   1                   1
## 5300                    2                   2                   1
## 5301                    2                   2                   2
## 5302                    2                   2                   2
## 5303                    1                   1                   1
## 5304                    1                   1                   1
## 5305                    2                   1                   2
## 5306                    1                   1                   1
## 5307                    2                   2                   2
## 5308                    1                   1                   1
## 5309                    1                   1                   1
## 5310                    1                   1                   1
## 5311                    1                   1                   1
## 5312                    1                   1                   1
## 5314                    2                   2                   2
## 5315                    1                   1                   1
## 5316                    2                   1                   2
## 5317                    1                   1                   1
## 5318                    2                   2                   1
## 5319                    1                   1                   1
## 5320                    1                   1                   1
## 5321                    1                   1                   1
## 5322                    2                   2                   2
## 5323                    2                   2                   2
## 5324                    1                   1                   1
## 5325                    2                   2                   2
## 5326                    1                   1                   1
## 5327                    1                   1                   1
## 5328                    1                   1                   1
## 5329                    1                   1                   1
## 5330                    1                   1                   1
## 5331                    2                   2                   2
## 5332                    1                   1                   1
## 5333                    2                   2                   2
## 5334                    2                   2                   2
## 5335                    2                   1                   2
## 5336                    1                   1                   1
## 5337                    2                   2                   2
## 5338                    1                   1                   1
## 5339                    1                   1                   1
## 5340                    2                   2                   2
## 5341                    1                   1                   1
## 5342                    2                   2                   1
## 5343                    2                   2                   2
## 5344                    1                   1                   1
## 5345                    1                   1                   1
## 5346                    2                   2                   2
## 5347                    1                   1                   1
## 5348                    1                   1                   1
## 5349                    1                   1                   1
## 5350                    1                   1                   1
## 5352                    2                   2                   2
## 5353                    1                   2                   1
## 5354                    1                   1                   1
## 5355                    2                   2                   2
## 5357                    1                   1                   1
## 5358                    1                   1                   1
## 5359                    1                   1                   1
## 5360                    2                   2                   1
## 5361                    2                   1                   2
## 5362                    2                   2                   1
## 5363                    2                   2                   2
## 5364                    1                   1                   1
## 5365                    1                   1                   1
## 5366                    2                   2                   2
## 5367                    1                   1                   1
## 5368                    2                   2                   1
## 5369                    2                   1                   2
## 5370                    2                   1                   2
## 5371                    2                   2                   2
## 5372                    1                   1                   1
## 5373                    1                   1                   1
## 5374                    1                   2                   2
## 5376                    1                   1                   1
## 5377                    1                   1                   1
## 5378                    1                   1                   1
## 5379                    2                   2                   2
## 5380                    1                   1                   1
## 5381                    2                   2                   2
## 5382                    2                   1                   1
## 5383                    1                   1                   1
## 5384                    1                   1                   1
## 5385                    2                   2                   1
## 5386                    2                   2                   2
## 5387                    1                   1                   1
## 5388                    1                   1                   1
## 5389                    1                   1                   1
## 5390                    2                   2                   2
## 5391                    1                   1                   1
## 5392                    1                   1                   1
## 5393                    2                   2                   2
## 5394                    1                   1                   1
## 5395                    1                   1                   1
## 5396                    1                   1                   1
## 5398                    1                   1                   1
## 5399                    2                   2                   2
## 5400                    2                   2                   2
## 5401                    2                   2                   2
## 5402                    2                   2                   2
## 5403                    1                   1                   1
## 5404                    2                   1                   2
## 5405                    1                   1                   1
## 5406                    2                   2                   2
## 5407                    1                   1                   1
## 5408                    1                   1                   1
## 5409                    1                   1                   2
## 5410                    2                   2                   2
## 5411                    1                   1                   1
## 5412                    1                   1                   1
## 5413                    1                   1                   1
## 5414                    1                   1                   1
## 5415                    1                   1                   1
## 5416                    1                   1                   1
## 5417                    1                   1                   1
## 5419                    2                   2                   2
## 5420                    1                   1                   1
## 5421                    2                   2                   2
## 5422                    1                   1                   1
## 5423                    1                   1                   1
## 5424                    1                   1                   1
## 5425                    2                   2                   2
## 5426                    1                   1                   1
## 5427                    1                   1                   1
## 5428                    1                   1                   1
## 5429                    1                   1                   1
## 5430                    1                   1                   1
## 5431                    2                   2                   2
## 5432                    2                   2                   2
## 5434                    2                   2                   2
## 5435                    1                   1                   1
## 5436                    2                   2                   2
## 5437                    1                   2                   2
## 5438                    1                   1                   1
## 5439                    1                   1                   1
## 5440                    1                   1                   1
## 5441                    1                   1                   1
## 5442                    1                   1                   1
## 5443                    1                   1                   1
## 5444                    2                   2                   2
## 5445                    2                   2                   2
## 5446                    1                   1                   1
## 5447                    2                   2                   2
## 5448                    1                   1                   1
## 5449                    2                   1                   1
## 5451                    1                   1                   1
## 5452                    2                   2                   2
## 5453                    1                   1                   1
## 5455                    2                   2                   2
## 5456                    2                   2                   2
## 5457                    2                   2                   2
## 5458                    1                   1                   1
## 5459                    1                   1                   1
## 5460                    2                   2                   2
## 5461                    1                   1                   2
## 5462                    2                   2                   2
## 5464                    1                   1                   1
## 5465                    2                   2                   2
## 5466                    2                   2                   2
## 5467                    2                   1                   1
## 5468                    1                   1                   1
## 5469                    1                   1                   1
## 5470                    1                   1                   1
## 5471                    1                   1                   1
## 5472                    1                   1                   1
## 5473                    1                   1                   1
## 5474                    1                   1                   1
## 5475                    1                   1                   1
## 5476                    1                   1                   1
## 5477                    2                   2                   2
## 5478                    1                   1                   1
## 5479                    2                   2                   2
## 5480                    2                   2                   2
## 5481                    1                   1                   1
## 5482                    1                   1                   1
## 5483                    2                   1                   1
## 5484                    2                   2                   2
## 5485                    1                   1                   1
## 5486                    1                   1                   1
## 5487                    2                   1                   1
## 5488                    1                   1                   1
## 5489                    2                   1                   1
## 5490                    2                   1                   1
## 5491                    2                   2                   2
## 5492                    1                   1                   1
## 5493                    2                   2                   1
## 5494                    2                   2                   2
## 5495                    1                   1                   1
## 5496                    1                   1                   1
## 5497                    2                   2                   2
## 5498                    2                   2                   2
## 5499                    2                   2                   1
## 5500                    1                   2                   1
## 5501                    2                   2                   2
## 5502                    1                   1                   1
## 5503                    1                   1                   1
## 5504                    2                   1                   2
## 5505                    1                   1                   1
## 5506                    1                   1                   1
## 5507                    1                   1                   1
## 5508                    1                   1                   1
## 5509                    1                   1                   1
## 5510                    1                   1                   1
## 5511                    1                   1                   1
## 5512                    1                   1                   1
## 5513                    1                   1                   1
## 5514                    2                   2                   2
## 5515                    1                   1                   1
## 5516                    2                   2                   2
## 5517                    2                   1                   2
## 5518                    2                   1                   1
## 5519                    1                   1                   1
## 5520                    2                   2                   2
## 5521                    1                   1                   1
## 5522                    1                   1                   1
## 5523                    1                   1                   1
## 5524                    2                   2                   2
## 5525                    2                   1                   1
## 5526                    2                   2                   2
## 5527                    1                   1                   1
## 5528                    1                   1                   1
## 5529                    2                   2                   2
## 5530                    1                   1                   1
## 5531                    2                   1                   1
## 5532                    2                   2                   2
## 5533                    2                   2                   2
## 5534                    1                   1                   1
## 5535                    1                   1                   1
## 5536                    2                   1                   1
## 5538                    1                   1                   1
## 5539                    2                   2                   2
## 5540                    1                   1                   1
## 5541                    1                   1                   1
## 5542                    2                   2                   2
## 5543                    1                   1                   1
## 5544                    1                   1                   1
## 5545                    1                   2                   2
## 5546                    2                   2                   2
## 5547                    1                   1                   1
## 5548                    1                   1                   1
## 5549                    1                   1                   1
## 5550                    2                   1                   1
## 5551                    2                   2                   2
## 5552                    2                   1                   2
## 5553                    1                   1                   1
## 5555                    2                   2                   2
## 5557                    1                   1                   1
## 5558                    1                   1                   1
## 5559                    2                   1                   2
## 5560                    2                   2                   2
## 5561                    1                   1                   1
## 5562                    1                   1                   1
## 5563                    1                   1                   1
## 5564                    1                   1                   1
## 5565                    2                   2                   2
## 5566                    2                   1                   2
## 5567                    1                   2                   2
## 5568                    2                   2                   2
## 5569                    2                   1                   1
## 5570                    1                   1                   1
## 5571                    1                   1                   1
## 5572                    1                   1                   1
## 5573                    2                   1                   1
## 5574                    1                   1                   1
## 5575                    1                   1                   1
## 5577                    1                   1                   1
## 5578                    2                   2                   2
## 5579                    1                   1                   1
## 5580                    2                   2                   2
## 5581                    2                   2                   2
## 5582                    2                   2                   2
## 5583                    2                   2                   2
## 5584                    2                   2                   2
## 5585                    2                   1                   2
## 5586                    2                   2                   2
## 5587                    2                   2                   2
## 5589                    2                   2                   2
## 5590                    1                   1                   1
## 5591                    2                   2                   2
## 5593                    1                   1                   1
## 5594                    2                   2                   2
## 5595                    1                   1                   1
## 5596                    1                   1                   1
## 5597                    2                   2                   2
## 5598                    1                   1                   1
## 5599                    1                   1                   1
## 5600                    1                   1                   1
## 5601                    2                   2                   2
## 5602                    1                   1                   1
## 5603                    1                   1                   1
## 5604                    1                   1                   1
## 5605                    1                   1                   1
## 5607                    2                   2                   1
## 5608                    2                   1                   1
## 5609                    1                   1                   1
## 5610                    1                   1                   1
## 5611                    1                   1                   1
## 5612                    2                   2                   2
## 5613                    1                   1                   1
## 5614                    1                   1                   1
## 5615                    2                   2                   2
## 5616                    1                   1                   1
## 5617                    2                   1                   2
## 5618                    2                   2                   2
## 5619                    1                   1                   1
## 5620                    2                   2                   2
## 5621                    2                   2                   2
## 5622                    1                   1                   1
## 5623                    2                   2                   2
## 5624                    1                   1                   2
## 5625                    2                   2                   2
## 5626                    1                   1                   1
## 5627                    1                   1                   1
## 5628                    1                   1                   1
## 5629                    1                   1                   1
## 5630                    1                   1                   1
## 5631                    1                   1                   1
## 5632                    2                   1                   2
## 5633                    2                   2                   2
## 5634                    2                   1                   1
## 5635                    1                   1                   1
## 5636                    1                   1                   1
## 5637                    2                   2                   2
## 5638                    1                   1                   1
## 5640                    2                   2                   2
## 5641                    2                   2                   2
## 5642                    1                   1                   1
## 5643                    1                   1                   1
## 5644                    1                   1                   1
## 5645                    1                   1                   1
## 5646                    1                   1                   1
## 5647                    2                   2                   2
## 5649                    2                   2                   2
## 5650                    1                   1                   2
## 5651                    1                   2                   2
## 5652                    1                   1                   1
## 5653                    1                   1                   2
## 5654                    1                   1                   1
## 5655                    1                   1                   1
## 5656                    1                   1                   1
## 5657                    1                   1                   1
## 5658                    2                   1                   1
## 5659                    1                   1                   1
## 5660                    2                   2                   2
## 5661                    1                   1                   1
## 5662                    1                   1                   1
## 5663                    2                   1                   1
## 5664                    2                   2                   2
## 5665                    1                   1                   1
## 5666                    1                   1                   1
## 5667                    1                   1                   1
## 5668                    2                   1                   2
## 5669                    1                   1                   1
## 5670                    2                   2                   2
## 5671                    1                   1                   1
## 5672                    2                   2                   2
## 5673                    1                   1                   1
## 5674                    2                   2                   2
## 5675                    1                   1                   1
## 5676                    2                   2                   2
## 5677                    2                   2                   2
## 5678                    1                   2                   2
## 5679                    2                   2                   2
## 5680                    1                   1                   1
## 5681                    2                   2                   2
## 5682                    2                   1                   1
## 5683                    2                   2                   2
## 5684                    2                   1                   1
## 5685                    2                   1                   2
## 5686                    1                   1                   1
## 5687                    2                   1                   1
## 5688                    2                   1                   1
## 5689                    1                   1                   1
## 5690                    2                   2                   2
## 5691                    1                   1                   1
## 5692                    1                   1                   1
## 5693                    2                   2                   2
## 5694                    1                   1                   1
## 5695                    2                   2                   2
## 5696                    1                   1                   1
## 5697                    2                   2                   2
## 5698                    2                   2                   2
## 5699                    1                   1                   1
## 5700                    2                   2                   2
## 5701                    2                   1                   2
## 5702                    2                   2                   2
## 5703                    2                   2                   2
## 5705                    1                   1                   1
## 5706                    1                   1                   1
## 5707                    1                   1                   1
## 5708                    2                   1                   2
## 5709                    1                   1                   1
## 5710                    2                   2                   2
## 5711                    1                   1                   1
## 5712                    2                   2                   2
## 5713                    2                   2                   2
## 5714                    2                   2                   2
## 5715                    1                   1                   1
## 5716                    1                   1                   1
## 5717                    2                   2                   2
## 5718                    2                   1                   2
## 5719                    2                   2                   2
## 5720                    1                   1                   1
## 5721                    1                   2                   2
## 5722                    1                   1                   1
## 5723                    1                   1                   1
## 5724                    2                   1                   2
## 5725                    2                   2                   2
## 5726                    2                   1                   1
## 5727                    2                   2                   2
## 5728                    1                   1                   1
## 5729                    1                   1                   1
## 5730                    1                   1                   1
## 5731                    2                   2                   2
## 5732                    1                   2                   2
## 5733                    1                   1                   1
## 5734                    2                   1                   1
## 5735                    2                   1                   2
## 5736                    2                   2                   2
## 5737                    1                   1                   1
## 5738                    2                   1                   1
## 5739                    2                   2                   2
## 5740                    2                   1                   2
## 5742                    1                   1                   1
## 5743                    2                   2                   2
## 5744                    1                   1                   1
## 5746                    2                   2                   2
## 5747                    2                   2                   2
## 5748                    1                   1                   1
## 5749                    2                   2                   2
## 5750                    2                   2                   2
## 5751                    2                   2                   2
## 5753                    2                   2                   2
## 5754                    2                   2                   2
## 5756                    2                   1                   1
## 5757                    1                   1                   1
## 5758                    2                   2                   1
## 5759                    1                   1                   1
## 5760                    2                   1                   1
## 5761                    1                   1                   1
## 5762                    1                   1                   1
## 5763                    2                   1                   1
## 5764                    2                   2                   2
## 5766                    2                   1                   2
## 5767                    1                   1                   1
## 5768                    2                   2                   2
## 5769                    2                   2                   2
## 5770                    2                   2                   2
## 5771                    2                   2                   2
## 5772                    1                   1                   1
## 5773                    2                   2                   2
## 5776                    2                   2                   2
## 5777                    2                   1                   1
## 5778                    1                   1                   1
## 5779                    2                   1                   2
## 5780                    1                   1                   2
## 5781                    1                   1                   1
## 5782                    1                   1                   1
## 5783                    1                   1                   1
## 5784                    1                   1                   1
## 5785                    1                   1                   1
## 5786                    1                   1                   1
## 5787                    1                   1                   1
## 5788                    1                   1                   1
## 5789                    1                   1                   1
## 5790                    1                   1                   1
## 5791                    2                   2                   2
## 5792                    2                   2                   2
## 5793                    2                   1                   2
## 5794                    1                   1                   1
## 5795                    2                   2                   2
## 5796                    1                   1                   1
## 5797                    2                   1                   1
## 5798                    2                   1                   2
## 5799                    2                   2                   2
## 5800                    1                   1                   1
## 5801                    1                   1                   1
## 5802                    1                   1                   1
## 5803                    2                   2                   2
## 5804                    1                   1                   1
## 5805                    2                   2                   2
## 5806                    2                   1                   2
## 5807                    1                   1                   1
## 5808                    1                   2                   2
## 5809                    1                   1                   1
## 5810                    2                   1                   1
## 5811                    2                   2                   2
## 5812                    2                   2                   2
## 5813                    1                   1                   1
## 5814                    1                   1                   1
## 5815                    2                   2                   1
## 5816                    1                   1                   1
## 5817                    1                   1                   1
## 5818                    1                   1                   1
## 5819                    1                   1                   1
## 5820                    2                   1                   2
## 5821                    1                   1                   1
## 5822                    2                   2                   2
## 5823                    1                   1                   1
## 5824                    1                   1                   1
## 5826                    2                   1                   2
## 5827                    1                   1                   1
## 5828                    2                   2                   2
## 5829                    1                   1                   1
## 5830                    2                   2                   2
## 5831                    1                   1                   1
## 5832                    2                   2                   2
## 5833                    1                   1                   1
## 5835                    1                   1                   1
## 5836                    2                   2                   2
## 5837                    1                   1                   1
## 5838                    1                   1                   1
## 5839                    2                   2                   2
## 5840                    1                   1                   1
## 5841                    1                   1                   1
## 5842                    2                   2                   2
## 5843                    1                   1                   1
## 5844                    1                   1                   1
## 5845                    2                   2                   2
## 5846                    1                   1                   1
## 5847                    2                   1                   2
## 5848                    1                   1                   1
## 5849                    1                   1                   1
## 5850                    1                   1                   1
## 5851                    1                   1                   1
## 5852                    1                   1                   1
## 5853                    1                   1                   1
## 5854                    1                   1                   1
## 5855                    1                   1                   1
## 5856                    1                   2                   2
## 5857                    2                   2                   2
## 5858                    2                   2                   2
## 5859                    1                   1                   1
## 5860                    1                   1                   1
## 5861                    1                   1                   1
## 5862                    1                   1                   1
## 5863                    2                   1                   1
## 5864                    2                   1                   2
## 5865                    1                   2                   2
## 5866                    2                   2                   2
## 5867                    1                   1                   1
## 5868                    1                   1                   1
## 5869                    1                   1                   1
## 5870                    2                   1                   2
## 5871                    2                   2                   2
## 5872                    2                   2                   2
## 5873                    2                   1                   1
## 5874                    2                   2                   2
## 5875                    1                   1                   1
## 5876                    2                   2                   2
## 5877                    1                   1                   1
## 5878                    1                   1                   1
## 5879                    2                   1                   2
## 5880                    1                   1                   1
## 5881                    1                   1                   1
## 5883                    1                   1                   1
## 5884                    1                   2                   2
## 5885                    2                   1                   1
## 5886                    1                   1                   1
## 5887                    1                   1                   1
## 5889                    2                   1                   1
## 5890                    1                   1                   1
## 5891                    1                   1                   1
## 5892                    1                   1                   1
## 5894                    2                   2                   1
## 5895                    2                   2                   2
## 5896                    1                   1                   1
## 5897                    1                   1                   1
## 5898                    1                   1                   1
## 5899                    2                   2                   2
## 5900                    2                   2                   2
## 5901                    1                   2                   2
## 5902                    2                   2                   2
## 5903                    2                   2                   2
## 5904                    1                   1                   1
## 5905                    1                   1                   1
## 5906                    1                   1                   1
## 5907                    1                   1                   1
## 5908                    1                   1                   1
## 5909                    1                   1                   1
## 5910                    1                   1                   1
## 5911                    1                   1                   1
## 5913                    1                   1                   1
## 5914                    2                   1                   2
## 5915                    1                   1                   1
## 5916                    1                   1                   1
## 5917                    1                   1                   1
## 5918                    1                   1                   1
## 5919                    1                   1                   1
## 5920                    1                   1                   1
## 5921                    2                   2                   2
## 5923                    2                   2                   2
## 5924                    1                   1                   1
## 5925                    1                   2                   1
## 5926                    2                   2                   2
## 5928                    2                   2                   2
## 5929                    1                   1                   1
## 5930                    2                   2                   2
## 5931                    1                   1                   1
## 5932                    2                   1                   2
## 5933                    2                   1                   1
## 5934                    1                   1                   1
## 5935                    1                   1                   1
## 5936                    2                   1                   2
## 5937                    1                   1                   1
## 5939                    1                   1                   1
## 5940                    1                   1                   1
## 5941                    1                   1                   1
## 5942                    1                   1                   1
## 5943                    1                   1                   1
## 5944                    2                   2                   1
## 5945                    2                   1                   1
## 5946                    1                   2                   2
## 5947                    2                   2                   2
## 5948                    2                   1                   1
## 5949                    2                   2                   2
## 5950                    2                   2                   2
## 5951                    1                   1                   1
## 5953                    1                   1                   1
## 5954                    2                   2                   2
## 5955                    1                   1                   1
## 5956                    1                   2                   1
## 5957                    2                   2                   2
## 5958                    2                   2                   2
## 5959                    2                   1                   1
## 5960                    1                   1                   1
## 5961                    1                   1                   1
## 5962                    2                   2                   2
## 5963                    1                   1                   1
## 5964                    2                   2                   2
## 5966                    1                   1                   1
## 5967                    1                   1                   1
## 5968                    1                   1                   1
## 5969                    1                   1                   1
## 5970                    2                   1                   1
## 5972                    1                   2                   2
## 5973                    2                   1                   1
## 5974                    1                   1                   1
## 5975                    2                   1                   1
## 5976                    2                   2                   2
## 5977                    1                   1                   1
## 5978                    2                   1                   1
## 5979                    1                   1                   1
## 5980                    2                   2                   2
## 5982                    1                   1                   1
## 5983                    2                   2                   2
## 5984                    1                   2                   1
## 5985                    2                   2                   2
## 5986                    1                   1                   1
## 5987                    1                   1                   1
## 5988                    1                   1                   1
## 5989                    1                   1                   1
## 5990                    2                   2                   2
## 5991                    2                   2                   1
## 5992                    2                   1                   1
## 5993                    2                   2                   2
## 5994                    1                   1                   1
## 5996                    2                   2                   2
## 5997                    2                   2                   1
## 5998                    2                   2                   1
## 5999                    2                   2                   2
## 6000                    1                   1                   1
## 6001                    1                   1                   1
## 6002                    1                   1                   1
## 6003                    2                   1                   1
## 6004                    1                   1                   1
## 6005                    2                   1                   1
## 6006                    1                   1                   1
## 6007                    1                   1                   1
## 6008                    2                   1                   1
## 6009                    2                   1                   1
## 6010                    1                   1                   1
## 6011                    2                   2                   2
## 6012                    1                   1                   1
## 6013                    1                   2                   1
## 6014                    1                   1                   1
## 6015                    1                   1                   1
## 6016                    1                   1                   1
## 6017                    1                   1                   1
## 6018                    1                   1                   1
## 6019                    1                   1                   1
## 6020                    2                   2                   2
## 6021                    1                   1                   1
## 6022                    2                   1                   1
## 6023                    2                   2                   2
## 6024                    2                   2                   2
## 6025                    1                   1                   1
## 6026                    2                   2                   1
## 6027                    1                   1                   1
## 6028                    2                   1                   2
## 6029                    2                   2                   2
## 6030                    1                   1                   1
## 6031                    1                   1                   1
## 6032                    1                   1                   1
## 6033                    2                   2                   2
## 6034                    1                   2                   1
## 6035                    1                   1                   1
## 6036                    2                   2                   2
## 6037                    2                   2                   2
## 6038                    2                   2                   2
## 6039                    2                   1                   2
## 6040                    2                   2                   2
## 6041                    2                   1                   2
## 6042                    1                   1                   1
## 6043                    1                   1                   1
## 6044                    1                   1                   1
## 6045                    1                   1                   1
## 6046                    2                   1                   1
## 6047                    2                   1                   2
## 6048                    1                   1                   1
## 6049                    2                   2                   2
## 6050                    1                   1                   1
## 6051                    2                   1                   2
## 6052                    2                   2                   2
## 6053                    1                   1                   1
## 6054                    2                   2                   2
## 6055                    2                   1                   2
## 6056                    2                   1                   1
## 6057                    2                   2                   2
## 6059                    2                   2                   2
## 6060                    1                   1                   1
## 6061                    1                   1                   1
## 6062                    2                   2                   2
## 6063                    2                   2                   1
## 6064                    1                   1                   1
## 6065                    2                   2                   2
## 6066                    1                   1                   1
## 6067                    1                   1                   1
## 6068                    2                   2                   2
## 6069                    2                   2                   2
## 6070                    2                   2                   2
## 6071                    1                   1                   1
## 6072                    2                   2                   1
## 6073                    1                   1                   1
## 6074                    1                   1                   1
## 6075                    2                   2                   2
## 6076                    1                   1                   1
## 6077                    1                   1                   1
## 6078                    2                   2                   2
## 6079                    2                   1                   1
## 6080                    2                   1                   1
## 6081                    2                   1                   1
## 6082                    1                   1                   1
## 6083                    2                   2                   2
## 6084                    1                   1                   1
## 6085                    1                   1                   1
## 6086                    1                   1                   1
## 6087                    1                   1                   1
## 6088                    1                   1                   1
## 6089                    2                   2                   2
## 6090                    1                   1                   1
## 6091                    1                   1                   1
## 6092                    2                   2                   2
## 6093                    1                   1                   1
## 6094                    1                   1                   1
## 6095                    2                   2                   2
## 6096                    1                   1                   1
## 6097                    1                   1                   1
## 6098                    1                   1                   1
## 6099                    2                   2                   2
## 6100                    1                   1                   1
## 6101                    1                   1                   1
## 6102                    2                   2                   2
## 6103                    2                   1                   1
## 6104                    1                   1                   1
## 6105                    1                   1                   1
## 6106                    1                   1                   1
## 6107                    2                   2                   2
## 6108                    1                   1                   1
## 6109                    1                   1                   1
## 6110                    2                   1                   2
## 6111                    2                   2                   2
## 6112                    2                   2                   2
## 6113                    2                   2                   2
## 6114                    1                   1                   2
## 6115                    1                   2                   2
## 6116                    2                   2                   2
## 6117                    1                   2                   1
## 6118                    1                   1                   1
## 6119                    1                   1                   1
## 6120                    1                   1                   1
## 6121                    2                   2                   1
## 6122                    1                   1                   1
## 6123                    2                   1                   1
## 6124                    2                   2                   1
## 6125                    1                   1                   1
## 6126                    1                   1                   1
## 6127                    1                   1                   1
## 6128                    1                   1                   1
## 6129                    2                   2                   2
## 6130                    1                   1                   1
## 6132                    2                   2                   2
## 6133                    1                   1                   1
## 6134                    1                   1                   1
## 6135                    1                   1                   1
## 6136                    1                   1                   1
## 6137                    2                   1                   2
## 6138                    1                   1                   1
## 6139                    1                   1                   1
## 6140                    1                   1                   1
## 6141                    1                   1                   1
## 6142                    2                   2                   2
## 6143                    1                   1                   1
## 6144                    2                   2                   2
## 6145                    1                   1                   1
## 6146                    1                   1                   1
## 6147                    2                   1                   2
## 6148                    2                   1                   1
## 6149                    2                   2                   2
## 6150                    1                   1                   1
## 6151                    1                   1                   1
## 6153                    1                   1                   1
## 6154                    1                   1                   1
## 6155                    1                   1                   1
## 6156                    1                   1                   1
## 6157                    1                   1                   1
## 6158                    1                   2                   2
## 6159                    2                   2                   2
## 6160                    2                   1                   1
## 6161                    1                   1                   1
## 6162                    1                   1                   1
## 6163                    1                   1                   1
## 6165                    2                   2                   2
## 6166                    2                   2                   2
## 6167                    2                   1                   1
## 6168                    1                   1                   1
## 6169                    1                   1                   1
## 6170                    1                   1                   1
## 6171                    1                   1                   1
## 6172                    2                   2                   1
## 6173                    1                   1                   1
## 6174                    1                   1                   1
## 6175                    1                   1                   1
## 6176                    2                   2                   2
## 6177                    1                   1                   1
## 6178                    2                   2                   2
## 6179                    2                   1                   1
## 6180                    1                   1                   1
## 6181                    1                   1                   1
## 6182                    2                   1                   1
## 6183                    1                   1                   1
## 6184                    2                   2                   2
## 6185                    1                   1                   1
## 6186                    2                   1                   1
## 6187                    1                   1                   1
## 6188                    1                   1                   1
## 6189                    1                   1                   1
## 6190                    1                   1                   1
## 6191                    2                   1                   1
## 6192                    1                   1                   1
## 6193                    2                   2                   2
## 6194                    2                   1                   1
## 6195                    2                   2                   2
## 6197                    1                   2                   2
## 6198                    1                   1                   1
## 6199                    1                   1                   1
## 6200                    1                   1                   1
## 6201                    1                   1                   2
## 6202                    1                   2                   2
## 6203                    2                   2                   2
## 6204                    1                   1                   1
## 6205                    2                   2                   2
## 6206                    1                   1                   1
## 6207                    1                   1                   1
## 6208                    2                   2                   2
## 6209                    2                   2                   2
## 6210                    2                   1                   2
## 6211                    2                   2                   2
## 6212                    2                   2                   2
## 6213                    1                   1                   2
## 6214                    1                   1                   1
## 6215                    1                   1                   1
## 6216                    2                   2                   2
## 6217                    1                   2                   1
## 6218                    1                   1                   1
## 6219                    1                   1                   1
## 6220                    2                   2                   2
## 6221                    2                   2                   2
## 6222                    2                   1                   1
## 6223                    2                   2                   1
## 6224                    1                   1                   1
## 6225                    2                   2                   2
## 6226                    2                   1                   2
## 6227                    1                   1                   1
## 6228                    2                   2                   2
## 6229                    2                   2                   2
## 6230                    2                   2                   2
## 6231                    1                   1                   1
## 6232                    2                   2                   2
## 6233                    2                   2                   2
## 6234                    2                   1                   1
## 6235                    2                   2                   2
## 6236                    1                   1                   1
## 6237                    2                   2                   2
## 6238                    1                   1                   1
## 6239                    1                   1                   1
## 6240                    2                   2                   2
## 6241                    2                   2                   1
## 6242                    1                   1                   1
## 6244                    1                   1                   1
## 6245                    1                   1                   2
## 6246                    2                   2                   2
## 6247                    2                   1                   2
## 6248                    2                   2                   2
## 6249                    2                   2                   2
## 6250                    1                   1                   1
## 6251                    1                   1                   1
## 6252                    2                   2                   2
## 6253                    1                   1                   1
## 6254                    2                   2                   2
## 6255                    2                   2                   2
## 6256                    2                   2                   2
## 6257                    1                   1                   1
## 6258                    1                   1                   1
## 6259                    1                   1                   1
## 6260                    2                   1                   2
## 6261                    2                   1                   1
## 6262                    1                   1                   1
## 6263                    1                   1                   1
## 6264                    1                   1                   1
## 6265                    1                   1                   1
## 6266                    2                   2                   2
## 6267                    1                   2                   2
## 6268                    1                   1                   1
## 6269                    1                   1                   1
## 6270                    1                   1                   1
## 6271                    1                   1                   1
## 6272                    1                   1                   1
## 6273                    1                   1                   1
## 6274                    2                   2                   2
## 6275                    1                   1                   1
## 6277                    1                   1                   1
## 6278                    1                   1                   1
## 6279                    1                   1                   1
## 6280                    1                   1                   1
## 6281                    1                   1                   1
## 6282                    1                   1                   1
## 6284                    1                   1                   1
## 6286                    1                   1                   1
## 6287                    2                   2                   1
## 6288                    2                   2                   2
## 6289                    2                   2                   2
## 6290                    2                   1                   1
## 6291                    1                   1                   1
## 6292                    1                   1                   1
## 6293                    1                   1                   1
## 6294                    2                   2                   2
## 6295                    1                   1                   1
## 6296                    1                   1                   1
## 6297                    1                   1                   1
## 6298                    2                   2                   2
## 6299                    1                   1                   1
## 6300                    1                   1                   1
## 6301                    2                   1                   1
## 6302                    1                   1                   1
## 6303                    1                   1                   1
## 6305                    1                   1                   1
## 6306                    1                   1                   1
## 6307                    1                   1                   1
## 6308                    2                   2                   2
## 6309                    1                   1                   2
## 6310                    1                   2                   2
## 6311                    1                   1                   1
## 6312                    2                   2                   2
## 6314                    2                   2                   2
## 6315                    1                   1                   1
## 6316                    2                   2                   1
## 6317                    2                   2                   2
## 6318                    1                   1                   1
## 6319                    2                   2                   2
## 6320                    2                   2                   2
## 6321                    1                   1                   1
## 6322                    1                   1                   1
## 6323                    2                   1                   2
## 6324                    1                   1                   1
## 6325                    1                   1                   1
## 6326                    1                   1                   1
## 6328                    1                   1                   1
## 6329                    2                   2                   2
## 6330                    2                   2                   1
## 6331                    2                   1                   1
## 6332                    1                   2                   2
## 6333                    1                   1                   1
## 6334                    1                   1                   1
## 6335                    1                   1                   1
## 6336                    2                   2                   2
## 6337                    1                   1                   1
## 6338                    1                   1                   1
## 6339                    1                   1                   1
## 6340                    1                   1                   1
## 6341                    1                   1                   1
## 6342                    1                   1                   1
## 6343                    1                   1                   1
## 6344                    1                   1                   1
## 6345                    1                   1                   1
## 6346                    2                   2                   2
## 6347                    2                   2                   1
## 6348                    2                   1                   1
## 6350                    2                   2                   2
## 6351                    1                   1                   1
## 6354                    1                   1                   1
## 6355                    2                   2                   2
## 6356                    1                   1                   1
## 6357                    1                   1                   1
## 6358                    2                   2                   2
## 6359                    1                   1                   1
## 6360                    2                   2                   2
## 6361                    1                   1                   1
## 6362                    2                   2                   2
## 6363                    1                   1                   1
## 6364                    1                   1                   1
## 6365                    1                   1                   1
## 6366                    1                   1                   1
## 6367                    1                   1                   1
## 6368                    1                   1                   1
## 6369                    1                   1                   1
## 6370                    1                   1                   1
## 6371                    1                   1                   1
## 6372                    2                   1                   2
## 6374                    1                   1                   1
## 6375                    2                   1                   1
## 6376                    2                   2                   2
## 6377                    2                   1                   1
## 6378                    2                   2                   2
## 6379                    2                   2                   2
## 6380                    1                   1                   1
## 6381                    1                   1                   1
## 6382                    1                   1                   1
## 6383                    1                   1                   1
## 6384                    2                   1                   1
## 6386                    1                   1                   1
## 6387                    2                   2                   1
## 6388                    2                   1                   1
## 6389                    1                   1                   1
## 6390                    1                   1                   1
## 6391                    1                   1                   1
## 6392                    2                   1                   1
## 6394                    1                   1                   1
## 6395                    1                   1                   1
## 6396                    1                   1                   1
## 6397                    1                   1                   1
## 6398                    1                   1                   1
## 6399                    2                   2                   2
## 6400                    2                   2                   2
## 6402                    1                   1                   1
## 6403                    1                   1                   1
## 6404                    1                   1                   1
## 6405                    1                   1                   1
## 6406                    1                   1                   1
## 6407                    2                   2                   2
## 6408                    2                   1                   1
## 6409                    2                   2                   1
## 6410                    1                   1                   1
## 6411                    1                   1                   1
## 6412                    2                   2                   2
## 6413                    2                   1                   1
## 6414                    1                   1                   1
## 6415                    2                   2                   2
## 6416                    2                   2                   2
## 6417                    2                   2                   2
## 6418                    2                   2                   1
## 6419                    1                   1                   1
## 6420                    1                   1                   1
## 6422                    2                   2                   2
## 6423                    1                   1                   1
## 6424                    2                   1                   1
## 6425                    2                   2                   2
## 6426                    1                   1                   1
## 6427                    1                   1                   1
## 6429                    2                   2                   1
## 6430                    1                   1                   1
## 6431                    2                   1                   1
## 6432                    1                   1                   1
## 6433                    1                   1                   1
## 6434                    1                   1                   1
## 6435                    1                   1                   1
## 6436                    1                   1                   1
## 6437                    2                   2                   2
## 6438                    2                   2                   2
## 6439                    2                   2                   2
## 6440                    1                   1                   1
## 6441                    1                   1                   1
## 6443                    1                   1                   1
## 6444                    1                   1                   1
## 6445                    2                   2                   2
## 6446                    2                   2                   2
## 6447                    2                   2                   2
## 6448                    2                   2                   1
## 6449                    1                   1                   1
## 6450                    2                   2                   2
## 6451                    2                   1                   1
## 6452                    2                   2                   2
## 6453                    2                   2                   2
## 6454                    1                   1                   1
## 6455                    2                   2                   2
## 6456                    1                   1                   1
## 6457                    2                   1                   1
## 6458                    1                   1                   1
## 6459                    1                   1                   1
## 6462                    1                   1                   1
## 6463                    1                   1                   1
## 6464                    1                   1                   1
## 6465                    1                   1                   1
## 6466                    2                   1                   1
## 6467                    1                   1                   1
## 6468                    2                   2                   2
## 6469                    2                   2                   1
## 6470                    2                   2                   2
## 6471                    1                   1                   1
## 6472                    2                   1                   2
## 6473                    1                   1                   1
## 6474                    1                   1                   1
## 6475                    2                   2                   1
## 6476                    1                   1                   1
## 6477                    2                   2                   1
## 6478                    1                   1                   1
## 6479                    2                   2                   1
## 6480                    2                   2                   1
## 6481                    2                   2                   2
## 6482                    1                   1                   1
## 6483                    1                   1                   1
## 6484                    1                   1                   1
## 6485                    1                   1                   1
## 6486                    1                   1                   1
## 6487                    2                   2                   1
## 6488                    1                   2                   1
## 6489                    2                   2                   2
## 6491                    1                   1                   1
## 6492                    1                   1                   1
## 6494                    1                   1                   1
## 6495                    1                   1                   1
## 6496                    2                   2                   2
## 6497                    1                   1                   1
## 6498                    2                   2                   2
## 6499                    2                   2                   2
## 6500                    2                   2                   2
## 6501                    1                   1                   1
## 6502                    2                   2                   2
## 6503                    1                   1                   1
## 6504                    2                   2                   2
## 6505                    2                   2                   2
## 6506                    1                   2                   1
## 6507                    1                   1                   2
## 6508                    1                   1                   1
## 6509                    1                   1                   1
## 6510                    1                   1                   1
## 6511                    2                   2                   1
## 6512                    2                   2                   2
## 6513                    1                   1                   1
## 6514                    2                   2                   2
## 6515                    2                   2                   1
## 6516                    1                   1                   1
## 6517                    1                   1                   1
## 6518                    1                   1                   2
## 6519                    1                   1                   1
## 6520                    2                   1                   2
## 6521                    2                   2                   2
## 6522                    2                   1                   2
## 6523                    2                   2                   2
## 6525                    2                   2                   2
## 6526                    1                   1                   1
## 6527                    1                   1                   1
## 6528                    2                   2                   2
## 6529                    1                   1                   1
## 6530                    2                   1                   1
## 6532                    1                   1                   1
## 6533                    1                   1                   1
## 6534                    1                   1                   1
## 6535                    1                   1                   1
## 6537                    1                   2                   1
## 6538                    2                   2                   2
## 6540                    1                   1                   2
## 6542                    2                   2                   1
## 6543                    1                   1                   1
## 6544                    1                   1                   1
## 6545                    2                   1                   1
## 6547                    1                   1                   1
## 6548                    2                   2                   1
## 6549                    2                   2                   2
## 6550                    1                   1                   1
## 6551                    2                   1                   2
## 6552                    1                   2                   1
## 6553                    2                   1                   1
## 6554                    2                   2                   2
## 6555                    2                   2                   2
## 6556                    1                   1                   1
## 6557                    1                   1                   1
## 6558                    2                   2                   2
## 6559                    2                   2                   2
## 6560                    1                   1                   1
## 6561                    1                   2                   2
## 6562                    2                   1                   2
## 6563                    2                   2                   2
## 6564                    2                   2                   2
## 6565                    2                   2                   2
## 6566                    1                   1                   1
## 6567                    2                   2                   2
## 6568                    2                   2                   2
## 6569                    2                   2                   2
## 6570                    2                   2                   2
## 6571                    1                   1                   1
## 6573                    1                   1                   1
## 6574                    1                   1                   1
## 6575                    1                   1                   1
## 6576                    1                   1                   1
## 6578                    2                   2                   2
## 6579                    2                   1                   1
## 6580                    1                   1                   1
## 6581                    2                   1                   1
## 6582                    2                   2                   2
## 6584                    1                   1                   1
## 6585                    1                   2                   2
## 6586                    2                   2                   2
## 6587                    1                   1                   1
## 6588                    2                   2                   2
## 6589                    2                   1                   2
## 6590                    2                   2                   2
## 6591                    1                   1                   1
## 6592                    1                   1                   1
## 6593                    2                   1                   2
## 6595                    2                   2                   1
## 6596                    1                   1                   1
## 6599                    2                   2                   2
## 6600                    2                   2                   2
## 6601                    1                   1                   1
## 6602                    2                   1                   1
## 6603                    1                   1                   2
## 6604                    1                   1                   1
## 6605                    1                   1                   1
## 6606                    1                   1                   1
## 6607                    1                   1                   1
## 6608                    2                   2                   2
## 6609                    1                   1                   1
## 6610                    1                   1                   1
## 6611                    1                   1                   1
## 6612                    1                   1                   1
## 6613                    2                   2                   2
## 6615                    2                   2                   2
## 6616                    1                   1                   1
## 6617                    1                   1                   1
## 6618                    2                   2                   2
## 6619                    2                   2                   2
## 6620                    1                   1                   1
## 6621                    1                   2                   2
## 6622                    1                   1                   1
## 6623                    1                   1                   1
## 6624                    1                   1                   1
## 6625                    2                   2                   2
## 6626                    1                   1                   1
## 6627                    2                   2                   2
## 6628                    2                   2                   2
## 6629                    2                   2                   2
## 6630                    1                   1                   1
## 6631                    1                   1                   1
## 6632                    1                   1                   1
## 6633                    2                   2                   2
## 6634                    1                   1                   1
## 6635                    1                   1                   1
## 6636                    2                   1                   1
## 6637                    2                   2                   1
## 6638                    2                   1                   1
## 6639                    1                   1                   1
## 6640                    2                   2                   2
## 6641                    1                   1                   1
## 6642                    2                   2                   2
## 6643                    1                   1                   1
## 6644                    2                   2                   2
## 6645                    1                   1                   1
## 6646                    2                   2                   1
##      package_insurance first_trip_tz cost_category
## 1                    1             2             1
## 2                    1             2             1
## 3                    1             2             2
## 4                    1             1             5
## 5                    2             2             2
## 6                    1             2             1
## 7                    1             2             6
## 8                    1             2             4
## 9                    1             2             6
## 10                   2             2             2
## 11                   1             2             2
## 12                   1             1             2
## 13                   2             1             2
## 14                   2             2             2
## 15                   1             1             1
## 16                   1             1             6
## 17                   1             1             6
## 18                   1             2             6
## 19                   1             2             2
## 20                   1             2             1
## 21                   1             2             6
## 22                   1             2             4
## 23                   1             1             4
## 24                   1             2             6
## 26                   1             2             1
## 27                   1             1             5
## 28                   1             1             5
## 29                   1             2             4
## 30                   1             1             6
## 31                   1             2             2
## 32                   1             2             1
## 33                   1             1             3
## 34                   1             1             6
## 35                   1             2             1
## 36                   1             2             2
## 37                   1             2             1
## 38                   1             2             6
## 39                   1             1             5
## 40                   2             1             2
## 41                   1             1             5
## 42                   1             2             2
## 43                   1             1             5
## 44                   1             2             6
## 45                   1             2             1
## 46                   1             2             6
## 47                   1             1             5
## 48                   1             1             3
## 49                   1             2             6
## 50                   2             1             1
## 51                   1             2             6
## 52                   1             1             6
## 53                   1             2             2
## 54                   1             2             6
## 55                   1             1             6
## 56                   1             2             4
## 57                   1             1             2
## 58                   1             1             6
## 59                   2             2             2
## 60                   1             1             4
## 61                   1             2             5
## 62                   1             2             6
## 63                   1             2             6
## 64                   1             2             2
## 65                   1             1             6
## 66                   1             1             6
## 67                   1             1             5
## 68                   1             1             5
## 69                   1             2             2
## 70                   1             2             6
## 71                   2             2             2
## 72                   1             1             1
## 73                   1             2             2
## 74                   1             2             5
## 75                   1             1             1
## 76                   1             1             2
## 77                   1             2             2
## 78                   2             2             2
## 79                   2             2             2
## 80                   1             2             1
## 81                   1             2             6
## 83                   1             2             4
## 84                   1             2             6
## 85                   1             2             1
## 86                   1             2             1
## 87                   1             2             2
## 88                   1             2             2
## 89                   1             1             4
## 90                   1             1             6
## 91                   1             1             6
## 92                   1             2             2
## 93                   2             2             1
## 94                   1             2             1
## 96                   1             2             5
## 97                   1             1             5
## 98                   2             2             2
## 99                   1             2             4
## 100                  1             1             5
## 101                  1             2             2
## 102                  1             2             6
## 103                  1             1             5
## 104                  1             1             6
## 105                  2             2             1
## 106                  1             2             1
## 107                  2             2             1
## 108                  1             2             1
## 109                  1             2             6
## 110                  1             2             2
## 111                  2             2             2
## 112                  1             2             4
## 113                  1             2             4
## 114                  2             2             2
## 115                  1             2             1
## 117                  1             2             6
## 118                  2             2             2
## 119                  1             1             1
## 120                  2             1             1
## 121                  1             2             1
## 123                  1             1             5
## 124                  1             1             5
## 125                  1             2             6
## 126                  1             1             5
## 127                  1             1             6
## 128                  1             1             5
## 129                  2             2             2
## 130                  1             2             1
## 131                  1             1             5
## 132                  2             1             6
## 133                  1             2             1
## 134                  1             1             1
## 135                  2             2             6
## 136                  2             2             1
## 138                  1             2             6
## 139                  1             1             2
## 140                  1             1             1
## 141                  1             2             2
## 142                  1             2             5
## 143                  2             2             1
## 144                  1             2             6
## 145                  1             2             6
## 146                  1             1             6
## 147                  1             2             6
## 148                  1             2             2
## 149                  1             2             1
## 150                  1             2             6
## 151                  1             1             5
## 152                  1             2             1
## 153                  2             2             2
## 154                  1             1             6
## 155                  2             1             6
## 156                  1             2             1
## 157                  1             2             6
## 158                  1             1             2
## 159                  1             2             2
## 160                  1             2             6
## 161                  1             2             1
## 162                  2             2             1
## 163                  1             2             2
## 164                  2             2             1
## 165                  1             2             3
## 166                  1             2             1
## 167                  2             2             2
## 168                  1             2             2
## 169                  1             1             6
## 170                  1             2             5
## 171                  1             1             4
## 173                  1             2             2
## 174                  1             2             5
## 175                  1             1             6
## 176                  1             2             3
## 177                  1             2             5
## 178                  2             2             1
## 179                  1             2             1
## 180                  1             2             4
## 181                  1             1             1
## 182                  1             2             4
## 183                  2             2             1
## 184                  1             2             1
## 185                  1             2             2
## 186                  1             1             6
## 187                  1             2             1
## 188                  1             2             6
## 189                  1             2             2
## 190                  1             2             2
## 191                  1             1             1
## 192                  1             2             6
## 193                  1             2             6
## 194                  1             2             1
## 195                  2             2             2
## 196                  1             1             6
## 197                  1             2             4
## 198                  1             1             5
## 199                  1             1             2
## 200                  1             2             1
## 201                  1             2             5
## 202                  2             2             3
## 203                  1             2             1
## 204                  1             2             6
## 205                  1             2             6
## 206                  1             2             1
## 207                  1             1             1
## 208                  1             2             1
## 209                  1             2             2
## 210                  2             2             6
## 211                  1             1             1
## 212                  1             2             1
## 213                  1             2             2
## 214                  1             1             5
## 215                  1             1             6
## 216                  2             2             1
## 217                  2             2             2
## 218                  1             2             6
## 219                  2             2             1
## 220                  1             1             1
## 221                  1             2             2
## 222                  1             2             2
## 223                  1             2             6
## 224                  1             1             4
## 225                  1             2             2
## 226                  1             1             6
## 228                  1             1             6
## 229                  1             1             6
## 230                  1             2             6
## 231                  1             2             6
## 232                  1             1             5
## 233                  1             1             6
## 234                  2             2             1
## 235                  1             2             4
## 237                  2             2             3
## 238                  1             1             6
## 239                  1             1             5
## 241                  1             1             6
## 242                  1             2             1
## 243                  1             2             6
## 244                  1             2             5
## 245                  1             2             2
## 246                  1             2             2
## 247                  1             2             1
## 248                  2             1             2
## 249                  1             2             1
## 250                  2             2             1
## 251                  1             2             6
## 252                  1             2             1
## 253                  1             2             2
## 254                  1             1             2
## 255                  2             2             2
## 256                  1             1             6
## 257                  1             2             4
## 258                  1             2             2
## 259                  1             2             2
## 260                  1             2             1
## 261                  1             2             2
## 262                  1             2             2
## 264                  1             2             6
## 265                  1             2             2
## 266                  2             1             2
## 267                  1             1             6
## 268                  1             2             2
## 269                  2             2             2
## 270                  1             2             5
## 271                  1             2             6
## 272                  1             2             4
## 273                  2             2             2
## 274                  1             2             1
## 275                  1             1             6
## 276                  1             2             2
## 277                  1             2             5
## 278                  1             2             4
## 279                  1             2             4
## 280                  1             1             5
## 282                  1             2             1
## 283                  1             1             6
## 284                  1             2             1
## 285                  1             1             1
## 286                  1             2             6
## 287                  1             2             2
## 288                  1             2             6
## 289                  1             2             5
## 290                  1             2             4
## 291                  1             1             1
## 292                  1             2             1
## 293                  1             1             5
## 294                  1             2             4
## 295                  1             2             2
## 296                  1             2             1
## 297                  1             2             4
## 298                  1             2             6
## 299                  1             1             4
## 300                  1             1             5
## 302                  1             1             5
## 303                  1             2             1
## 305                  1             1             2
## 306                  1             1             5
## 307                  1             1             5
## 308                  1             1             6
## 309                  1             2             2
## 310                  1             2             2
## 311                  1             2             2
## 312                  1             1             6
## 313                  1             1             6
## 314                  1             1             2
## 315                  1             2             1
## 316                  1             2             4
## 320                  1             2             5
## 321                  1             1             6
## 322                  1             2             1
## 323                  1             1             6
## 324                  1             1             6
## 325                  1             1             6
## 326                  1             1             5
## 327                  1             2             1
## 328                  2             2             2
## 329                  1             2             6
## 330                  1             1             5
## 331                  1             2             2
## 332                  1             2             3
## 333                  2             2             1
## 334                  1             2             1
## 335                  1             1             1
## 336                  1             2             6
## 337                  1             2             4
## 338                  2             2             2
## 339                  1             1             4
## 340                  1             2             1
## 341                  1             2             1
## 342                  1             2             6
## 343                  1             2             6
## 344                  1             1             2
## 345                  1             1             1
## 346                  1             2             1
## 347                  1             2             1
## 348                  1             1             5
## 349                  1             2             5
## 350                  1             2             1
## 351                  1             2             2
## 352                  2             2             6
## 354                  1             1             5
## 355                  1             2             6
## 356                  1             2             1
## 357                  1             2             1
## 358                  1             2             1
## 359                  1             2             2
## 360                  1             2             5
## 361                  2             2             2
## 362                  2             2             2
## 363                  1             2             1
## 364                  2             2             2
## 365                  1             1             5
## 366                  1             1             5
## 367                  1             2             6
## 368                  1             2             4
## 369                  1             2             2
## 370                  1             2             2
## 371                  1             2             1
## 372                  1             2             4
## 373                  1             2             2
## 374                  1             1             6
## 375                  1             2             1
## 376                  2             2             2
## 377                  1             1             5
## 378                  2             2             1
## 379                  1             1             6
## 380                  1             1             6
## 381                  1             2             6
## 382                  1             1             5
## 383                  1             2             5
## 384                  1             2             5
## 385                  1             1             4
## 386                  1             1             2
## 387                  1             2             4
## 388                  2             1             6
## 389                  1             1             4
## 390                  1             2             5
## 391                  1             1             6
## 392                  1             2             2
## 393                  1             2             1
## 394                  1             2             6
## 396                  1             2             2
## 397                  1             1             6
## 398                  1             2             6
## 399                  1             2             1
## 400                  1             1             6
## 401                  2             2             6
## 402                  1             1             6
## 403                  1             2             2
## 404                  1             2             4
## 405                  1             2             6
## 406                  1             1             6
## 407                  1             2             1
## 408                  1             1             4
## 409                  1             2             2
## 410                  1             2             6
## 411                  1             2             3
## 412                  1             1             6
## 413                  1             2             6
## 414                  1             1             4
## 415                  1             1             5
## 416                  1             2             1
## 417                  2             2             6
## 418                  1             2             1
## 419                  1             1             2
## 420                  1             2             6
## 422                  1             2             2
## 423                  1             2             5
## 424                  1             1             6
## 426                  1             1             4
## 427                  1             2             5
## 428                  2             2             3
## 429                  1             1             2
## 430                  1             1             6
## 431                  2             2             2
## 432                  2             1             2
## 433                  1             1             4
## 435                  2             2             1
## 436                  1             2             6
## 437                  1             2             1
## 439                  1             1             4
## 440                  1             2             6
## 441                  1             2             6
## 442                  1             1             6
## 443                  1             2             6
## 444                  1             2             6
## 445                  1             2             1
## 446                  1             2             2
## 447                  1             2             6
## 448                  1             2             5
## 449                  1             2             2
## 450                  1             2             2
## 451                  1             2             1
## 452                  1             1             6
## 453                  1             1             6
## 454                  1             2             5
## 456                  1             2             5
## 457                  1             2             6
## 458                  1             2             2
## 459                  2             2             2
## 460                  1             1             5
## 461                  1             1             5
## 462                  1             2             1
## 463                  1             2             2
## 464                  1             2             6
## 465                  1             2             2
## 466                  1             2             6
## 467                  1             2             1
## 468                  2             2             2
## 469                  1             2             6
## 470                  1             1             2
## 471                  1             2             5
## 472                  1             2             4
## 473                  2             2             2
## 474                  1             1             1
## 475                  2             2             2
## 476                  1             2             2
## 477                  2             2             1
## 478                  1             2             2
## 479                  1             2             6
## 480                  1             1             1
## 481                  1             1             6
## 482                  1             2             6
## 483                  1             1             1
## 484                  1             2             6
## 485                  1             1             6
## 486                  1             2             6
## 487                  1             2             1
## 488                  1             2             2
## 489                  1             2             2
## 490                  1             1             6
## 491                  1             2             6
## 492                  1             1             5
## 493                  1             2             6
## 494                  1             2             2
## 495                  1             1             2
## 497                  1             2             1
## 498                  1             1             2
## 499                  1             2             2
## 500                  1             2             5
## 501                  1             2             1
## 502                  2             2             1
## 503                  1             2             2
## 504                  1             2             4
## 505                  1             2             5
## 506                  1             2             1
## 507                  1             1             5
## 508                  1             2             1
## 509                  1             2             2
## 510                  1             1             5
## 511                  1             2             1
## 512                  1             2             2
## 513                  1             2             6
## 514                  1             2             5
## 515                  1             2             2
## 516                  1             2             2
## 517                  1             2             6
## 518                  1             2             1
## 519                  1             1             6
## 520                  1             2             2
## 521                  2             2             6
## 522                  2             2             2
## 523                  1             2             5
## 524                  1             2             2
## 526                  2             2             1
## 527                  1             2             6
## 528                  1             2             1
## 529                  1             2             1
## 530                  1             2             6
## 531                  1             2             1
## 532                  1             2             4
## 533                  1             2             2
## 534                  1             2             1
## 535                  1             2             1
## 536                  1             2             2
## 537                  1             2             2
## 538                  1             2             2
## 539                  1             2             2
## 540                  1             2             2
## 541                  1             2             1
## 542                  1             2             5
## 543                  1             2             6
## 544                  1             1             5
## 545                  1             2             6
## 546                  1             2             6
## 547                  1             1             4
## 548                  1             2             6
## 549                  1             1             6
## 550                  2             1             6
## 551                  1             2             6
## 552                  1             1             1
## 553                  1             2             2
## 554                  2             2             1
## 555                  1             1             6
## 556                  2             2             2
## 557                  1             1             5
## 558                  1             1             4
## 559                  2             2             2
## 560                  2             2             2
## 561                  1             2             2
## 562                  1             2             2
## 563                  1             2             6
## 564                  2             2             6
## 565                  2             2             2
## 566                  1             2             6
## 567                  1             2             2
## 568                  1             2             1
## 570                  1             2             6
## 571                  1             1             6
## 572                  1             2             2
## 573                  1             2             2
## 574                  2             2             2
## 575                  1             2             2
## 576                  1             2             1
## 577                  1             1             6
## 578                  1             2             1
## 579                  1             2             1
## 581                  1             1             6
## 582                  1             1             5
## 583                  1             2             2
## 584                  1             1             4
## 585                  1             2             5
## 586                  1             2             2
## 587                  1             2             2
## 588                  1             1             4
## 589                  1             1             6
## 590                  1             1             1
## 591                  1             2             2
## 592                  1             2             2
## 593                  1             1             6
## 594                  2             2             1
## 595                  1             1             5
## 596                  1             2             1
## 597                  1             1             6
## 598                  2             2             1
## 599                  1             2             1
## 600                  1             2             2
## 601                  1             2             2
## 602                  1             2             6
## 603                  1             1             5
## 604                  2             2             2
## 605                  1             2             1
## 606                  1             2             1
## 607                  1             2             3
## 608                  1             2             1
## 609                  2             1             2
## 611                  1             2             6
## 612                  1             2             5
## 613                  1             1             4
## 614                  1             2             1
## 615                  1             2             5
## 616                  1             2             6
## 617                  1             1             4
## 618                  2             2             1
## 619                  1             1             1
## 620                  1             2             2
## 621                  1             2             1
## 622                  1             1             1
## 623                  1             2             1
## 624                  1             1             1
## 625                  1             2             5
## 626                  1             2             2
## 627                  1             2             5
## 628                  1             2             6
## 629                  2             2             2
## 631                  1             1             4
## 632                  1             2             1
## 633                  1             2             4
## 634                  1             2             4
## 635                  1             2             5
## 636                  1             2             1
## 638                  2             2             1
## 639                  2             2             1
## 640                  1             2             6
## 641                  1             1             4
## 642                  1             1             1
## 643                  1             2             6
## 644                  1             1             1
## 645                  1             2             2
## 646                  1             2             2
## 647                  2             2             2
## 648                  1             2             6
## 649                  1             2             2
## 650                  1             2             6
## 651                  1             2             5
## 652                  1             2             1
## 653                  1             2             1
## 654                  1             1             1
## 655                  1             2             1
## 656                  2             2             2
## 657                  1             2             6
## 658                  1             2             1
## 659                  1             2             6
## 660                  1             2             1
## 661                  1             1             6
## 662                  1             1             6
## 663                  1             2             2
## 664                  1             1             4
## 665                  1             1             6
## 666                  1             2             5
## 667                  1             2             6
## 669                  1             2             6
## 670                  1             2             1
## 671                  1             2             6
## 672                  1             2             2
## 673                  1             2             6
## 674                  1             2             2
## 675                  1             2             4
## 676                  2             2             2
## 677                  1             2             2
## 678                  1             1             5
## 679                  1             1             1
## 680                  1             1             4
## 681                  1             2             6
## 682                  1             2             5
## 683                  1             1             5
## 684                  1             2             2
## 685                  1             2             2
## 686                  1             1             5
## 688                  1             2             1
## 690                  1             2             2
## 691                  2             2             2
## 692                  1             2             2
## 693                  1             1             5
## 694                  2             2             2
## 695                  1             1             2
## 696                  1             1             6
## 697                  1             2             1
## 698                  1             2             6
## 699                  1             2             2
## 700                  1             2             2
## 701                  1             2             4
## 702                  1             2             6
## 703                  1             2             6
## 704                  1             1             6
## 705                  1             2             6
## 706                  1             1             2
## 707                  1             2             2
## 708                  1             1             1
## 709                  1             2             5
## 710                  1             2             1
## 711                  1             2             2
## 712                  2             2             3
## 713                  1             1             5
## 714                  1             2             3
## 715                  1             1             5
## 716                  1             2             2
## 717                  1             1             6
## 718                  1             2             2
## 719                  1             1             1
## 720                  1             1             2
## 721                  2             2             2
## 722                  1             2             2
## 723                  2             1             3
## 724                  1             2             5
## 725                  2             2             2
## 726                  1             2             6
## 727                  1             2             4
## 728                  1             1             6
## 729                  1             2             2
## 731                  1             2             1
## 732                  1             1             4
## 733                  1             2             1
## 734                  1             2             2
## 735                  1             2             2
## 736                  1             2             1
## 737                  1             1             5
## 738                  2             2             2
## 739                  1             2             1
## 741                  1             2             5
## 742                  2             2             2
## 743                  1             1             6
## 744                  1             2             4
## 745                  2             2             2
## 746                  1             2             2
## 747                  1             1             6
## 748                  1             2             2
## 749                  1             1             1
## 750                  1             2             5
## 751                  1             2             1
## 752                  1             2             5
## 753                  1             2             2
## 754                  1             2             1
## 755                  1             1             6
## 756                  1             1             5
## 757                  1             1             1
## 758                  2             2             1
## 759                  2             2             1
## 760                  1             2             6
## 761                  1             2             6
## 762                  1             2             1
## 763                  1             2             1
## 764                  1             1             6
## 765                  1             2             5
## 766                  2             2             6
## 767                  2             2             1
## 768                  1             1             2
## 769                  1             1             2
## 770                  1             2             2
## 771                  1             1             5
## 772                  1             2             1
## 773                  1             1             6
## 774                  1             2             5
## 775                  1             2             6
## 776                  2             2             6
## 777                  1             2             4
## 778                  1             2             2
## 779                  1             1             1
## 780                  1             2             2
## 781                  1             2             6
## 782                  1             2             1
## 783                  2             2             1
## 784                  2             2             3
## 785                  1             2             2
## 786                  1             2             2
## 787                  1             2             2
## 788                  1             2             2
## 789                  1             2             1
## 790                  1             2             2
## 791                  1             2             1
## 792                  1             2             2
## 793                  1             2             6
## 794                  2             1             2
## 795                  1             2             2
## 797                  1             1             1
## 798                  2             2             2
## 799                  1             2             6
## 800                  1             2             6
## 801                  1             1             4
## 802                  1             2             4
## 803                  1             1             6
## 804                  1             2             1
## 805                  1             2             6
## 806                  1             1             6
## 807                  1             2             1
## 808                  2             2             2
## 809                  1             2             2
## 810                  2             2             3
## 811                  1             1             6
## 812                  1             2             6
## 814                  1             1             5
## 815                  1             1             6
## 816                  1             1             6
## 817                  2             2             1
## 818                  2             1             6
## 820                  2             2             1
## 821                  2             2             2
## 822                  1             2             6
## 823                  1             1             2
## 824                  1             2             6
## 825                  2             1             3
## 826                  2             2             2
## 827                  1             2             6
## 828                  2             2             2
## 829                  1             2             6
## 831                  1             1             1
## 832                  1             2             1
## 833                  1             1             5
## 834                  1             1             6
## 835                  1             2             2
## 836                  1             1             2
## 837                  1             2             2
## 838                  1             2             2
## 839                  1             2             6
## 841                  1             2             6
## 842                  1             1             5
## 845                  1             2             1
## 846                  1             2             1
## 847                  2             2             2
## 848                  1             2             5
## 849                  1             2             4
## 850                  1             2             5
## 851                  1             1             1
## 852                  1             2             3
## 853                  1             1             6
## 854                  1             1             5
## 855                  1             2             2
## 856                  1             1             1
## 857                  1             1             6
## 858                  1             1             2
## 859                  2             2             6
## 860                  1             2             6
## 861                  1             2             2
## 862                  1             1             6
## 863                  2             2             2
## 864                  1             2             2
## 865                  2             2             1
## 866                  1             2             5
## 867                  1             1             6
## 868                  2             2             2
## 869                  1             2             6
## 870                  2             1             2
## 871                  1             2             2
## 872                  2             2             6
## 873                  1             1             2
## 874                  1             2             2
## 875                  1             2             2
## 876                  1             1             5
## 877                  1             1             5
## 878                  1             1             1
## 879                  1             2             2
## 880                  2             2             3
## 881                  1             1             5
## 882                  1             2             2
## 883                  1             2             4
## 885                  1             2             6
## 886                  1             1             1
## 887                  1             1             5
## 889                  1             1             4
## 890                  1             2             2
## 891                  2             2             6
## 892                  1             1             6
## 893                  1             2             5
## 894                  1             2             6
## 895                  1             1             1
## 896                  1             2             1
## 897                  1             2             2
## 898                  1             1             1
## 899                  1             1             1
## 900                  1             1             5
## 902                  1             2             6
## 903                  1             2             2
## 904                  1             2             2
## 905                  1             1             2
## 906                  1             2             1
## 907                  1             2             6
## 908                  1             2             5
## 909                  1             2             2
## 910                  1             1             5
## 911                  1             2             2
## 912                  1             2             2
## 913                  2             2             6
## 914                  2             1             2
## 915                  1             2             6
## 916                  1             2             6
## 917                  1             2             4
## 918                  2             2             1
## 919                  1             1             6
## 920                  1             2             6
## 921                  2             1             1
## 922                  1             2             2
## 923                  1             2             2
## 924                  1             2             2
## 925                  1             2             6
## 926                  1             1             6
## 927                  1             2             2
## 928                  1             2             2
## 929                  1             2             2
## 930                  1             2             4
## 931                  1             2             6
## 932                  1             2             6
## 933                  1             1             4
## 934                  1             2             2
## 935                  1             1             6
## 936                  2             2             1
## 937                  1             2             5
## 938                  1             2             6
## 939                  1             2             5
## 940                  1             2             5
## 941                  2             2             2
## 942                  1             1             2
## 943                  1             2             2
## 945                  1             2             1
## 946                  1             1             2
## 947                  1             2             3
## 948                  1             2             2
## 950                  1             2             3
## 951                  1             2             2
## 952                  1             1             4
## 953                  1             2             2
## 954                  2             2             2
## 955                  1             2             5
## 956                  1             1             6
## 957                  1             1             4
## 958                  1             2             6
## 959                  2             1             2
## 960                  2             1             2
## 961                  1             2             2
## 962                  1             2             1
## 963                  1             2             4
## 964                  1             2             6
## 965                  1             1             1
## 966                  1             2             2
## 967                  1             1             1
## 968                  1             1             5
## 969                  1             2             5
## 970                  1             2             1
## 971                  1             2             1
## 972                  2             2             2
## 973                  1             2             6
## 974                  1             2             6
## 975                  1             2             2
## 976                  1             1             6
## 977                  1             2             1
## 978                  2             2             2
## 979                  1             2             6
## 980                  1             2             6
## 981                  1             2             6
## 982                  1             1             6
## 983                  1             1             2
## 985                  1             2             5
## 986                  1             2             6
## 987                  1             2             1
## 989                  1             2             6
## 990                  1             1             6
## 991                  1             2             6
## 992                  1             2             5
## 993                  1             1             5
## 994                  1             2             6
## 995                  1             1             5
## 996                  2             2             2
## 997                  1             2             2
## 998                  2             2             1
## 999                  1             1             6
## 1000                 1             2             1
## 1001                 2             2             1
## 1002                 2             2             1
## 1003                 1             1             6
## 1004                 1             2             1
## 1005                 2             2             2
## 1006                 1             1             6
## 1007                 1             2             2
## 1008                 1             2             5
## 1009                 1             2             6
## 1010                 1             2             6
## 1011                 1             2             2
## 1012                 1             2             5
## 1013                 2             2             3
## 1014                 2             2             1
## 1016                 1             2             6
## 1017                 1             2             5
## 1018                 1             2             6
## 1019                 1             2             6
## 1020                 1             2             2
## 1021                 1             2             4
## 1022                 2             1             2
## 1023                 1             2             3
## 1024                 2             2             2
## 1026                 1             1             6
## 1027                 1             1             6
## 1028                 2             2             2
## 1029                 2             2             6
## 1030                 1             1             1
## 1031                 1             2             2
## 1032                 1             2             4
## 1033                 1             2             5
## 1034                 1             2             6
## 1035                 1             1             6
## 1036                 1             1             5
## 1037                 2             1             2
## 1038                 2             2             2
## 1040                 1             2             5
## 1041                 1             2             6
## 1042                 1             2             2
## 1043                 1             1             1
## 1044                 1             2             6
## 1045                 1             1             4
## 1046                 1             2             6
## 1047                 1             2             2
## 1048                 1             2             2
## 1049                 1             2             1
## 1050                 1             2             6
## 1051                 2             1             2
## 1052                 1             2             2
## 1053                 1             2             2
## 1054                 2             2             2
## 1055                 1             2             6
## 1056                 1             1             6
## 1057                 1             2             4
## 1058                 1             1             2
## 1059                 1             2             2
## 1060                 1             1             4
## 1061                 1             2             2
## 1062                 1             2             6
## 1063                 1             2             6
## 1065                 1             2             5
## 1066                 1             1             6
## 1067                 1             1             6
## 1068                 1             2             2
## 1069                 1             2             5
## 1070                 1             2             2
## 1071                 1             2             1
## 1072                 1             1             6
## 1073                 1             2             5
## 1074                 1             2             6
## 1075                 2             2             2
## 1076                 1             1             5
## 1077                 1             2             2
## 1078                 1             2             5
## 1079                 1             2             2
## 1080                 1             2             6
## 1081                 2             2             2
## 1082                 1             2             1
## 1083                 2             2             2
## 1084                 2             2             1
## 1085                 1             2             5
## 1087                 2             2             5
## 1088                 1             2             1
## 1091                 2             2             5
## 1092                 1             1             6
## 1093                 1             1             6
## 1094                 1             2             1
## 1095                 1             2             6
## 1096                 1             2             4
## 1098                 1             2             5
## 1099                 2             2             1
## 1100                 1             2             1
## 1101                 1             1             2
## 1102                 1             2             6
## 1103                 1             2             2
## 1104                 1             1             4
## 1105                 1             2             6
## 1106                 1             1             1
## 1108                 1             1             6
## 1109                 1             2             6
## 1110                 1             1             5
## 1111                 1             1             4
## 1112                 2             2             2
## 1113                 1             2             2
## 1114                 1             2             6
## 1115                 1             1             6
## 1116                 1             2             4
## 1117                 1             2             2
## 1118                 1             2             2
## 1120                 1             2             4
## 1121                 1             1             6
## 1122                 1             1             6
## 1123                 2             2             2
## 1124                 1             2             6
## 1125                 1             1             6
## 1126                 2             2             6
## 1127                 1             1             6
## 1128                 1             1             5
## 1129                 1             2             4
## 1130                 1             2             1
## 1131                 1             2             4
## 1132                 1             2             6
## 1133                 1             1             1
## 1134                 1             2             6
## 1135                 1             2             1
## 1136                 1             2             5
## 1137                 1             1             5
## 1138                 2             2             2
## 1139                 2             2             2
## 1140                 1             1             2
## 1141                 1             1             2
## 1142                 1             2             2
## 1143                 1             2             2
## 1144                 1             2             2
## 1146                 2             2             2
## 1147                 1             2             5
## 1148                 1             2             6
## 1149                 1             1             2
## 1150                 1             2             6
## 1151                 2             2             2
## 1152                 1             2             6
## 1153                 1             1             6
## 1154                 1             2             6
## 1155                 1             2             6
## 1156                 1             2             3
## 1157                 1             2             6
## 1158                 1             2             1
## 1159                 1             2             2
## 1160                 1             2             6
## 1161                 1             2             3
## 1162                 1             1             6
## 1163                 1             2             1
## 1164                 1             1             2
## 1165                 2             1             2
## 1166                 1             1             5
## 1167                 1             2             3
## 1168                 1             2             1
## 1169                 1             2             2
## 1170                 1             1             4
## 1172                 1             2             5
## 1173                 1             2             5
## 1175                 1             2             1
## 1177                 1             2             2
## 1178                 1             2             1
## 1179                 1             2             2
## 1180                 1             2             5
## 1181                 2             2             2
## 1182                 1             2             4
## 1184                 1             2             1
## 1185                 1             1             6
## 1186                 1             2             6
## 1187                 1             1             4
## 1189                 2             2             1
## 1190                 2             2             5
## 1191                 2             2             2
## 1192                 1             2             3
## 1193                 1             2             6
## 1194                 1             2             4
## 1196                 2             2             2
## 1197                 1             2             2
## 1198                 1             2             1
## 1199                 2             2             1
## 1200                 1             2             2
## 1201                 1             1             4
## 1202                 1             2             6
## 1203                 2             2             6
## 1204                 1             2             5
## 1205                 1             2             6
## 1206                 1             2             6
## 1207                 1             1             4
## 1208                 1             1             2
## 1209                 1             1             6
## 1210                 2             2             2
## 1211                 1             2             2
## 1212                 2             2             6
## 1213                 1             1             6
## 1214                 1             1             6
## 1215                 2             2             2
## 1216                 1             1             5
## 1217                 1             2             1
## 1218                 1             1             6
## 1221                 1             1             4
## 1223                 2             1             2
## 1224                 1             2             5
## 1225                 2             2             2
## 1227                 1             1             1
## 1228                 1             2             5
## 1229                 2             2             1
## 1230                 1             2             2
## 1231                 1             2             6
## 1232                 1             2             5
## 1233                 1             2             6
## 1234                 1             1             6
## 1235                 1             1             5
## 1236                 1             1             2
## 1237                 1             2             5
## 1238                 1             1             6
## 1239                 1             2             2
## 1240                 1             2             5
## 1241                 2             2             2
## 1242                 1             2             6
## 1243                 1             1             6
## 1244                 1             2             2
## 1245                 1             2             6
## 1246                 1             1             5
## 1247                 1             2             1
## 1248                 1             2             6
## 1249                 1             2             2
## 1250                 1             2             1
## 1251                 1             2             6
## 1252                 1             2             2
## 1253                 2             1             6
## 1254                 1             2             1
## 1255                 1             2             5
## 1256                 1             1             5
## 1257                 1             2             6
## 1259                 1             1             2
## 1260                 1             2             6
## 1261                 1             2             6
## 1262                 1             2             2
## 1263                 2             2             2
## 1264                 1             2             1
## 1265                 1             2             5
## 1266                 1             2             1
## 1267                 1             2             1
## 1268                 2             2             1
## 1269                 2             2             2
## 1270                 1             2             4
## 1271                 1             2             2
## 1272                 1             2             2
## 1273                 1             2             2
## 1274                 1             2             2
## 1275                 1             1             1
## 1276                 2             2             2
## 1277                 1             2             6
## 1278                 1             2             2
## 1279                 1             2             2
## 1280                 1             2             1
## 1281                 1             1             1
## 1282                 1             2             2
## 1283                 1             2             1
## 1284                 1             2             6
## 1285                 1             2             1
## 1286                 1             2             6
## 1287                 1             2             2
## 1288                 1             1             6
## 1289                 1             2             6
## 1290                 1             2             2
## 1291                 1             1             6
## 1292                 1             2             2
## 1293                 1             2             1
## 1294                 1             2             2
## 1295                 1             2             2
## 1296                 2             2             1
## 1298                 1             1             6
## 1299                 2             2             1
## 1300                 1             1             5
## 1301                 1             2             1
## 1302                 1             2             1
## 1303                 1             1             6
## 1304                 1             2             4
## 1305                 1             2             2
## 1306                 1             2             6
## 1307                 1             2             6
## 1308                 1             1             2
## 1309                 1             2             1
## 1310                 1             1             2
## 1311                 1             2             1
## 1312                 1             2             5
## 1313                 2             2             2
## 1314                 1             1             4
## 1315                 1             2             2
## 1316                 1             1             6
## 1317                 1             2             6
## 1318                 1             2             4
## 1319                 1             2             2
## 1320                 1             2             4
## 1321                 1             2             1
## 1322                 1             2             2
## 1323                 2             2             1
## 1324                 1             1             5
## 1326                 1             2             3
## 1327                 1             2             1
## 1328                 1             1             6
## 1330                 1             2             5
## 1331                 1             2             1
## 1332                 1             2             2
## 1333                 1             1             1
## 1334                 1             1             6
## 1335                 1             1             4
## 1336                 1             1             2
## 1337                 1             1             6
## 1338                 1             1             4
## 1339                 1             2             6
## 1340                 1             1             6
## 1341                 1             1             5
## 1342                 1             1             5
## 1343                 1             2             6
## 1345                 1             1             4
## 1346                 1             2             6
## 1347                 1             2             6
## 1348                 1             2             1
## 1349                 1             2             2
## 1350                 2             2             2
## 1351                 1             1             6
## 1352                 1             2             5
## 1354                 1             2             6
## 1355                 1             2             1
## 1356                 1             1             4
## 1357                 1             2             1
## 1358                 1             2             1
## 1359                 1             2             2
## 1360                 1             1             6
## 1361                 1             2             2
## 1362                 1             1             4
## 1363                 1             2             1
## 1364                 1             2             6
## 1365                 1             1             6
## 1366                 1             1             5
## 1367                 2             2             3
## 1368                 1             2             6
## 1369                 1             2             1
## 1370                 2             2             1
## 1371                 1             1             6
## 1372                 1             1             1
## 1373                 2             2             2
## 1374                 1             2             1
## 1375                 1             1             6
## 1376                 2             2             2
## 1377                 1             2             4
## 1378                 2             2             2
## 1379                 1             2             6
## 1380                 1             1             6
## 1381                 1             2             1
## 1382                 1             2             2
## 1383                 1             1             6
## 1385                 1             2             6
## 1386                 1             1             5
## 1387                 1             1             6
## 1388                 2             2             2
## 1389                 1             1             5
## 1390                 1             2             5
## 1391                 1             2             1
## 1392                 1             2             6
## 1393                 1             1             6
## 1394                 1             1             6
## 1395                 1             2             2
## 1396                 1             2             6
## 1397                 2             2             6
## 1398                 2             2             2
## 1400                 1             2             6
## 1401                 2             2             2
## 1402                 1             1             6
## 1403                 1             2             2
## 1404                 1             2             4
## 1405                 1             1             5
## 1406                 1             2             6
## 1407                 2             2             2
## 1408                 1             2             5
## 1409                 1             1             6
## 1410                 1             1             4
## 1411                 1             2             2
## 1412                 1             1             2
## 1413                 1             2             4
## 1414                 1             1             4
## 1415                 1             2             2
## 1416                 1             2             5
## 1417                 1             2             2
## 1418                 1             2             1
## 1420                 1             2             1
## 1421                 1             2             3
## 1422                 1             1             6
## 1423                 1             2             5
## 1424                 1             2             2
## 1425                 1             1             5
## 1426                 1             2             2
## 1428                 1             2             2
## 1429                 1             2             1
## 1430                 1             1             6
## 1431                 1             2             6
## 1432                 2             2             2
## 1433                 2             2             2
## 1434                 1             2             1
## 1435                 1             1             6
## 1436                 1             1             1
## 1437                 1             1             6
## 1438                 1             1             6
## 1439                 1             1             6
## 1441                 1             1             5
## 1442                 1             2             1
## 1443                 1             1             2
## 1444                 1             2             1
## 1445                 2             2             3
## 1446                 1             1             1
## 1447                 1             2             1
## 1448                 1             2             2
## 1449                 1             2             1
## 1450                 1             2             2
## 1451                 1             1             5
## 1452                 2             2             2
## 1453                 1             2             4
## 1454                 1             2             6
## 1455                 1             1             1
## 1456                 2             2             1
## 1457                 1             2             1
## 1458                 1             1             1
## 1459                 1             2             2
## 1460                 1             2             1
## 1461                 1             1             4
## 1462                 1             2             2
## 1463                 1             1             1
## 1464                 1             2             5
## 1465                 2             1             2
## 1466                 1             2             2
## 1467                 1             2             5
## 1468                 1             2             1
## 1469                 1             2             5
## 1470                 1             1             4
## 1471                 1             2             6
## 1472                 1             2             5
## 1473                 1             2             2
## 1474                 1             2             2
## 1475                 1             2             2
## 1476                 2             2             2
## 1478                 1             2             4
## 1479                 1             1             6
## 1480                 1             2             2
## 1481                 1             2             4
## 1482                 1             2             5
## 1483                 1             2             3
## 1484                 1             2             6
## 1485                 1             2             1
## 1486                 1             2             6
## 1487                 1             2             1
## 1488                 1             2             6
## 1490                 1             2             4
## 1491                 1             2             2
## 1492                 2             2             1
## 1493                 1             2             2
## 1494                 2             1             1
## 1495                 1             2             6
## 1496                 1             1             6
## 1497                 1             2             4
## 1498                 1             1             5
## 1499                 1             2             2
## 1500                 2             1             2
## 1501                 1             2             1
## 1502                 1             2             2
## 1503                 1             2             6
## 1504                 1             1             6
## 1505                 2             2             2
## 1506                 1             1             6
## 1507                 2             2             2
## 1508                 1             1             2
## 1509                 2             2             3
## 1511                 2             2             1
## 1512                 2             2             2
## 1513                 1             2             6
## 1514                 1             1             6
## 1515                 1             2             6
## 1516                 1             2             4
## 1517                 1             1             6
## 1518                 2             2             2
## 1519                 1             2             2
## 1520                 1             2             6
## 1521                 1             2             4
## 1522                 1             1             1
## 1523                 1             1             1
## 1524                 1             1             6
## 1525                 2             1             6
## 1526                 1             1             4
## 1527                 1             2             2
## 1528                 1             1             5
## 1529                 1             1             4
## 1530                 1             2             2
## 1531                 1             1             6
## 1532                 1             1             6
## 1533                 1             2             5
## 1534                 1             2             5
## 1536                 1             1             2
## 1537                 1             2             6
## 1538                 1             2             5
## 1539                 2             2             1
## 1540                 2             2             2
## 1541                 1             1             2
## 1542                 2             2             2
## 1543                 1             2             2
## 1544                 1             2             6
## 1545                 2             1             1
## 1546                 1             2             4
## 1547                 1             1             6
## 1548                 1             2             5
## 1549                 1             2             2
## 1550                 1             2             6
## 1551                 1             2             2
## 1552                 1             2             6
## 1553                 2             2             2
## 1554                 1             1             1
## 1555                 1             2             1
## 1556                 1             2             6
## 1557                 1             2             6
## 1558                 1             2             6
## 1559                 1             2             2
## 1560                 2             2             5
## 1561                 2             2             2
## 1562                 1             2             2
## 1563                 1             1             5
## 1564                 1             1             4
## 1565                 1             2             6
## 1566                 1             2             2
## 1567                 1             1             5
## 1568                 1             2             2
## 1569                 1             1             6
## 1570                 1             1             5
## 1571                 1             2             5
## 1574                 1             2             5
## 1575                 1             2             6
## 1576                 1             1             1
## 1578                 1             2             1
## 1579                 1             2             2
## 1580                 2             2             2
## 1581                 1             2             1
## 1582                 1             1             6
## 1584                 1             1             4
## 1585                 1             2             2
## 1586                 1             2             1
## 1587                 1             2             6
## 1588                 1             1             5
## 1589                 1             1             1
## 1590                 1             2             2
## 1591                 1             2             1
## 1592                 1             2             6
## 1593                 1             1             1
## 1594                 1             2             2
## 1595                 1             2             5
## 1596                 1             1             6
## 1597                 1             2             5
## 1598                 1             2             5
## 1600                 2             2             2
## 1601                 1             2             1
## 1602                 1             2             6
## 1603                 1             1             6
## 1604                 1             1             5
## 1605                 2             2             1
## 1606                 1             2             1
## 1607                 1             2             6
## 1608                 1             2             6
## 1609                 1             2             6
## 1610                 2             2             4
## 1611                 1             2             1
## 1612                 1             1             2
## 1613                 1             2             1
## 1614                 1             1             6
## 1615                 1             1             4
## 1616                 1             1             1
## 1617                 1             2             1
## 1618                 1             2             6
## 1619                 1             2             6
## 1620                 1             2             6
## 1621                 1             2             1
## 1622                 1             1             6
## 1624                 1             1             5
## 1625                 1             1             2
## 1626                 1             1             6
## 1627                 1             1             5
## 1629                 1             1             6
## 1630                 1             2             6
## 1631                 1             2             6
## 1633                 1             1             4
## 1634                 1             2             1
## 1635                 1             2             2
## 1636                 1             2             2
## 1637                 1             2             6
## 1638                 1             2             6
## 1640                 1             2             2
## 1641                 2             2             2
## 1642                 1             2             6
## 1643                 1             2             1
## 1644                 1             1             4
## 1645                 1             1             1
## 1646                 1             2             5
## 1647                 1             2             5
## 1648                 1             2             2
## 1649                 2             2             2
## 1651                 1             1             4
## 1652                 1             2             1
## 1653                 1             2             2
## 1654                 1             1             4
## 1655                 1             2             2
## 1656                 2             2             2
## 1657                 1             2             6
## 1658                 1             1             6
## 1659                 1             1             2
## 1662                 1             2             5
## 1663                 1             1             2
## 1664                 1             2             4
## 1665                 1             1             2
## 1666                 1             2             6
## 1667                 2             2             2
## 1669                 1             2             6
## 1670                 1             1             6
## 1671                 1             2             5
## 1672                 1             1             4
## 1673                 1             2             2
## 1674                 1             1             1
## 1675                 2             2             6
## 1676                 2             2             6
## 1677                 1             2             6
## 1678                 1             2             5
## 1679                 1             1             5
## 1680                 2             1             6
## 1681                 2             2             1
## 1682                 1             1             5
## 1683                 1             1             5
## 1684                 2             1             2
## 1685                 1             1             6
## 1687                 1             2             6
## 1688                 1             1             4
## 1689                 1             1             6
## 1690                 1             1             5
## 1691                 1             1             4
## 1692                 2             2             1
## 1693                 1             2             3
## 1694                 1             1             6
## 1695                 1             2             4
## 1696                 1             1             6
## 1697                 1             2             6
## 1698                 1             2             2
## 1699                 1             2             6
## 1700                 1             2             4
## 1701                 1             2             2
## 1702                 1             2             1
## 1703                 1             2             2
## 1704                 1             1             5
## 1705                 1             2             2
## 1706                 2             2             2
## 1707                 1             2             2
## 1708                 1             1             6
## 1709                 2             2             6
## 1710                 1             2             1
## 1711                 1             2             6
## 1712                 1             1             6
## 1713                 1             2             6
## 1714                 1             1             6
## 1715                 1             1             2
## 1716                 1             2             5
## 1717                 1             2             1
## 1718                 1             2             4
## 1719                 2             2             6
## 1720                 1             1             6
## 1721                 1             2             5
## 1723                 1             1             6
## 1724                 1             2             6
## 1725                 1             2             2
## 1726                 1             2             1
## 1727                 1             2             2
## 1728                 1             2             4
## 1729                 1             2             2
## 1730                 1             1             6
## 1731                 1             2             4
## 1732                 1             2             5
## 1733                 1             1             6
## 1734                 1             1             6
## 1735                 1             2             2
## 1736                 2             2             2
## 1737                 1             1             2
## 1738                 1             1             5
## 1739                 1             2             1
## 1740                 1             1             4
## 1741                 1             1             6
## 1742                 1             1             1
## 1743                 1             2             1
## 1744                 1             2             5
## 1745                 1             2             2
## 1746                 1             2             6
## 1747                 2             2             2
## 1748                 1             1             4
## 1749                 1             2             1
## 1750                 1             2             1
## 1751                 1             1             6
## 1752                 1             1             6
## 1753                 2             2             1
## 1754                 1             2             1
## 1756                 1             2             2
## 1757                 1             2             5
## 1758                 1             2             6
## 1759                 1             2             6
## 1760                 1             2             3
## 1761                 1             2             6
## 1762                 2             2             2
## 1763                 1             1             5
## 1764                 1             1             6
## 1765                 1             1             6
## 1766                 1             2             6
## 1768                 1             1             5
## 1769                 2             2             3
## 1770                 1             2             2
## 1771                 1             2             1
## 1772                 1             2             2
## 1773                 1             2             1
## 1774                 2             2             2
## 1775                 1             2             2
## 1776                 1             2             6
## 1777                 1             2             6
## 1778                 1             2             6
## 1779                 1             2             1
## 1780                 1             2             2
## 1781                 1             2             6
## 1782                 1             2             1
## 1783                 1             1             5
## 1784                 1             2             5
## 1785                 1             2             5
## 1786                 1             2             6
## 1787                 1             2             1
## 1788                 2             2             2
## 1789                 2             2             1
## 1790                 1             2             5
## 1791                 1             1             1
## 1792                 1             2             6
## 1793                 2             2             2
## 1794                 1             1             5
## 1795                 1             2             1
## 1796                 1             1             2
## 1797                 1             2             1
## 1798                 1             2             1
## 1799                 2             2             2
## 1801                 1             2             6
## 1802                 1             1             6
## 1803                 1             2             6
## 1804                 1             2             2
## 1805                 2             2             2
## 1806                 1             1             6
## 1808                 1             2             2
## 1809                 2             2             2
## 1810                 1             2             2
## 1811                 1             2             6
## 1812                 1             2             2
## 1813                 1             2             2
## 1814                 1             1             1
## 1815                 1             1             1
## 1816                 1             2             6
## 1817                 1             2             6
## 1818                 1             2             4
## 1819                 1             2             2
## 1820                 1             2             1
## 1821                 1             2             5
## 1822                 1             2             2
## 1823                 1             1             5
## 1824                 1             1             6
## 1825                 1             2             2
## 1826                 1             2             4
## 1827                 1             2             6
## 1828                 1             2             2
## 1829                 2             2             2
## 1830                 2             2             2
## 1831                 2             2             2
## 1832                 1             1             5
## 1833                 2             2             1
## 1834                 1             1             1
## 1835                 2             2             1
## 1836                 1             1             6
## 1837                 2             2             1
## 1838                 1             2             1
## 1839                 2             2             2
## 1840                 1             2             4
## 1841                 1             2             6
## 1842                 2             2             2
## 1843                 1             2             6
## 1844                 1             2             6
## 1845                 1             2             5
## 1846                 1             2             1
## 1847                 1             2             6
## 1848                 1             2             5
## 1849                 2             2             1
## 1850                 1             2             1
## 1851                 1             2             6
## 1852                 1             1             6
## 1853                 1             2             1
## 1854                 1             2             1
## 1855                 2             2             1
## 1856                 2             2             2
## 1857                 1             2             6
## 1858                 1             1             6
## 1859                 1             2             2
## 1860                 1             2             2
## 1861                 1             2             2
## 1862                 1             1             6
## 1863                 1             2             6
## 1864                 1             1             1
## 1865                 1             2             6
## 1866                 2             2             2
## 1867                 1             2             6
## 1868                 1             1             1
## 1870                 1             2             2
## 1871                 1             2             2
## 1872                 1             1             5
## 1873                 1             2             2
## 1874                 1             2             2
## 1875                 1             2             5
## 1876                 1             2             6
## 1877                 1             2             2
## 1878                 2             1             1
## 1879                 1             1             4
## 1880                 1             2             1
## 1881                 1             1             4
## 1882                 1             1             6
## 1883                 1             2             2
## 1884                 1             1             1
## 1885                 1             2             2
## 1886                 1             2             4
## 1887                 1             2             5
## 1888                 1             2             1
## 1889                 2             2             2
## 1890                 1             1             2
## 1891                 1             1             4
## 1892                 1             1             6
## 1893                 1             1             1
## 1894                 1             2             6
## 1895                 1             2             6
## 1896                 1             2             5
## 1897                 1             1             6
## 1898                 1             1             4
## 1899                 1             2             6
## 1900                 1             2             4
## 1901                 1             2             6
## 1902                 2             2             1
## 1903                 1             2             4
## 1904                 1             1             5
## 1905                 1             1             2
## 1906                 1             1             6
## 1907                 1             2             6
## 1908                 1             2             2
## 1909                 1             2             6
## 1912                 1             1             6
## 1913                 1             1             2
## 1914                 1             1             6
## 1915                 1             2             1
## 1916                 1             1             2
## 1917                 1             2             2
## 1918                 1             2             2
## 1919                 2             2             2
## 1920                 1             2             1
## 1921                 1             1             1
## 1922                 1             1             6
## 1923                 1             2             2
## 1924                 1             2             2
## 1925                 1             2             3
## 1926                 1             2             6
## 1927                 1             2             2
## 1928                 1             2             1
## 1929                 1             2             6
## 1931                 2             2             2
## 1932                 2             2             2
## 1933                 1             1             6
## 1934                 2             2             2
## 1935                 1             1             5
## 1936                 2             2             1
## 1937                 1             2             2
## 1938                 1             1             5
## 1939                 1             2             6
## 1940                 1             2             6
## 1941                 1             2             1
## 1942                 1             1             6
## 1943                 1             2             2
## 1945                 2             2             6
## 1946                 2             2             1
## 1947                 1             2             1
## 1948                 2             2             2
## 1949                 2             1             2
## 1950                 1             1             1
## 1951                 1             2             6
## 1952                 2             2             6
## 1953                 1             1             2
## 1954                 1             2             1
## 1955                 1             2             6
## 1956                 1             2             2
## 1957                 1             2             5
## 1958                 1             2             1
## 1959                 1             1             6
## 1960                 1             2             6
## 1961                 1             2             6
## 1962                 1             2             1
## 1963                 2             2             1
## 1964                 1             2             1
## 1965                 2             2             2
## 1966                 2             2             3
## 1967                 1             2             6
## 1968                 1             2             2
## 1969                 1             2             2
## 1970                 1             1             5
## 1972                 1             2             4
## 1973                 1             1             5
## 1974                 1             2             1
## 1975                 1             2             6
## 1976                 2             2             1
## 1977                 1             1             4
## 1978                 1             2             1
## 1979                 1             2             4
## 1980                 1             2             2
## 1981                 1             2             6
## 1982                 1             2             1
## 1983                 1             2             6
## 1984                 1             2             6
## 1985                 2             2             2
## 1986                 1             2             6
## 1987                 1             2             5
## 1988                 1             2             1
## 1990                 1             1             4
## 1992                 1             1             6
## 1993                 1             1             5
## 1994                 2             2             2
## 1995                 2             2             2
## 1996                 1             2             5
## 1998                 1             2             2
## 1999                 1             1             5
## 2000                 1             2             1
## 2001                 1             2             6
## 2002                 1             1             6
## 2003                 1             1             6
## 2004                 1             2             1
## 2005                 1             1             2
## 2006                 2             1             2
## 2007                 1             1             6
## 2008                 1             1             2
## 2009                 1             2             2
## 2010                 1             2             6
## 2011                 1             2             6
## 2013                 1             2             2
## 2014                 1             2             5
## 2015                 1             2             1
## 2016                 2             2             1
## 2018                 1             1             6
## 2019                 1             2             6
## 2020                 1             1             5
## 2021                 1             2             1
## 2022                 1             2             2
## 2023                 1             2             6
## 2024                 1             2             1
## 2025                 1             2             1
## 2026                 1             1             5
## 2027                 1             2             1
## 2028                 1             1             6
## 2029                 1             1             6
## 2030                 2             1             5
## 2031                 1             1             1
## 2032                 1             2             6
## 2033                 2             2             2
## 2034                 1             2             4
## 2036                 1             2             6
## 2037                 1             1             4
## 2038                 1             2             1
## 2039                 1             2             1
## 2040                 1             1             4
## 2041                 1             2             6
## 2042                 1             2             4
## 2043                 1             1             6
## 2044                 1             2             6
## 2045                 1             2             6
## 2046                 1             2             6
## 2047                 1             2             1
## 2048                 1             2             1
## 2049                 1             2             6
## 2050                 1             2             2
## 2051                 1             2             6
## 2052                 1             2             6
## 2053                 1             2             1
## 2054                 1             2             6
## 2055                 1             1             1
## 2057                 2             2             2
## 2058                 1             1             5
## 2059                 1             2             2
## 2060                 1             1             1
## 2061                 1             1             1
## 2062                 1             2             2
## 2063                 1             1             1
## 2064                 2             2             6
## 2065                 1             2             1
## 2066                 1             2             6
## 2067                 1             2             6
## 2069                 1             2             2
## 2070                 2             2             2
## 2071                 1             2             2
## 2072                 1             2             1
## 2074                 2             2             1
## 2075                 1             1             5
## 2076                 1             1             1
## 2077                 1             2             6
## 2078                 1             2             6
## 2079                 1             2             1
## 2080                 1             1             5
## 2081                 1             2             2
## 2082                 1             1             6
## 2083                 1             2             2
## 2084                 1             1             6
## 2085                 2             2             2
## 2086                 2             2             2
## 2087                 1             2             6
## 2088                 1             1             1
## 2089                 1             2             6
## 2090                 1             1             2
## 2091                 1             1             6
## 2092                 1             1             6
## 2093                 1             1             6
## 2094                 1             2             2
## 2095                 2             2             2
## 2096                 1             2             2
## 2097                 1             2             1
## 2098                 1             1             1
## 2099                 1             1             5
## 2100                 1             1             5
## 2101                 1             1             6
## 2102                 1             2             6
## 2103                 2             2             1
## 2104                 1             2             5
## 2105                 2             2             2
## 2107                 1             2             2
## 2108                 1             1             5
## 2110                 2             2             1
## 2111                 2             2             4
## 2112                 1             2             6
## 2113                 2             2             3
## 2114                 1             1             5
## 2116                 1             1             6
## 2117                 1             2             4
## 2118                 1             1             6
## 2119                 1             2             6
## 2120                 2             2             1
## 2121                 1             1             1
## 2122                 1             2             2
## 2123                 1             2             4
## 2124                 1             1             4
## 2125                 1             2             2
## 2126                 2             2             2
## 2127                 2             2             2
## 2128                 1             1             6
## 2129                 1             2             6
## 2130                 2             2             2
## 2131                 1             2             1
## 2132                 1             2             6
## 2133                 2             2             1
## 2134                 1             2             2
## 2135                 1             2             2
## 2136                 1             1             6
## 2137                 1             2             6
## 2138                 1             2             2
## 2139                 2             2             2
## 2140                 1             2             2
## 2141                 1             1             6
## 2143                 1             2             1
## 2144                 2             2             1
## 2145                 1             1             5
## 2146                 1             1             1
## 2147                 1             2             6
## 2148                 1             1             6
## 2149                 1             1             1
## 2150                 1             1             5
## 2151                 1             2             4
## 2152                 1             2             5
## 2153                 2             2             2
## 2154                 1             2             2
## 2155                 1             1             6
## 2156                 1             1             4
## 2157                 1             1             2
## 2158                 1             2             2
## 2159                 1             1             6
## 2160                 1             1             6
## 2161                 1             2             6
## 2162                 1             1             5
## 2163                 1             1             2
## 2164                 1             2             1
## 2165                 1             2             4
## 2166                 1             2             2
## 2167                 1             2             2
## 2168                 2             2             2
## 2169                 1             1             4
## 2170                 1             2             5
## 2171                 1             2             2
## 2172                 1             1             6
## 2173                 1             2             5
## 2174                 1             2             6
## 2175                 2             2             1
## 2176                 1             1             6
## 2177                 1             2             2
## 2178                 1             2             6
## 2179                 1             1             6
## 2180                 1             1             6
## 2181                 1             1             4
## 2182                 2             1             2
## 2183                 1             1             1
## 2184                 1             1             5
## 2185                 1             2             1
## 2186                 1             2             1
## 2187                 1             2             5
## 2188                 1             1             5
## 2189                 1             2             1
## 2191                 1             1             5
## 2192                 1             1             2
## 2193                 1             2             4
## 2194                 1             2             1
## 2195                 1             1             4
## 2196                 1             1             6
## 2197                 1             1             4
## 2198                 1             2             6
## 2199                 2             2             4
## 2200                 1             2             2
## 2201                 1             1             1
## 2202                 1             1             6
## 2203                 1             1             2
## 2204                 1             2             2
## 2205                 1             2             1
## 2206                 2             2             2
## 2207                 1             2             6
## 2208                 2             2             2
## 2209                 1             1             2
## 2210                 2             2             1
## 2211                 1             2             2
## 2212                 1             1             5
## 2213                 1             1             6
## 2214                 1             1             6
## 2215                 2             2             1
## 2216                 1             1             6
## 2217                 1             1             6
## 2218                 2             2             2
## 2219                 1             1             5
## 2220                 1             2             1
## 2222                 1             1             5
## 2223                 1             2             4
## 2224                 1             2             4
## 2225                 1             2             2
## 2227                 1             2             1
## 2229                 1             2             2
## 2230                 2             2             1
## 2231                 1             1             6
## 2232                 1             2             5
## 2233                 1             2             2
## 2234                 2             2             1
## 2235                 1             2             2
## 2236                 1             2             5
## 2237                 1             1             2
## 2238                 2             2             6
## 2239                 1             1             4
## 2241                 1             2             1
## 2242                 1             2             6
## 2243                 1             1             4
## 2244                 1             2             6
## 2245                 2             2             2
## 2246                 1             1             5
## 2247                 1             2             6
## 2248                 1             2             5
## 2249                 1             2             5
## 2250                 1             2             6
## 2251                 1             1             6
## 2252                 1             1             6
## 2254                 1             2             4
## 2255                 1             2             1
## 2256                 1             1             6
## 2257                 1             1             6
## 2258                 1             2             6
## 2260                 1             2             5
## 2261                 1             2             5
## 2263                 1             2             6
## 2264                 1             2             1
## 2265                 1             2             2
## 2266                 1             2             6
## 2267                 1             1             5
## 2268                 2             2             2
## 2269                 1             2             4
## 2270                 1             2             5
## 2271                 2             2             1
## 2272                 1             2             5
## 2273                 2             2             1
## 2275                 1             1             4
## 2276                 1             2             6
## 2277                 1             2             6
## 2278                 1             2             6
## 2279                 1             2             5
## 2280                 1             1             5
## 2281                 1             2             4
## 2282                 1             1             5
## 2283                 1             1             6
## 2284                 1             1             5
## 2285                 1             2             6
## 2286                 1             1             4
## 2287                 2             2             1
## 2288                 1             1             2
## 2289                 1             2             2
## 2290                 1             2             2
## 2291                 1             1             4
## 2292                 2             2             1
## 2293                 1             2             6
## 2294                 2             2             2
## 2295                 1             1             5
## 2296                 1             1             4
## 2297                 1             2             6
## 2298                 1             2             6
## 2299                 2             2             1
## 2300                 1             2             4
## 2301                 1             2             2
## 2302                 1             1             6
## 2303                 1             1             5
## 2304                 1             1             4
## 2305                 1             2             6
## 2306                 1             2             2
## 2307                 2             2             6
## 2308                 1             2             6
## 2309                 1             1             6
## 2310                 1             2             4
## 2311                 2             2             2
## 2312                 2             2             3
## 2313                 1             2             2
## 2315                 1             2             2
## 2316                 2             2             2
## 2317                 1             2             6
## 2318                 1             2             2
## 2319                 1             2             6
## 2320                 2             2             1
## 2321                 1             1             5
## 2322                 1             2             1
## 2323                 2             2             3
## 2324                 1             2             1
## 2325                 1             2             2
## 2326                 1             2             1
## 2327                 1             1             5
## 2328                 1             1             6
## 2329                 1             2             1
## 2330                 1             2             1
## 2331                 1             2             2
## 2332                 1             2             5
## 2333                 1             2             5
## 2334                 1             1             5
## 2335                 2             2             2
## 2336                 1             2             3
## 2337                 2             2             2
## 2338                 1             2             6
## 2339                 1             2             6
## 2341                 1             2             5
## 2342                 2             2             2
## 2343                 2             1             2
## 2344                 1             2             2
## 2345                 1             1             6
## 2347                 1             2             6
## 2348                 2             2             2
## 2349                 1             1             4
## 2350                 2             2             1
## 2351                 1             1             4
## 2352                 1             2             1
## 2353                 1             2             5
## 2354                 2             2             1
## 2355                 1             1             5
## 2356                 1             1             6
## 2357                 1             2             1
## 2358                 1             2             5
## 2359                 1             2             6
## 2360                 1             1             6
## 2361                 2             1             1
## 2362                 1             2             6
## 2363                 1             2             5
## 2364                 1             2             1
## 2365                 1             1             6
## 2366                 1             1             2
## 2367                 1             1             4
## 2368                 1             2             1
## 2369                 1             2             1
## 2370                 1             2             1
## 2371                 1             2             2
## 2372                 1             2             2
## 2373                 1             2             1
## 2374                 1             1             2
## 2375                 1             1             5
## 2376                 2             2             2
## 2377                 1             2             5
## 2378                 1             2             5
## 2379                 1             2             1
## 2380                 1             1             4
## 2381                 1             1             5
## 2383                 2             2             6
## 2384                 1             2             4
## 2385                 1             2             1
## 2386                 1             1             5
## 2387                 1             1             6
## 2388                 1             2             1
## 2389                 1             2             6
## 2390                 1             2             4
## 2391                 1             2             5
## 2392                 1             1             1
## 2394                 1             2             2
## 2395                 1             1             5
## 2396                 1             2             2
## 2398                 2             2             1
## 2400                 1             2             5
## 2401                 1             1             6
## 2402                 1             2             5
## 2403                 2             2             2
## 2404                 1             1             6
## 2405                 1             2             6
## 2406                 1             2             2
## 2407                 1             1             6
## 2408                 1             2             5
## 2409                 2             2             1
## 2410                 1             2             2
## 2411                 1             2             2
## 2412                 1             2             6
## 2413                 1             2             1
## 2414                 1             2             1
## 2415                 1             2             6
## 2416                 1             2             1
## 2417                 1             2             5
## 2418                 1             2             6
## 2419                 1             2             1
## 2420                 1             2             5
## 2421                 1             2             6
## 2422                 1             2             4
## 2423                 1             2             2
## 2424                 2             2             1
## 2425                 1             2             2
## 2427                 1             1             1
## 2428                 2             2             3
## 2429                 1             2             6
## 2430                 1             1             6
## 2431                 1             2             6
## 2432                 2             2             6
## 2433                 1             2             2
## 2434                 1             2             2
## 2435                 1             1             4
## 2436                 1             1             2
## 2437                 1             2             2
## 2438                 1             2             1
## 2439                 1             2             6
## 2440                 1             2             1
## 2441                 1             1             6
## 2442                 1             2             4
## 2443                 1             1             2
## 2444                 1             1             1
## 2445                 1             1             4
## 2446                 1             2             1
## 2447                 1             2             1
## 2448                 1             2             6
## 2449                 1             2             6
## 2450                 1             2             4
## 2451                 1             2             1
## 2453                 2             1             2
## 2454                 1             2             1
## 2455                 1             2             6
## 2456                 1             2             2
## 2457                 1             1             4
## 2458                 2             2             1
## 2459                 1             2             5
## 2460                 1             1             6
## 2461                 1             1             4
## 2463                 2             2             6
## 2464                 1             2             6
## 2465                 1             2             2
## 2466                 1             1             6
## 2467                 1             2             2
## 2468                 1             2             1
## 2470                 2             2             1
## 2471                 1             2             2
## 2473                 1             1             6
## 2474                 1             2             2
## 2475                 1             1             4
## 2476                 2             2             2
## 2477                 1             2             6
## 2478                 1             1             6
## 2479                 1             2             1
## 2480                 1             2             2
## 2483                 1             2             2
## 2484                 1             2             2
## 2485                 1             2             2
## 2486                 1             2             6
## 2487                 1             1             6
## 2488                 1             2             2
## 2489                 1             1             5
## 2490                 1             2             1
## 2491                 1             2             1
## 2492                 1             2             1
## 2493                 2             2             2
## 2495                 1             2             1
## 2496                 1             1             5
## 2497                 2             2             1
## 2498                 1             2             2
## 2499                 1             2             2
## 2500                 1             1             5
## 2501                 1             2             6
## 2502                 1             2             2
## 2503                 1             2             4
## 2504                 1             2             6
## 2505                 1             1             2
## 2506                 1             2             5
## 2507                 1             2             6
## 2508                 2             2             2
## 2509                 1             1             6
## 2510                 1             2             6
## 2511                 1             2             6
## 2512                 1             1             1
## 2513                 2             2             2
## 2514                 2             2             1
## 2515                 1             2             2
## 2518                 1             2             3
## 2519                 1             2             1
## 2520                 1             2             2
## 2521                 1             2             1
## 2522                 1             2             2
## 2523                 1             2             4
## 2524                 2             2             2
## 2525                 1             2             1
## 2526                 1             1             6
## 2527                 2             2             2
## 2528                 1             2             2
## 2529                 1             1             1
## 2530                 1             2             5
## 2531                 1             1             4
## 2532                 1             2             1
## 2534                 1             1             6
## 2535                 1             2             1
## 2536                 1             2             1
## 2537                 1             2             6
## 2538                 1             2             6
## 2539                 1             1             6
## 2540                 1             1             6
## 2541                 1             2             1
## 2542                 1             2             6
## 2543                 1             2             6
## 2544                 1             1             4
## 2545                 1             2             2
## 2546                 1             2             4
## 2547                 1             1             3
## 2548                 1             1             4
## 2550                 1             2             2
## 2551                 1             1             6
## 2552                 1             1             1
## 2553                 1             2             5
## 2554                 1             2             1
## 2555                 1             2             5
## 2556                 1             2             6
## 2558                 1             1             5
## 2559                 1             1             5
## 2560                 1             1             2
## 2561                 1             2             2
## 2562                 1             2             6
## 2563                 1             1             2
## 2564                 2             2             1
## 2565                 1             2             1
## 2566                 1             1             6
## 2567                 1             2             2
## 2568                 2             1             2
## 2569                 1             2             2
## 2570                 1             2             5
## 2571                 1             2             1
## 2572                 1             2             4
## 2573                 1             2             2
## 2574                 2             2             2
## 2575                 1             2             1
## 2576                 1             2             2
## 2577                 1             2             2
## 2578                 1             2             6
## 2579                 2             2             2
## 2580                 1             2             6
## 2581                 1             2             1
## 2582                 1             1             6
## 2583                 1             2             6
## 2584                 1             2             6
## 2585                 1             2             2
## 2586                 1             1             5
## 2587                 1             2             3
## 2588                 2             2             1
## 2589                 1             2             6
## 2590                 1             2             1
## 2591                 1             2             2
## 2592                 1             2             2
## 2593                 1             1             5
## 2594                 1             2             1
## 2595                 1             2             5
## 2596                 1             2             2
## 2598                 2             2             2
## 2599                 2             2             2
## 2600                 1             2             1
## 2601                 1             2             2
## 2602                 1             2             1
## 2603                 1             2             1
## 2604                 1             2             2
## 2605                 1             2             6
## 2606                 1             2             2
## 2607                 1             2             5
## 2608                 1             2             2
## 2609                 1             1             4
## 2610                 1             1             2
## 2611                 1             1             6
## 2612                 1             2             6
## 2613                 1             2             6
## 2614                 1             2             2
## 2615                 1             1             5
## 2616                 1             1             1
## 2617                 1             2             2
## 2618                 2             2             1
## 2619                 1             1             4
## 2620                 1             1             1
## 2621                 1             1             6
## 2622                 1             2             6
## 2623                 1             2             2
## 2624                 1             2             1
## 2625                 2             2             5
## 2626                 1             2             2
## 2627                 1             2             3
## 2628                 1             2             4
## 2629                 1             2             2
## 2630                 1             2             4
## 2631                 2             2             2
## 2632                 1             2             2
## 2633                 1             1             4
## 2634                 1             1             5
## 2635                 1             2             4
## 2636                 1             1             4
## 2637                 1             2             2
## 2638                 1             1             5
## 2639                 1             2             6
## 2640                 1             1             4
## 2641                 1             2             2
## 2642                 1             1             1
## 2643                 1             2             6
## 2644                 1             1             4
## 2645                 1             2             6
## 2646                 1             2             6
## 2648                 1             2             1
## 2649                 1             2             5
## 2650                 1             1             6
## 2651                 1             1             4
## 2652                 1             2             2
## 2653                 2             2             2
## 2654                 1             2             2
## 2655                 1             2             1
## 2656                 1             2             2
## 2657                 2             2             2
## 2659                 1             2             2
## 2660                 1             2             6
## 2661                 1             2             4
## 2662                 1             2             6
## 2665                 2             2             2
## 2666                 1             2             2
## 2667                 1             1             4
## 2669                 1             1             6
## 2670                 1             2             2
## 2672                 1             1             5
## 2673                 1             2             5
## 2674                 2             2             2
## 2675                 1             1             1
## 2676                 1             2             6
## 2677                 2             2             2
## 2678                 1             2             6
## 2679                 1             2             2
## 2680                 1             2             2
## 2681                 1             2             2
## 2682                 1             2             2
## 2684                 1             2             2
## 2685                 1             2             1
## 2686                 1             2             2
## 2687                 1             2             1
## 2688                 1             2             5
## 2689                 1             2             2
## 2690                 1             2             2
## 2691                 1             2             2
## 2693                 1             1             5
## 2695                 1             2             2
## 2696                 1             2             6
## 2697                 1             2             2
## 2698                 1             2             3
## 2699                 1             1             6
## 2700                 1             2             1
## 2701                 1             1             6
## 2702                 1             2             5
## 2703                 1             2             6
## 2704                 1             2             1
## 2705                 1             2             6
## 2706                 1             2             6
## 2707                 1             1             4
## 2708                 1             1             6
## 2709                 1             2             2
## 2710                 1             2             2
## 2711                 1             2             3
## 2713                 2             2             2
## 2714                 1             2             4
## 2715                 1             1             5
## 2716                 1             2             4
## 2717                 1             1             4
## 2718                 1             2             2
## 2720                 1             2             6
## 2721                 1             2             2
## 2722                 1             2             2
## 2723                 2             2             1
## 2724                 1             2             6
## 2725                 1             1             4
## 2726                 1             1             1
## 2727                 1             1             6
## 2728                 1             2             2
## 2729                 1             2             2
## 2730                 1             2             2
## 2731                 1             1             6
## 2732                 2             2             2
## 2733                 1             2             5
## 2734                 1             1             1
## 2735                 2             2             2
## 2737                 1             2             2
## 2738                 2             2             3
## 2739                 1             2             2
## 2740                 2             2             2
## 2741                 1             1             6
## 2742                 1             2             6
## 2743                 2             2             2
## 2744                 1             2             1
## 2745                 1             2             2
## 2746                 1             2             6
## 2747                 1             1             6
## 2748                 1             2             1
## 2749                 1             2             1
## 2750                 1             1             4
## 2751                 1             1             1
## 2752                 1             2             6
## 2753                 1             2             6
## 2755                 1             2             6
## 2756                 1             1             6
## 2757                 1             2             5
## 2760                 2             2             2
## 2761                 1             2             6
## 2762                 1             1             6
## 2763                 1             2             1
## 2764                 1             2             2
## 2765                 1             1             5
## 2766                 1             2             6
## 2767                 1             1             5
## 2768                 1             2             1
## 2769                 1             2             1
## 2770                 2             2             1
## 2771                 1             2             1
## 2772                 1             2             6
## 2773                 1             2             6
## 2774                 1             1             6
## 2775                 1             1             5
## 2776                 1             2             1
## 2777                 1             2             4
## 2778                 2             2             1
## 2779                 1             2             5
## 2780                 1             1             6
## 2781                 2             2             2
## 2782                 1             1             6
## 2783                 1             1             4
## 2784                 1             1             5
## 2785                 1             2             1
## 2786                 1             1             2
## 2787                 1             2             4
## 2788                 2             2             6
## 2789                 1             2             1
## 2790                 1             1             5
## 2791                 1             2             1
## 2792                 1             2             2
## 2793                 1             2             4
## 2794                 1             1             5
## 2795                 1             2             6
## 2796                 2             2             3
## 2797                 1             2             6
## 2798                 1             2             6
## 2799                 1             2             6
## 2800                 1             2             2
## 2801                 1             2             6
## 2802                 2             2             6
## 2803                 1             1             1
## 2804                 1             2             2
## 2805                 1             2             2
## 2806                 1             2             3
## 2807                 1             2             2
## 2808                 1             1             5
## 2809                 2             2             2
## 2810                 1             2             5
## 2811                 1             2             6
## 2813                 1             1             2
## 2814                 1             2             6
## 2815                 1             2             6
## 2816                 2             2             6
## 2817                 1             1             4
## 2818                 1             2             2
## 2821                 1             2             2
## 2822                 1             2             6
## 2823                 1             1             5
## 2824                 1             2             1
## 2825                 1             2             2
## 2826                 1             1             6
## 2827                 1             2             1
## 2828                 2             2             2
## 2829                 1             1             4
## 2831                 1             2             3
## 2832                 1             2             6
## 2833                 1             1             1
## 2834                 1             2             2
## 2835                 1             2             6
## 2836                 1             2             2
## 2837                 2             2             2
## 2838                 1             2             4
## 2839                 1             2             2
## 2840                 1             1             5
## 2841                 1             2             6
## 2842                 2             1             2
## 2843                 1             1             6
## 2844                 2             1             2
## 2845                 1             2             6
## 2846                 1             2             1
## 2848                 1             2             2
## 2850                 2             2             2
## 2851                 1             2             5
## 2852                 1             2             5
## 2853                 1             2             2
## 2854                 1             2             6
## 2855                 1             1             6
## 2856                 1             1             6
## 2857                 1             1             6
## 2858                 2             1             2
## 2859                 2             2             1
## 2860                 1             1             5
## 2862                 1             2             5
## 2863                 2             2             1
## 2864                 1             2             1
## 2865                 1             1             5
## 2866                 2             2             2
## 2868                 1             2             5
## 2869                 2             2             1
## 2870                 2             2             6
## 2871                 1             2             6
## 2872                 1             2             2
## 2874                 1             2             5
## 2875                 1             1             4
## 2876                 1             1             6
## 2877                 1             2             1
## 2878                 2             2             2
## 2879                 2             2             1
## 2880                 1             1             1
## 2881                 1             2             6
## 2882                 1             1             6
## 2883                 1             2             2
## 2885                 2             2             2
## 2886                 1             1             1
## 2887                 1             2             2
## 2888                 2             2             2
## 2889                 1             2             2
## 2890                 1             2             1
## 2891                 1             2             6
## 2892                 2             2             1
## 2893                 1             2             6
## 2894                 1             2             1
## 2895                 1             2             1
## 2896                 1             1             5
## 2897                 1             2             6
## 2898                 1             1             5
## 2899                 1             2             2
## 2900                 1             1             6
## 2901                 1             2             2
## 2902                 2             2             2
## 2903                 1             1             4
## 2904                 2             2             2
## 2905                 1             1             6
## 2906                 1             1             6
## 2909                 1             1             5
## 2910                 1             1             5
## 2911                 1             2             4
## 2912                 1             2             1
## 2913                 2             2             2
## 2914                 1             2             6
## 2915                 1             2             6
## 2916                 1             2             6
## 2917                 1             2             2
## 2918                 1             2             6
## 2919                 1             2             2
## 2921                 1             2             1
## 2922                 1             1             6
## 2923                 1             1             5
## 2924                 1             2             5
## 2925                 1             1             5
## 2926                 1             2             6
## 2927                 1             1             5
## 2928                 1             2             2
## 2929                 1             1             1
## 2930                 1             2             2
## 2931                 2             2             2
## 2932                 1             2             5
## 2933                 2             2             2
## 2934                 1             2             6
## 2935                 1             1             6
## 2936                 1             2             1
## 2937                 1             2             2
## 2938                 1             2             6
## 2939                 1             2             6
## 2940                 2             2             2
## 2941                 1             2             2
## 2942                 1             1             6
## 2943                 1             2             5
## 2944                 1             1             6
## 2946                 1             1             6
## 2947                 2             1             3
## 2948                 1             2             1
## 2949                 2             1             5
## 2950                 1             2             1
## 2951                 1             2             6
## 2952                 1             2             4
## 2953                 1             2             2
## 2954                 1             2             4
## 2955                 1             2             6
## 2956                 1             2             6
## 2957                 1             2             2
## 2958                 2             2             2
## 2959                 1             2             1
## 2960                 1             1             5
## 2961                 1             2             4
## 2962                 1             1             6
## 2964                 1             2             6
## 2965                 1             1             6
## 2966                 2             2             2
## 2967                 1             2             5
## 2968                 1             2             6
## 2969                 1             1             5
## 2970                 1             2             2
## 2971                 2             2             2
## 2972                 2             2             2
## 2973                 1             1             6
## 2974                 1             1             1
## 2975                 1             1             4
## 2976                 1             2             2
## 2977                 1             2             2
## 2978                 1             2             6
## 2980                 1             2             4
## 2982                 2             2             2
## 2983                 1             1             6
## 2984                 2             2             5
## 2985                 1             2             1
## 2986                 1             2             2
## 2987                 1             2             2
## 2988                 1             2             5
## 2989                 1             2             1
## 2990                 1             2             1
## 2991                 1             2             6
## 2992                 1             2             2
## 2993                 2             2             1
## 2994                 1             2             6
## 2995                 1             2             6
## 2996                 2             2             2
## 2997                 1             2             1
## 2998                 1             2             2
## 2999                 2             2             2
## 3000                 1             2             1
## 3002                 1             2             2
## 3003                 2             2             6
## 3004                 1             1             6
## 3005                 1             2             1
## 3006                 1             1             5
## 3007                 1             2             2
## 3008                 1             2             2
## 3009                 1             1             6
## 3010                 1             2             2
## 3011                 1             2             1
## 3012                 1             2             1
## 3013                 2             2             1
## 3015                 2             2             1
## 3016                 1             1             4
## 3017                 2             2             2
## 3018                 1             2             5
## 3019                 1             2             6
## 3020                 2             2             2
## 3021                 1             2             2
## 3022                 1             1             2
## 3023                 1             2             4
## 3024                 1             2             1
## 3025                 2             2             6
## 3027                 1             2             6
## 3028                 1             2             2
## 3029                 1             2             6
## 3030                 1             2             2
## 3031                 1             2             2
## 3032                 1             2             2
## 3033                 1             2             2
## 3034                 1             1             2
## 3035                 2             2             2
## 3036                 2             2             1
## 3037                 2             2             2
## 3038                 1             2             1
## 3039                 1             2             2
## 3040                 2             2             2
## 3041                 1             1             5
## 3042                 2             2             2
## 3044                 1             2             1
## 3045                 1             2             5
## 3046                 1             1             2
## 3047                 1             1             5
## 3048                 1             2             2
## 3049                 1             2             5
## 3050                 1             2             1
## 3051                 1             2             2
## 3053                 1             1             6
## 3054                 1             2             4
## 3055                 1             1             6
## 3056                 1             1             6
## 3057                 1             1             4
## 3058                 1             2             6
## 3059                 2             2             2
## 3060                 1             2             6
## 3061                 1             1             2
## 3062                 1             2             6
## 3063                 1             1             5
## 3064                 2             2             5
## 3065                 1             1             1
## 3066                 1             2             1
## 3067                 1             2             2
## 3068                 1             1             1
## 3069                 2             2             2
## 3070                 1             2             6
## 3071                 1             1             5
## 3072                 1             2             1
## 3073                 1             2             1
## 3074                 1             1             2
## 3075                 1             2             2
## 3076                 2             1             2
## 3078                 1             1             5
## 3079                 1             1             1
## 3080                 1             1             5
## 3081                 1             1             6
## 3082                 1             2             2
## 3084                 1             2             2
## 3085                 1             2             4
## 3086                 2             2             2
## 3087                 1             2             6
## 3088                 1             2             1
## 3090                 1             2             5
## 3091                 1             2             2
## 3092                 1             2             6
## 3093                 1             1             6
## 3094                 1             1             5
## 3095                 1             1             5
## 3096                 1             1             5
## 3097                 1             2             6
## 3098                 1             2             1
## 3099                 1             2             1
## 3100                 1             2             2
## 3101                 1             2             1
## 3102                 1             2             6
## 3103                 1             1             5
## 3104                 2             2             1
## 3105                 1             1             5
## 3106                 1             2             1
## 3107                 1             2             6
## 3108                 1             1             1
## 3109                 2             2             1
## 3110                 1             1             6
## 3111                 1             2             3
## 3112                 1             1             4
## 3113                 1             2             1
## 3114                 2             2             2
## 3115                 1             2             1
## 3116                 2             2             2
## 3117                 1             2             6
## 3118                 1             1             6
## 3119                 2             2             2
## 3120                 1             2             1
## 3121                 2             2             2
## 3122                 1             1             5
## 3123                 2             2             2
## 3124                 1             2             1
## 3126                 1             1             1
## 3127                 1             2             1
## 3128                 1             2             1
## 3129                 1             2             1
## 3130                 1             2             3
## 3131                 1             2             2
## 3132                 1             1             6
## 3133                 1             1             6
## 3134                 1             2             1
## 3136                 1             2             2
## 3137                 1             2             1
## 3138                 2             2             2
## 3139                 1             1             6
## 3140                 1             2             6
## 3141                 2             2             2
## 3142                 1             2             2
## 3143                 1             1             6
## 3144                 2             1             1
## 3145                 1             2             6
## 3146                 1             2             6
## 3147                 2             2             2
## 3148                 2             2             1
## 3149                 1             1             2
## 3150                 1             1             6
## 3151                 1             1             5
## 3152                 1             2             6
## 3153                 2             2             2
## 3154                 1             1             5
## 3155                 1             2             1
## 3156                 1             2             6
## 3157                 1             2             2
## 3158                 1             2             2
## 3159                 1             2             1
## 3160                 1             2             6
## 3161                 1             2             2
## 3162                 2             2             1
## 3163                 1             1             6
## 3164                 1             2             2
## 3165                 2             2             2
## 3166                 1             1             6
## 3167                 1             2             2
## 3168                 1             2             2
## 3169                 1             1             5
## 3170                 1             1             6
## 3171                 1             2             6
## 3172                 1             2             5
## 3173                 1             2             2
## 3174                 1             2             2
## 3175                 1             2             6
## 3177                 1             1             5
## 3178                 1             2             6
## 3179                 1             2             5
## 3180                 1             2             2
## 3181                 1             1             1
## 3182                 1             1             4
## 3183                 1             1             6
## 3184                 1             2             4
## 3185                 2             2             2
## 3186                 1             2             2
## 3187                 1             2             3
## 3188                 2             2             1
## 3189                 1             2             6
## 3190                 1             2             2
## 3191                 1             2             4
## 3192                 1             2             2
## 3193                 2             2             2
## 3194                 2             2             2
## 3195                 1             1             5
## 3196                 1             2             4
## 3197                 1             2             2
## 3198                 1             1             1
## 3199                 1             1             6
## 3200                 1             2             4
## 3201                 2             2             2
## 3202                 1             1             1
## 3203                 1             1             4
## 3204                 1             2             6
## 3205                 1             1             2
## 3206                 1             2             6
## 3207                 1             2             1
## 3208                 1             2             2
## 3210                 1             2             2
## 3211                 1             1             4
## 3212                 1             2             2
## 3213                 1             2             6
## 3215                 1             2             1
## 3216                 1             1             6
## 3217                 1             1             6
## 3218                 1             2             6
## 3219                 1             1             6
## 3221                 1             1             6
## 3222                 1             2             6
## 3223                 1             1             5
## 3224                 1             1             4
## 3225                 2             2             2
## 3226                 2             2             2
## 3227                 1             1             1
## 3228                 1             2             2
## 3229                 1             1             6
## 3230                 2             2             1
## 3231                 1             2             1
## 3232                 1             1             5
## 3233                 1             2             1
## 3234                 2             2             3
## 3235                 1             2             6
## 3236                 1             1             2
## 3238                 1             2             6
## 3239                 1             2             2
## 3240                 1             2             1
## 3241                 1             2             1
## 3242                 1             2             1
## 3243                 1             2             4
## 3244                 1             2             6
## 3245                 1             1             5
## 3246                 1             2             2
## 3247                 2             2             2
## 3248                 1             2             6
## 3249                 1             2             2
## 3250                 1             1             4
## 3251                 1             2             5
## 3252                 1             1             6
## 3253                 1             1             4
## 3254                 1             1             6
## 3255                 1             2             6
## 3256                 1             2             1
## 3257                 1             1             6
## 3258                 1             2             1
## 3259                 1             2             5
## 3260                 1             2             2
## 3261                 1             2             6
## 3262                 1             1             2
## 3263                 2             2             2
## 3264                 1             2             6
## 3266                 1             2             5
## 3267                 1             2             2
## 3268                 1             2             1
## 3269                 2             2             2
## 3270                 1             2             1
## 3271                 1             2             4
## 3272                 2             2             1
## 3273                 1             2             5
## 3274                 1             1             1
## 3275                 1             2             6
## 3276                 1             2             3
## 3277                 2             2             1
## 3278                 1             2             5
## 3279                 1             2             6
## 3280                 1             2             2
## 3282                 1             2             6
## 3283                 2             2             1
## 3284                 1             2             6
## 3285                 1             1             6
## 3286                 2             2             2
## 3287                 1             2             1
## 3288                 1             2             2
## 3289                 2             2             2
## 3290                 1             2             1
## 3291                 2             2             6
## 3292                 1             2             2
## 3293                 1             2             6
## 3294                 2             2             2
## 3295                 1             2             1
## 3296                 1             1             6
## 3297                 1             2             1
## 3298                 1             2             2
## 3299                 2             2             6
## 3300                 2             2             2
## 3301                 1             2             3
## 3302                 1             2             2
## 3303                 2             2             1
## 3305                 1             2             5
## 3306                 1             2             5
## 3307                 1             2             2
## 3308                 1             2             1
## 3309                 1             2             6
## 3310                 1             2             1
## 3312                 1             2             4
## 3313                 1             1             6
## 3314                 1             2             2
## 3315                 1             2             2
## 3316                 1             2             3
## 3317                 1             1             5
## 3318                 1             1             4
## 3319                 1             1             6
## 3320                 1             2             5
## 3321                 1             1             5
## 3322                 1             1             6
## 3323                 1             2             2
## 3324                 1             1             6
## 3325                 2             2             2
## 3326                 1             1             5
## 3327                 2             2             2
## 3328                 1             1             1
## 3330                 1             2             6
## 3331                 1             2             2
## 3332                 1             2             1
## 3334                 2             2             2
## 3335                 1             1             1
## 3336                 1             1             1
## 3337                 1             1             1
## 3338                 2             1             1
## 3339                 1             1             5
## 3340                 1             1             4
## 3341                 1             2             6
## 3342                 1             2             6
## 3343                 1             1             6
## 3344                 1             1             6
## 3346                 1             2             2
## 3347                 1             2             6
## 3348                 1             2             1
## 3349                 1             2             2
## 3350                 1             1             2
## 3351                 1             1             5
## 3352                 2             1             2
## 3353                 1             2             2
## 3354                 2             2             1
## 3355                 2             2             1
## 3356                 1             2             1
## 3357                 1             1             5
## 3358                 1             2             2
## 3359                 1             2             6
## 3360                 2             2             6
## 3361                 1             2             6
## 3362                 2             2             1
## 3363                 1             1             4
## 3364                 1             1             4
## 3365                 2             2             1
## 3366                 1             2             4
## 3367                 1             2             6
## 3368                 1             1             3
## 3369                 1             2             2
## 3370                 2             2             2
## 3371                 1             1             5
## 3372                 1             2             2
## 3373                 1             2             2
## 3374                 2             2             1
## 3376                 1             1             6
## 3377                 1             2             2
## 3378                 1             2             6
## 3379                 1             1             6
## 3380                 1             2             3
## 3381                 2             1             1
## 3382                 1             2             6
## 3383                 1             2             1
## 3384                 1             2             3
## 3385                 1             2             1
## 3386                 2             2             1
## 3387                 1             2             2
## 3388                 1             1             6
## 3389                 2             1             1
## 3391                 1             2             1
## 3392                 1             1             6
## 3393                 1             2             2
## 3394                 1             2             2
## 3395                 1             1             4
## 3396                 1             1             5
## 3398                 1             2             6
## 3399                 1             1             4
## 3400                 1             2             2
## 3401                 1             2             4
## 3402                 2             2             1
## 3403                 1             2             1
## 3404                 1             1             2
## 3405                 1             2             6
## 3406                 1             2             2
## 3407                 1             2             4
## 3408                 1             2             1
## 3409                 1             1             5
## 3410                 1             2             1
## 3411                 1             2             2
## 3413                 1             1             6
## 3414                 1             2             1
## 3415                 1             2             5
## 3416                 1             2             2
## 3417                 1             2             4
## 3418                 2             2             6
## 3419                 1             1             6
## 3422                 1             2             1
## 3423                 2             2             2
## 3424                 1             2             5
## 3425                 1             2             6
## 3426                 2             2             2
## 3428                 1             2             2
## 3429                 1             2             6
## 3430                 1             2             6
## 3431                 2             2             2
## 3432                 1             2             2
## 3433                 1             1             4
## 3434                 1             1             1
## 3435                 1             2             6
## 3436                 1             1             4
## 3437                 1             2             2
## 3438                 1             2             1
## 3439                 1             2             6
## 3440                 1             1             6
## 3441                 1             2             1
## 3442                 1             2             2
## 3443                 1             2             6
## 3444                 1             2             1
## 3445                 2             2             2
## 3446                 1             1             6
## 3447                 2             2             6
## 3448                 2             2             2
## 3449                 1             2             2
## 3450                 1             2             6
## 3451                 1             1             1
## 3452                 1             2             2
## 3453                 2             2             2
## 3454                 1             2             1
## 3455                 1             2             2
## 3456                 1             1             6
## 3457                 1             1             4
## 3458                 1             2             6
## 3459                 1             2             5
## 3460                 2             2             2
## 3461                 1             2             6
## 3462                 1             1             4
## 3463                 1             1             6
## 3464                 1             2             6
## 3465                 1             1             6
## 3466                 2             2             1
## 3467                 1             1             6
## 3468                 1             2             6
## 3469                 1             2             1
## 3470                 2             2             2
## 3471                 2             1             1
## 3472                 1             1             6
## 3473                 1             1             6
## 3474                 1             2             6
## 3476                 1             1             6
## 3477                 2             2             2
## 3478                 1             2             6
## 3479                 1             2             1
## 3480                 1             1             4
## 3481                 1             1             2
## 3483                 1             2             2
## 3484                 1             1             2
## 3485                 1             2             1
## 3486                 1             2             2
## 3487                 1             1             5
## 3489                 1             1             6
## 3490                 1             2             2
## 3491                 2             2             2
## 3492                 1             1             6
## 3493                 1             2             2
## 3494                 2             1             1
## 3495                 1             2             2
## 3496                 1             2             6
## 3497                 1             1             4
## 3498                 1             2             6
## 3499                 1             2             5
## 3500                 1             2             2
## 3501                 1             1             1
## 3502                 1             2             2
## 3503                 1             1             1
## 3504                 2             2             2
## 3505                 1             2             2
## 3506                 2             2             2
## 3507                 1             2             2
## 3508                 1             2             1
## 3510                 1             2             4
## 3511                 1             2             6
## 3512                 1             2             1
## 3513                 1             1             1
## 3514                 1             2             6
## 3515                 1             1             2
## 3516                 1             1             2
## 3517                 1             2             2
## 3518                 1             1             4
## 3519                 1             2             4
## 3520                 2             2             6
## 3521                 1             2             6
## 3522                 1             2             6
## 3523                 1             2             2
## 3524                 2             2             2
## 3525                 1             2             2
## 3526                 1             1             6
## 3527                 1             1             1
## 3528                 1             2             6
## 3529                 1             1             6
## 3530                 1             1             4
## 3531                 1             2             1
## 3532                 1             2             2
## 3533                 1             1             2
## 3534                 1             2             1
## 3535                 1             1             6
## 3536                 1             2             1
## 3537                 1             2             6
## 3538                 1             1             2
## 3539                 1             2             4
## 3540                 1             2             6
## 3541                 1             2             6
## 3542                 1             2             1
## 3544                 2             2             1
## 3545                 1             1             5
## 3546                 1             2             6
## 3547                 1             2             6
## 3548                 1             2             2
## 3549                 1             1             4
## 3550                 1             2             1
## 3551                 1             2             1
## 3552                 1             2             1
## 3553                 1             2             2
## 3554                 1             2             2
## 3555                 1             2             1
## 3556                 1             1             6
## 3557                 1             2             6
## 3558                 1             2             2
## 3559                 1             2             2
## 3560                 1             2             6
## 3561                 1             2             5
## 3562                 2             2             2
## 3563                 1             1             6
## 3564                 2             1             6
## 3565                 2             2             2
## 3567                 1             2             3
## 3568                 1             2             3
## 3569                 1             2             2
## 3570                 1             2             6
## 3571                 2             2             2
## 3573                 1             1             5
## 3574                 1             1             5
## 3575                 1             2             2
## 3576                 1             1             6
## 3577                 1             2             6
## 3578                 1             1             5
## 3579                 1             2             5
## 3580                 1             1             6
## 3581                 1             2             6
## 3582                 1             2             2
## 3583                 1             2             6
## 3584                 1             2             2
## 3585                 2             1             2
## 3586                 1             2             2
## 3587                 1             1             4
## 3588                 1             1             6
## 3589                 1             1             4
## 3590                 1             2             5
## 3591                 1             1             1
## 3592                 1             2             6
## 3593                 2             2             1
## 3594                 1             1             4
## 3595                 2             2             2
## 3596                 1             1             5
## 3597                 2             2             2
## 3598                 1             1             6
## 3599                 1             1             6
## 3600                 1             2             5
## 3601                 1             1             4
## 3602                 1             1             6
## 3603                 1             2             2
## 3604                 1             2             6
## 3605                 1             2             6
## 3606                 1             2             6
## 3607                 1             1             6
## 3608                 1             2             2
## 3609                 1             1             4
## 3610                 1             2             2
## 3611                 1             2             2
## 3612                 1             2             6
## 3613                 2             2             2
## 3614                 1             1             2
## 3615                 1             1             6
## 3616                 1             1             6
## 3617                 1             1             5
## 3618                 1             2             4
## 3619                 2             2             2
## 3620                 1             2             2
## 3621                 1             1             4
## 3622                 1             2             6
## 3623                 2             2             1
## 3624                 1             2             2
## 3625                 1             1             5
## 3627                 1             2             2
## 3628                 1             2             2
## 3629                 1             1             6
## 3630                 2             2             1
## 3631                 2             1             4
## 3632                 1             1             6
## 3633                 1             1             2
## 3634                 1             2             2
## 3635                 1             2             1
## 3637                 1             2             6
## 3638                 1             2             6
## 3639                 1             2             6
## 3640                 1             2             4
## 3641                 2             2             2
## 3642                 2             2             1
## 3643                 1             2             2
## 3644                 1             2             2
## 3645                 1             2             2
## 3646                 1             2             1
## 3647                 1             2             5
## 3648                 1             2             2
## 3649                 1             2             6
## 3650                 1             2             6
## 3652                 1             2             1
## 3653                 1             2             6
## 3654                 1             1             4
## 3655                 1             1             6
## 3656                 2             2             2
## 3657                 2             2             1
## 3658                 1             2             2
## 3659                 1             1             6
## 3660                 1             2             1
## 3661                 2             2             1
## 3662                 1             1             5
## 3663                 1             2             4
## 3664                 1             2             1
## 3665                 1             1             4
## 3667                 1             2             2
## 3668                 1             2             5
## 3670                 1             1             5
## 3671                 1             2             4
## 3672                 1             1             5
## 3673                 1             2             1
## 3674                 1             1             4
## 3675                 1             1             6
## 3676                 1             2             1
## 3677                 1             2             6
## 3678                 1             2             6
## 3679                 1             2             6
## 3680                 1             2             2
## 3681                 2             2             2
## 3682                 2             2             2
## 3683                 1             2             2
## 3684                 1             2             2
## 3685                 1             2             6
## 3686                 1             2             5
## 3687                 1             2             6
## 3688                 1             1             2
## 3689                 2             2             6
## 3690                 1             2             6
## 3691                 1             2             4
## 3692                 2             2             6
## 3694                 1             2             2
## 3695                 1             2             6
## 3696                 1             2             6
## 3697                 2             2             2
## 3698                 1             2             2
## 3699                 2             2             2
## 3700                 1             1             5
## 3701                 1             1             4
## 3702                 1             1             4
## 3703                 2             2             2
## 3704                 1             2             2
## 3706                 1             1             6
## 3707                 1             2             1
## 3708                 2             2             2
## 3709                 2             2             2
## 3710                 1             2             2
## 3711                 1             2             6
## 3712                 2             2             2
## 3713                 1             2             6
## 3714                 1             2             1
## 3715                 2             1             2
## 3716                 1             2             2
## 3717                 1             2             2
## 3718                 2             2             2
## 3719                 1             1             5
## 3720                 1             2             1
## 3721                 1             2             6
## 3722                 1             2             1
## 3723                 1             1             1
## 3724                 1             2             6
## 3725                 1             1             5
## 3726                 1             1             6
## 3727                 1             2             2
## 3728                 1             1             6
## 3729                 2             2             2
## 3730                 1             1             5
## 3731                 1             2             6
## 3732                 1             2             1
## 3733                 2             2             2
## 3734                 1             2             2
## 3736                 1             1             6
## 3737                 1             2             2
## 3738                 1             2             6
## 3739                 1             2             6
## 3740                 1             1             6
## 3741                 1             2             5
## 3742                 1             1             4
## 3743                 2             1             1
## 3744                 1             1             2
## 3745                 1             2             1
## 3746                 2             2             2
## 3747                 1             2             2
## 3748                 1             1             5
## 3749                 1             2             2
## 3750                 1             2             4
## 3751                 2             2             2
## 3752                 1             2             5
## 3753                 1             1             5
## 3754                 2             2             2
## 3755                 1             2             2
## 3756                 1             1             6
## 3757                 2             2             5
## 3758                 1             1             6
## 3759                 1             2             6
## 3760                 2             2             2
## 3761                 1             2             4
## 3762                 1             1             6
## 3763                 1             2             2
## 3764                 1             2             1
## 3765                 1             2             6
## 3766                 2             2             1
## 3767                 1             1             4
## 3768                 1             2             2
## 3769                 1             2             6
## 3770                 1             1             4
## 3771                 2             1             4
## 3774                 1             1             6
## 3775                 1             1             5
## 3776                 1             2             1
## 3777                 1             2             1
## 3778                 1             1             5
## 3779                 2             2             3
## 3780                 2             2             2
## 3781                 1             2             2
## 3782                 1             1             4
## 3783                 1             1             1
## 3784                 1             2             1
## 3785                 1             1             4
## 3786                 1             2             2
## 3787                 1             2             6
## 3788                 1             2             2
## 3789                 1             1             5
## 3790                 1             1             2
## 3791                 2             1             1
## 3792                 1             2             2
## 3793                 1             2             4
## 3794                 1             2             6
## 3795                 1             2             2
## 3796                 1             2             6
## 3797                 1             2             1
## 3798                 1             2             5
## 3800                 1             2             2
## 3801                 1             2             6
## 3802                 1             1             1
## 3803                 1             2             3
## 3804                 1             1             1
## 3806                 1             2             1
## 3807                 1             1             6
## 3808                 1             2             1
## 3809                 1             1             5
## 3810                 2             2             3
## 3811                 1             2             2
## 3812                 1             2             1
## 3813                 2             2             1
## 3814                 1             2             1
## 3815                 1             1             4
## 3816                 1             2             6
## 3817                 1             2             5
## 3818                 1             1             5
## 3819                 1             2             2
## 3820                 1             1             5
## 3821                 1             2             2
## 3822                 1             2             2
## 3823                 1             2             2
## 3824                 1             2             6
## 3825                 1             1             4
## 3826                 1             1             2
## 3827                 1             1             2
## 3828                 1             1             6
## 3829                 1             1             6
## 3830                 1             2             6
## 3831                 2             2             2
## 3832                 1             2             5
## 3833                 1             1             2
## 3834                 2             2             2
## 3835                 2             2             2
## 3836                 1             2             6
## 3837                 1             2             2
## 3838                 2             2             1
## 3839                 1             2             3
## 3840                 1             2             6
## 3841                 1             2             6
## 3842                 2             2             2
## 3843                 1             2             6
## 3844                 1             2             1
## 3846                 1             1             1
## 3847                 1             2             2
## 3848                 1             1             4
## 3849                 1             1             4
## 3850                 1             2             2
## 3851                 1             2             1
## 3852                 1             2             1
## 3853                 1             1             6
## 3854                 1             1             6
## 3855                 2             2             2
## 3856                 1             2             2
## 3857                 1             2             2
## 3858                 1             1             6
## 3859                 1             2             2
## 3860                 1             2             1
## 3861                 1             2             2
## 3862                 1             2             1
## 3863                 2             2             2
## 3864                 1             2             5
## 3865                 2             2             2
## 3866                 2             2             2
## 3867                 1             2             3
## 3868                 1             2             6
## 3869                 1             1             5
## 3870                 1             2             1
## 3871                 1             2             6
## 3872                 1             1             6
## 3873                 1             1             1
## 3874                 1             1             6
## 3875                 1             1             6
## 3876                 1             2             2
## 3877                 1             2             6
## 3878                 1             2             6
## 3879                 1             2             1
## 3880                 1             2             1
## 3881                 1             2             2
## 3882                 1             1             1
## 3883                 1             2             2
## 3884                 1             2             6
## 3885                 1             2             1
## 3886                 1             2             6
## 3887                 1             2             1
## 3888                 1             2             2
## 3889                 1             2             3
## 3890                 1             2             2
## 3891                 1             1             1
## 3892                 1             1             6
## 3893                 1             2             2
## 3894                 1             2             1
## 3895                 1             1             5
## 3896                 2             2             2
## 3897                 1             1             5
## 3898                 1             2             6
## 3899                 1             2             6
## 3900                 1             1             6
## 3902                 1             2             1
## 3903                 2             2             2
## 3904                 2             2             1
## 3905                 1             2             1
## 3906                 1             2             6
## 3907                 2             2             2
## 3908                 1             2             2
## 3909                 1             2             2
## 3910                 1             2             6
## 3911                 1             1             2
## 3912                 1             2             2
## 3913                 2             2             2
## 3914                 1             2             4
## 3915                 2             2             6
## 3916                 1             2             6
## 3917                 1             1             6
## 3918                 1             1             6
## 3919                 1             1             2
## 3920                 1             1             6
## 3921                 1             1             5
## 3922                 1             2             5
## 3923                 1             2             2
## 3924                 1             1             4
## 3925                 1             2             4
## 3926                 1             1             6
## 3927                 1             2             2
## 3928                 1             2             6
## 3929                 2             2             2
## 3930                 1             1             4
## 3931                 1             1             6
## 3932                 1             2             1
## 3933                 2             2             2
## 3934                 2             1             1
## 3935                 1             1             4
## 3936                 1             1             1
## 3937                 1             2             2
## 3939                 1             2             2
## 3940                 1             2             5
## 3941                 1             1             6
## 3943                 1             2             5
## 3944                 1             1             4
## 3945                 1             2             6
## 3946                 1             2             2
## 3947                 2             2             1
## 3949                 2             2             1
## 3950                 1             2             3
## 3952                 1             1             6
## 3953                 1             1             4
## 3954                 2             2             2
## 3955                 1             1             6
## 3957                 1             1             2
## 3958                 1             2             4
## 3959                 2             2             2
## 3960                 1             1             6
## 3961                 2             2             6
## 3962                 1             2             6
## 3963                 2             2             2
## 3964                 1             2             5
## 3965                 1             2             5
## 3966                 1             2             2
## 3967                 1             2             2
## 3968                 1             1             5
## 3969                 1             2             2
## 3970                 1             1             2
## 3971                 1             2             2
## 3972                 1             1             6
## 3973                 1             1             2
## 3974                 1             2             4
## 3975                 2             2             2
## 3976                 1             1             6
## 3978                 1             2             6
## 3979                 1             2             1
## 3980                 1             2             2
## 3981                 1             2             4
## 3982                 1             2             5
## 3983                 2             2             2
## 3984                 1             2             1
## 3985                 1             2             6
## 3986                 1             2             2
## 3987                 1             2             2
## 3988                 1             2             5
## 3989                 1             1             6
## 3990                 1             2             6
## 3991                 2             2             6
## 3992                 1             2             2
## 3993                 1             2             3
## 3994                 1             2             6
## 3995                 1             2             1
## 3996                 1             2             1
## 3997                 1             2             6
## 3998                 1             2             5
## 3999                 2             2             2
## 4000                 2             2             1
## 4001                 1             1             6
## 4002                 1             2             5
## 4003                 2             2             1
## 4004                 1             1             5
## 4005                 1             2             1
## 4006                 1             2             5
## 4007                 1             2             2
## 4008                 1             1             6
## 4009                 1             2             4
## 4010                 1             2             6
## 4011                 1             2             6
## 4012                 1             2             5
## 4013                 1             2             6
## 4014                 1             2             2
## 4015                 1             1             5
## 4016                 1             2             6
## 4017                 1             1             4
## 4018                 1             2             1
## 4019                 1             2             2
## 4020                 1             1             1
## 4021                 1             2             6
## 4022                 1             2             6
## 4023                 2             2             2
## 4024                 1             1             6
## 4025                 2             2             2
## 4026                 1             1             6
## 4027                 2             2             2
## 4028                 1             1             6
## 4029                 1             2             5
## 4030                 1             1             6
## 4031                 2             2             6
## 4032                 2             1             1
## 4033                 1             2             6
## 4034                 1             2             5
## 4035                 1             1             1
## 4036                 1             2             6
## 4037                 1             2             1
## 4038                 1             2             5
## 4039                 1             2             6
## 4040                 1             1             5
## 4041                 1             2             2
## 4042                 1             2             6
## 4043                 1             2             2
## 4044                 2             2             2
## 4046                 1             2             2
## 4047                 1             2             1
## 4048                 1             2             6
## 4049                 1             2             1
## 4050                 2             2             2
## 4051                 1             2             6
## 4052                 1             2             4
## 4053                 1             2             2
## 4054                 1             1             5
## 4055                 1             2             1
## 4056                 1             1             6
## 4057                 1             1             5
## 4058                 1             2             6
## 4061                 1             1             6
## 4062                 1             1             4
## 4063                 1             1             6
## 4064                 1             1             4
## 4065                 1             2             6
## 4067                 2             1             1
## 4068                 1             1             6
## 4069                 1             2             6
## 4070                 1             1             6
## 4071                 1             2             2
## 4072                 1             1             1
## 4073                 1             2             1
## 4074                 2             2             2
## 4075                 1             2             1
## 4076                 1             2             2
## 4077                 1             2             6
## 4078                 1             2             6
## 4079                 1             1             6
## 4080                 2             2             2
## 4081                 1             2             6
## 4082                 1             2             1
## 4083                 1             1             1
## 4084                 1             2             1
## 4085                 2             2             2
## 4086                 1             1             6
## 4087                 1             1             5
## 4088                 2             2             2
## 4089                 2             2             6
## 4090                 1             2             1
## 4091                 2             2             2
## 4092                 2             2             5
## 4094                 1             2             2
## 4095                 1             1             1
## 4096                 1             2             6
## 4097                 1             2             1
## 4098                 1             2             5
## 4099                 1             2             5
## 4100                 1             2             6
## 4101                 1             2             3
## 4102                 1             1             2
## 4103                 1             2             1
## 4104                 1             2             6
## 4105                 1             1             2
## 4106                 1             2             6
## 4107                 1             1             6
## 4108                 1             2             5
## 4109                 1             2             6
## 4111                 1             1             4
## 4112                 1             1             4
## 4113                 1             2             6
## 4114                 1             2             5
## 4115                 1             1             5
## 4116                 1             2             1
## 4117                 1             2             1
## 4118                 1             1             6
## 4119                 1             2             4
## 4121                 2             2             2
## 4122                 1             2             5
## 4123                 1             2             5
## 4124                 1             1             5
## 4126                 1             2             6
## 4127                 1             2             1
## 4130                 1             1             6
## 4131                 1             1             6
## 4133                 1             2             6
## 4134                 2             2             1
## 4135                 1             1             6
## 4136                 1             1             6
## 4137                 2             2             2
## 4138                 2             2             2
## 4139                 1             1             5
## 4140                 1             2             1
## 4141                 2             2             2
## 4142                 1             2             5
## 4143                 1             2             5
## 4144                 2             2             2
## 4145                 1             2             2
## 4146                 1             2             5
## 4147                 1             2             1
## 4148                 1             2             4
## 4149                 2             2             2
## 4150                 1             2             4
## 4151                 1             2             1
## 4152                 1             2             1
## 4153                 1             1             6
## 4154                 1             2             4
## 4155                 1             1             6
## 4156                 1             2             2
## 4157                 1             2             5
## 4158                 1             2             4
## 4159                 1             2             2
## 4160                 1             2             6
## 4161                 1             1             1
## 4162                 2             2             1
## 4163                 1             1             5
## 4164                 1             1             6
## 4165                 1             1             6
## 4166                 1             1             6
## 4167                 1             2             3
## 4168                 1             1             1
## 4169                 1             1             4
## 4170                 1             2             5
## 4171                 1             2             2
## 4172                 1             1             1
## 4173                 1             1             6
## 4174                 1             2             1
## 4175                 1             2             1
## 4176                 1             2             2
## 4177                 1             2             2
## 4178                 1             2             5
## 4179                 1             2             6
## 4180                 1             2             2
## 4181                 1             2             6
## 4182                 1             1             1
## 4183                 1             2             6
## 4184                 1             2             6
## 4185                 1             2             1
## 4186                 1             2             6
## 4187                 1             1             6
## 4188                 1             2             6
## 4189                 1             1             6
## 4190                 1             2             4
## 4191                 1             2             2
## 4192                 1             2             1
## 4193                 1             2             5
## 4194                 1             2             6
## 4195                 1             2             1
## 4196                 1             1             3
## 4197                 1             2             4
## 4198                 1             2             5
## 4199                 1             2             1
## 4200                 1             1             5
## 4201                 1             2             5
## 4202                 1             2             5
## 4203                 1             2             4
## 4204                 1             2             6
## 4205                 1             2             2
## 4206                 1             1             4
## 4207                 1             2             6
## 4209                 1             1             1
## 4211                 1             2             4
## 4212                 1             1             1
## 4213                 1             1             6
## 4214                 1             1             6
## 4215                 1             2             4
## 4216                 1             2             1
## 4217                 1             2             6
## 4218                 2             2             2
## 4220                 1             1             1
## 4221                 2             2             2
## 4222                 1             1             4
## 4223                 1             2             6
## 4224                 1             2             5
## 4225                 1             2             2
## 4226                 1             1             5
## 4227                 1             2             1
## 4228                 1             1             4
## 4229                 1             2             3
## 4230                 1             2             6
## 4232                 1             2             1
## 4233                 1             1             6
## 4234                 1             2             1
## 4235                 1             2             2
## 4236                 1             2             2
## 4237                 1             2             1
## 4238                 1             2             1
## 4239                 1             1             6
## 4240                 1             2             6
## 4241                 1             2             2
## 4242                 1             1             5
## 4243                 1             2             6
## 4244                 1             2             1
## 4245                 1             2             2
## 4246                 1             1             2
## 4247                 2             1             2
## 4248                 1             1             2
## 4249                 2             2             2
## 4250                 1             1             5
## 4251                 1             2             6
## 4252                 2             2             1
## 4253                 1             1             5
## 4254                 1             1             1
## 4255                 1             2             4
## 4257                 1             2             5
## 4258                 1             2             1
## 4259                 1             1             1
## 4260                 1             1             1
## 4261                 2             2             1
## 4262                 1             1             2
## 4263                 1             2             6
## 4264                 1             2             6
## 4265                 2             2             2
## 4266                 1             2             6
## 4267                 1             2             4
## 4268                 1             2             6
## 4269                 1             2             6
## 4270                 2             2             2
## 4271                 1             1             6
## 4272                 1             2             1
## 4273                 2             2             2
## 4275                 1             1             6
## 4276                 1             2             2
## 4277                 1             2             6
## 4278                 1             2             2
## 4279                 1             2             2
## 4280                 1             2             4
## 4282                 1             2             6
## 4283                 1             2             6
## 4285                 1             2             2
## 4286                 1             1             4
## 4287                 1             1             1
## 4288                 1             2             2
## 4289                 1             2             6
## 4290                 1             2             1
## 4291                 1             2             2
## 4292                 1             2             1
## 4293                 1             1             5
## 4294                 1             2             5
## 4295                 1             2             2
## 4296                 1             2             1
## 4297                 1             2             4
## 4298                 1             2             1
## 4299                 1             1             6
## 4300                 1             2             1
## 4301                 1             1             4
## 4302                 1             2             2
## 4303                 1             1             5
## 4304                 1             1             2
## 4305                 1             2             2
## 4306                 1             2             5
## 4307                 1             2             1
## 4308                 1             1             5
## 4309                 1             2             4
## 4310                 1             2             6
## 4311                 1             2             2
## 4312                 1             1             2
## 4313                 1             2             6
## 4314                 1             1             4
## 4315                 2             2             1
## 4316                 1             2             6
## 4317                 1             1             5
## 4318                 1             2             2
## 4319                 2             2             2
## 4320                 1             2             1
## 4321                 2             2             1
## 4322                 2             2             2
## 4323                 1             2             1
## 4324                 1             2             2
## 4325                 2             2             1
## 4326                 1             2             6
## 4327                 1             1             5
## 4328                 1             2             2
## 4329                 1             2             5
## 4330                 1             1             6
## 4331                 1             2             1
## 4332                 1             1             4
## 4333                 1             2             4
## 4334                 1             2             1
## 4335                 1             1             6
## 4336                 1             2             6
## 4337                 1             2             4
## 4338                 1             1             6
## 4339                 2             2             5
## 4340                 1             2             3
## 4341                 2             2             2
## 4342                 1             1             6
## 4343                 1             1             2
## 4344                 1             1             6
## 4345                 1             2             6
## 4346                 1             1             5
## 4347                 1             2             6
## 4348                 1             1             5
## 4349                 1             1             6
## 4350                 1             1             5
## 4351                 1             2             5
## 4352                 2             1             2
## 4353                 1             1             2
## 4354                 1             2             6
## 4355                 1             1             4
## 4356                 1             2             2
## 4357                 1             1             5
## 4358                 1             2             1
## 4359                 1             2             6
## 4360                 2             2             2
## 4361                 1             2             1
## 4362                 1             2             6
## 4363                 1             2             1
## 4364                 1             2             2
## 4365                 1             1             5
## 4366                 1             1             4
## 4367                 1             2             6
## 4368                 1             2             2
## 4369                 1             2             1
## 4370                 1             2             4
## 4371                 1             1             6
## 4372                 1             2             1
## 4373                 1             1             4
## 4374                 1             2             6
## 4375                 1             2             5
## 4376                 2             1             1
## 4377                 1             1             2
## 4378                 2             1             6
## 4379                 1             1             5
## 4380                 1             2             5
## 4381                 1             2             4
## 4383                 1             1             2
## 4384                 1             2             2
## 4385                 1             2             2
## 4386                 2             2             2
## 4387                 1             2             6
## 4388                 2             2             2
## 4389                 1             2             6
## 4390                 2             2             2
## 4391                 2             2             1
## 4392                 1             1             2
## 4393                 1             2             1
## 4394                 2             2             6
## 4395                 1             2             1
## 4396                 1             2             6
## 4397                 1             2             2
## 4398                 2             2             2
## 4400                 2             2             2
## 4401                 2             2             2
## 4402                 1             2             1
## 4403                 2             2             2
## 4404                 1             2             4
## 4405                 1             2             1
## 4406                 1             1             1
## 4407                 2             1             6
## 4408                 1             1             5
## 4409                 1             1             4
## 4410                 1             2             2
## 4411                 1             2             2
## 4412                 2             2             2
## 4413                 1             2             2
## 4414                 1             2             4
## 4415                 1             1             5
## 4416                 1             1             6
## 4417                 1             2             6
## 4419                 1             1             6
## 4420                 1             2             2
## 4421                 1             2             6
## 4422                 1             2             2
## 4423                 1             1             2
## 4424                 1             2             1
## 4425                 2             2             2
## 4426                 2             2             1
## 4427                 2             2             1
## 4428                 1             1             6
## 4429                 1             2             1
## 4430                 2             2             1
## 4431                 1             1             6
## 4432                 1             2             1
## 4433                 1             2             6
## 4434                 1             2             6
## 4435                 1             1             5
## 4436                 1             2             2
## 4437                 1             2             6
## 4438                 1             1             6
## 4439                 1             2             2
## 4440                 1             2             6
## 4441                 1             2             1
## 4442                 1             2             2
## 4443                 1             1             5
## 4444                 1             2             6
## 4445                 1             1             5
## 4446                 1             2             2
## 4447                 1             2             6
## 4448                 1             1             5
## 4449                 1             2             6
## 4450                 1             1             5
## 4451                 1             1             5
## 4452                 2             2             2
## 4453                 1             2             6
## 4454                 1             2             2
## 4455                 1             2             6
## 4456                 1             1             6
## 4457                 1             1             1
## 4458                 1             1             5
## 4459                 2             2             2
## 4460                 1             2             1
## 4461                 2             2             1
## 4462                 1             1             6
## 4463                 1             2             5
## 4464                 1             2             4
## 4465                 1             1             2
## 4466                 1             1             6
## 4467                 2             2             1
## 4468                 1             2             1
## 4469                 1             2             2
## 4471                 1             1             5
## 4472                 2             2             2
## 4473                 1             2             6
## 4474                 1             2             6
## 4475                 1             1             1
## 4476                 1             2             5
## 4477                 1             1             5
## 4478                 1             1             5
## 4479                 1             2             2
## 4480                 1             1             5
## 4481                 1             2             5
## 4482                 1             2             6
## 4483                 1             2             6
## 4485                 1             2             5
## 4486                 1             1             4
## 4487                 1             1             4
## 4488                 2             2             2
## 4489                 1             2             6
## 4490                 1             2             6
## 4491                 2             2             2
## 4492                 1             2             1
## 4493                 2             2             2
## 4494                 1             1             6
## 4495                 1             2             4
## 4496                 1             1             4
## 4497                 1             1             6
## 4498                 1             2             4
## 4499                 2             2             6
## 4500                 1             2             2
## 4501                 2             2             2
## 4502                 1             2             1
## 4504                 1             1             6
## 4505                 1             2             1
## 4506                 1             2             5
## 4507                 2             2             2
## 4508                 2             2             2
## 4509                 1             2             2
## 4510                 1             2             3
## 4511                 1             1             5
## 4512                 1             2             2
## 4513                 1             2             1
## 4514                 1             2             2
## 4515                 2             1             5
## 4516                 1             2             2
## 4517                 1             1             6
## 4518                 1             2             6
## 4519                 1             2             6
## 4520                 1             1             6
## 4521                 1             2             6
## 4522                 1             2             2
## 4523                 1             2             1
## 4524                 1             2             5
## 4525                 1             2             2
## 4526                 1             1             6
## 4528                 1             2             6
## 4529                 1             1             5
## 4530                 1             1             5
## 4531                 1             1             5
## 4532                 1             2             4
## 4533                 1             1             4
## 4534                 2             2             2
## 4535                 1             2             6
## 4536                 1             2             6
## 4537                 1             2             3
## 4538                 1             2             2
## 4539                 2             2             2
## 4540                 1             2             6
## 4541                 1             1             5
## 4542                 1             2             5
## 4543                 1             2             6
## 4545                 1             1             4
## 4546                 1             2             2
## 4547                 1             2             6
## 4548                 1             2             5
## 4549                 2             2             3
## 4550                 1             2             6
## 4551                 1             1             5
## 4552                 1             2             1
## 4553                 1             1             6
## 4554                 1             2             5
## 4555                 1             2             1
## 4556                 1             2             2
## 4557                 1             2             1
## 4558                 2             2             2
## 4559                 1             1             2
## 4560                 1             2             2
## 4561                 1             1             6
## 4562                 1             1             5
## 4563                 2             2             2
## 4564                 1             1             2
## 4565                 1             2             1
## 4566                 2             1             2
## 4567                 1             2             1
## 4568                 1             2             2
## 4569                 1             2             5
## 4570                 1             1             5
## 4571                 1             2             5
## 4572                 1             1             5
## 4573                 1             1             2
## 4574                 1             1             2
## 4575                 1             2             2
## 4577                 1             1             6
## 4578                 1             1             4
## 4579                 1             2             5
## 4580                 1             1             4
## 4581                 1             2             4
## 4582                 1             1             4
## 4583                 1             2             1
## 4584                 1             1             6
## 4585                 1             2             6
## 4586                 1             1             6
## 4587                 2             2             2
## 4588                 2             2             1
## 4589                 1             2             2
## 4590                 1             1             5
## 4591                 2             1             1
## 4592                 1             1             5
## 4593                 1             2             2
## 4594                 1             2             1
## 4595                 1             2             6
## 4596                 1             1             5
## 4597                 1             1             6
## 4598                 1             2             1
## 4599                 1             1             5
## 4600                 1             2             6
## 4601                 1             1             6
## 4602                 1             1             1
## 4603                 1             1             2
## 4604                 2             2             2
## 4605                 2             2             1
## 4606                 1             1             6
## 4607                 1             1             4
## 4608                 1             2             2
## 4609                 1             2             6
## 4610                 1             2             1
## 4611                 1             2             6
## 4612                 1             2             2
## 4615                 1             2             2
## 4616                 2             2             4
## 4617                 1             1             4
## 4618                 1             2             1
## 4619                 1             2             2
## 4620                 1             2             6
## 4621                 1             1             6
## 4622                 1             1             5
## 4623                 1             1             6
## 4624                 1             2             6
## 4625                 1             1             6
## 4626                 1             1             5
## 4627                 2             2             1
## 4628                 1             2             4
## 4629                 1             1             4
## 4630                 1             2             2
## 4631                 1             2             6
## 4633                 1             2             4
## 4634                 1             1             6
## 4635                 1             1             5
## 4636                 2             2             6
## 4637                 1             1             5
## 4638                 2             2             2
## 4639                 1             1             6
## 4640                 1             1             6
## 4641                 1             1             6
## 4642                 2             2             1
## 4643                 1             2             2
## 4644                 2             2             6
## 4645                 1             2             6
## 4646                 2             2             1
## 4647                 2             2             1
## 4648                 2             2             2
## 4649                 1             1             6
## 4650                 2             1             2
## 4651                 1             1             5
## 4652                 1             1             1
## 4654                 1             2             1
## 4655                 1             1             5
## 4657                 1             1             6
## 4658                 2             2             2
## 4660                 1             2             2
## 4661                 1             2             6
## 4662                 1             2             1
## 4663                 2             2             3
## 4664                 1             2             1
## 4665                 1             1             1
## 4666                 1             2             2
## 4667                 2             2             2
## 4670                 1             2             6
## 4671                 2             2             1
## 4672                 1             1             6
## 4673                 1             2             2
## 4674                 1             2             1
## 4675                 1             1             6
## 4676                 1             2             2
## 4677                 1             1             4
## 4678                 2             2             2
## 4679                 1             2             1
## 4680                 1             1             5
## 4681                 1             1             5
## 4682                 1             1             1
## 4683                 1             1             5
## 4684                 1             2             1
## 4685                 1             2             5
## 4687                 1             2             6
## 4688                 2             2             1
## 4689                 1             1             1
## 4690                 1             2             2
## 4691                 1             1             6
## 4692                 2             2             4
## 4693                 1             1             6
## 4694                 1             2             4
## 4695                 1             2             2
## 4696                 1             2             2
## 4697                 1             2             2
## 4698                 1             1             5
## 4699                 1             1             4
## 4700                 1             1             6
## 4701                 2             1             3
## 4703                 1             2             6
## 4704                 1             2             2
## 4705                 1             2             5
## 4706                 1             2             5
## 4707                 1             2             1
## 4708                 1             1             5
## 4709                 1             2             5
## 4710                 1             2             5
## 4712                 1             2             2
## 4713                 1             2             3
## 4714                 1             1             4
## 4715                 1             2             1
## 4716                 1             1             5
## 4717                 1             2             1
## 4718                 1             1             4
## 4719                 1             1             4
## 4720                 1             2             1
## 4721                 1             2             2
## 4722                 1             2             1
## 4723                 1             2             6
## 4724                 1             2             5
## 4725                 1             2             2
## 4727                 2             2             2
## 4728                 1             1             4
## 4729                 1             2             2
## 4730                 1             2             6
## 4731                 1             2             4
## 4732                 1             2             1
## 4733                 1             2             1
## 4734                 2             2             2
## 4735                 2             2             1
## 4736                 1             2             6
## 4737                 1             2             2
## 4738                 1             2             4
## 4739                 2             2             2
## 4740                 2             2             2
## 4741                 1             1             6
## 4742                 1             2             2
## 4743                 1             2             4
## 4744                 1             1             4
## 4745                 1             2             1
## 4746                 2             2             1
## 4748                 1             2             4
## 4749                 2             2             2
## 4750                 1             1             6
## 4751                 1             2             1
## 4752                 1             1             6
## 4754                 1             2             6
## 4755                 1             2             1
## 4756                 1             2             6
## 4757                 2             2             1
## 4759                 1             1             4
## 4760                 1             2             6
## 4761                 1             2             6
## 4762                 1             2             3
## 4763                 1             1             5
## 4764                 1             2             6
## 4765                 1             1             4
## 4766                 1             1             2
## 4767                 1             2             1
## 4768                 1             1             6
## 4769                 1             2             5
## 4770                 1             2             2
## 4771                 1             2             2
## 4773                 2             2             2
## 4774                 2             2             2
## 4775                 1             2             4
## 4776                 1             1             6
## 4777                 2             2             1
## 4778                 2             2             1
## 4779                 1             1             6
## 4780                 1             1             1
## 4781                 1             2             2
## 4782                 2             2             1
## 4783                 1             1             4
## 4784                 1             2             2
## 4785                 1             1             6
## 4787                 1             2             6
## 4788                 2             2             2
## 4789                 1             2             4
## 4790                 1             1             1
## 4791                 1             2             6
## 4792                 1             2             6
## 4793                 1             2             5
## 4794                 1             1             6
## 4795                 2             2             2
## 4796                 1             2             6
## 4797                 1             2             1
## 4798                 1             1             4
## 4799                 1             1             4
## 4800                 1             2             6
## 4801                 1             1             5
## 4802                 1             1             6
## 4803                 1             2             1
## 4804                 2             1             1
## 4805                 1             2             1
## 4806                 1             1             5
## 4807                 1             2             4
## 4808                 2             1             1
## 4809                 1             1             6
## 4810                 1             2             5
## 4811                 1             2             6
## 4812                 2             2             2
## 4813                 1             2             1
## 4815                 1             2             6
## 4816                 1             1             6
## 4817                 1             2             1
## 4818                 1             2             2
## 4820                 1             2             2
## 4821                 2             2             6
## 4822                 2             1             6
## 4823                 1             1             1
## 4824                 1             1             4
## 4825                 1             2             1
## 4826                 2             2             2
## 4827                 1             2             5
## 4828                 1             2             2
## 4829                 1             1             6
## 4830                 1             2             1
## 4831                 1             2             6
## 4832                 1             1             6
## 4833                 1             2             6
## 4834                 1             2             6
## 4835                 1             1             4
## 4836                 1             1             4
## 4837                 1             2             2
## 4838                 1             1             4
## 4839                 1             2             2
## 4840                 1             1             6
## 4841                 1             1             5
## 4842                 2             2             2
## 4843                 1             2             2
## 4844                 1             1             6
## 4845                 1             1             1
## 4846                 1             2             1
## 4847                 1             2             4
## 4848                 1             2             2
## 4849                 1             2             6
## 4850                 1             1             6
## 4851                 1             2             5
## 4852                 1             1             6
## 4853                 2             2             6
## 4854                 1             1             6
## 4855                 1             2             6
## 4856                 1             2             6
## 4857                 1             1             4
## 4858                 1             1             6
## 4859                 1             1             5
## 4860                 1             2             6
## 4861                 1             2             2
## 4862                 1             1             5
## 4863                 2             2             2
## 4864                 2             2             1
## 4865                 2             2             1
## 4866                 1             2             6
## 4867                 1             1             5
## 4868                 1             2             6
## 4869                 1             1             6
## 4870                 1             1             6
## 4871                 1             2             1
## 4872                 2             2             2
## 4873                 2             2             1
## 4874                 1             2             1
## 4875                 1             2             6
## 4876                 1             1             6
## 4877                 2             2             2
## 4878                 1             1             6
## 4879                 1             2             2
## 4880                 1             2             1
## 4881                 1             1             4
## 4882                 1             1             6
## 4883                 1             2             2
## 4884                 1             2             2
## 4885                 1             2             6
## 4886                 1             1             2
## 4887                 1             2             2
## 4888                 1             2             1
## 4889                 1             2             2
## 4890                 1             1             2
## 4892                 1             2             2
## 4893                 1             2             1
## 4894                 2             2             6
## 4895                 1             2             6
## 4896                 1             2             1
## 4897                 1             2             6
## 4898                 1             2             2
## 4899                 1             1             5
## 4900                 1             2             1
## 4901                 1             1             6
## 4902                 1             1             6
## 4903                 1             1             1
## 4904                 1             1             6
## 4905                 2             1             1
## 4906                 1             2             2
## 4907                 1             1             5
## 4908                 1             2             6
## 4909                 1             2             5
## 4910                 1             2             1
## 4911                 1             2             2
## 4912                 1             1             1
## 4913                 1             2             1
## 4914                 1             2             6
## 4915                 1             1             6
## 4916                 1             1             1
## 4918                 1             2             2
## 4919                 2             2             1
## 4920                 2             2             1
## 4921                 1             2             6
## 4922                 1             1             6
## 4923                 1             1             6
## 4925                 1             2             2
## 4926                 1             1             6
## 4927                 1             1             1
## 4928                 1             1             5
## 4929                 2             2             1
## 4930                 1             2             2
## 4931                 2             2             2
## 4932                 1             1             4
## 4933                 1             1             5
## 4934                 1             2             6
## 4935                 1             2             2
## 4936                 2             2             2
## 4937                 1             2             4
## 4938                 1             2             6
## 4939                 1             2             6
## 4940                 1             1             1
## 4941                 1             2             5
## 4944                 1             1             6
## 4945                 1             2             1
## 4946                 1             2             1
## 4947                 1             1             6
## 4948                 1             2             5
## 4949                 1             1             1
## 4950                 1             2             4
## 4951                 1             2             2
## 4952                 1             2             2
## 4953                 1             1             5
## 4954                 1             2             6
## 4955                 1             2             2
## 4956                 1             2             1
## 4957                 1             2             6
## 4958                 1             2             5
## 4959                 1             1             6
## 4960                 1             1             6
## 4962                 1             2             5
## 4963                 2             1             2
## 4964                 2             2             1
## 4965                 1             2             1
## 4966                 1             2             6
## 4967                 1             1             4
## 4968                 1             2             6
## 4969                 1             2             4
## 4970                 1             1             2
## 4971                 1             2             2
## 4972                 1             2             4
## 4973                 1             2             6
## 4974                 2             1             1
## 4975                 1             2             6
## 4976                 1             1             6
## 4977                 1             2             2
## 4978                 1             2             2
## 4979                 1             1             2
## 4980                 2             2             1
## 4981                 1             2             2
## 4982                 1             1             6
## 4983                 1             2             6
## 4984                 1             1             6
## 4985                 1             2             4
## 4986                 1             2             6
## 4987                 1             2             2
## 4988                 2             2             2
## 4989                 1             1             1
## 4990                 2             2             5
## 4991                 1             2             2
## 4992                 2             2             1
## 4993                 2             2             2
## 4994                 1             2             4
## 4995                 1             2             6
## 4996                 1             2             6
## 4998                 1             2             1
## 4999                 1             1             6
## 5000                 1             2             2
## 5001                 1             2             2
## 5002                 1             1             6
## 5003                 1             2             6
## 5004                 1             1             5
## 5005                 1             2             6
## 5006                 1             1             1
## 5007                 2             2             2
## 5008                 1             2             6
## 5009                 2             2             6
## 5010                 1             2             2
## 5011                 2             2             2
## 5012                 1             1             5
## 5013                 1             1             4
## 5014                 1             2             6
## 5015                 1             2             2
## 5016                 2             2             2
## 5017                 1             2             6
## 5019                 1             2             6
## 5020                 1             2             5
## 5021                 1             2             2
## 5022                 1             2             4
## 5023                 1             2             2
## 5024                 2             2             2
## 5025                 1             1             6
## 5026                 2             2             1
## 5027                 2             1             1
## 5028                 1             1             6
## 5029                 1             2             2
## 5030                 1             2             4
## 5032                 2             2             2
## 5034                 1             1             6
## 5035                 1             2             4
## 5036                 1             1             5
## 5037                 2             1             2
## 5038                 1             1             4
## 5039                 1             1             6
## 5040                 1             2             2
## 5041                 1             2             1
## 5043                 1             1             6
## 5044                 1             1             5
## 5045                 1             2             2
## 5046                 1             1             5
## 5047                 2             2             1
## 5048                 1             2             2
## 5049                 1             1             6
## 5050                 2             1             2
## 5051                 1             2             2
## 5052                 1             2             1
## 5053                 1             2             1
## 5054                 1             2             4
## 5055                 2             2             2
## 5056                 1             1             6
## 5057                 1             2             1
## 5058                 2             2             2
## 5059                 1             2             2
## 5060                 1             1             6
## 5061                 1             2             1
## 5062                 1             2             6
## 5063                 1             1             4
## 5064                 2             2             1
## 5065                 1             2             6
## 5066                 1             2             2
## 5067                 1             1             2
## 5068                 1             2             4
## 5069                 1             2             1
## 5070                 1             2             2
## 5071                 1             1             6
## 5072                 1             2             6
## 5073                 2             2             2
## 5074                 1             2             1
## 5076                 1             2             2
## 5077                 2             2             2
## 5078                 1             2             2
## 5079                 1             2             6
## 5080                 1             2             5
## 5081                 1             2             1
## 5082                 1             2             2
## 5083                 1             1             6
## 5084                 1             2             6
## 5085                 1             2             5
## 5086                 1             2             2
## 5087                 1             1             6
## 5088                 1             2             1
## 5089                 2             2             2
## 5090                 1             1             6
## 5091                 2             2             2
## 5092                 2             2             1
## 5094                 1             1             5
## 5095                 1             1             5
## 5097                 1             1             2
## 5098                 1             1             5
## 5099                 1             1             1
## 5100                 1             1             6
## 5101                 1             2             3
## 5102                 1             2             5
## 5103                 1             2             5
## 5105                 1             2             1
## 5106                 1             2             5
## 5108                 2             1             2
## 5109                 1             2             1
## 5111                 1             2             5
## 5112                 1             2             6
## 5113                 1             2             2
## 5114                 1             1             1
## 5115                 1             2             4
## 5116                 1             2             2
## 5117                 1             1             6
## 5118                 1             1             5
## 5119                 1             2             6
## 5120                 1             1             6
## 5121                 1             2             1
## 5122                 1             2             6
## 5123                 1             2             2
## 5124                 1             1             1
## 5125                 2             2             1
## 5126                 1             2             5
## 5127                 2             2             1
## 5128                 1             1             6
## 5129                 1             2             6
## 5130                 1             2             6
## 5131                 1             1             5
## 5132                 2             2             1
## 5133                 2             2             2
## 5134                 1             2             4
## 5135                 1             1             4
## 5136                 1             2             2
## 5138                 1             1             6
## 5139                 1             2             2
## 5140                 1             2             1
## 5141                 1             1             6
## 5142                 1             1             4
## 5143                 2             2             1
## 5144                 2             2             2
## 5145                 1             1             4
## 5146                 2             2             2
## 5147                 1             2             1
## 5148                 1             2             1
## 5149                 1             1             1
## 5150                 1             2             2
## 5151                 1             2             4
## 5152                 1             1             4
## 5153                 1             2             6
## 5154                 2             2             1
## 5155                 2             2             2
## 5156                 1             2             6
## 5157                 1             1             6
## 5158                 1             1             6
## 5159                 1             1             6
## 5160                 1             2             6
## 5161                 1             1             4
## 5162                 2             2             2
## 5163                 1             2             2
## 5164                 1             1             5
## 5165                 1             2             5
## 5166                 1             2             6
## 5167                 1             2             2
## 5168                 1             2             1
## 5169                 1             2             1
## 5170                 2             1             2
## 5171                 2             2             2
## 5172                 1             1             1
## 5173                 1             2             3
## 5174                 2             2             1
## 5175                 2             1             3
## 5176                 1             1             5
## 5177                 1             1             2
## 5178                 1             1             5
## 5179                 2             2             1
## 5180                 1             2             6
## 5181                 1             2             1
## 5183                 2             2             1
## 5184                 1             2             1
## 5185                 1             2             6
## 5186                 1             2             1
## 5187                 1             1             6
## 5188                 1             1             6
## 5190                 1             2             6
## 5191                 1             2             6
## 5192                 2             2             1
## 5193                 1             1             6
## 5194                 1             1             4
## 5195                 2             2             1
## 5196                 1             2             5
## 5197                 1             2             6
## 5198                 1             2             6
## 5199                 1             2             6
## 5200                 2             2             1
## 5201                 1             1             5
## 5202                 1             2             1
## 5203                 1             2             5
## 5205                 1             2             1
## 5206                 2             2             2
## 5207                 1             1             6
## 5208                 2             2             1
## 5209                 1             1             6
## 5210                 1             2             5
## 5211                 1             2             4
## 5212                 1             2             2
## 5214                 1             2             6
## 5215                 1             2             1
## 5216                 1             1             5
## 5217                 1             2             6
## 5218                 1             1             6
## 5219                 2             2             6
## 5220                 1             2             1
## 5221                 1             2             6
## 5222                 1             1             4
## 5223                 1             2             5
## 5224                 1             1             6
## 5225                 1             2             6
## 5226                 2             1             1
## 5227                 2             2             2
## 5228                 1             2             2
## 5229                 1             2             2
## 5230                 1             2             4
## 5232                 1             1             6
## 5233                 1             1             6
## 5234                 1             1             4
## 5235                 1             1             2
## 5236                 1             2             2
## 5238                 1             2             2
## 5239                 1             1             1
## 5240                 1             2             6
## 5241                 2             2             2
## 5242                 1             2             5
## 5243                 1             1             5
## 5244                 1             1             6
## 5245                 1             1             1
## 5246                 1             1             6
## 5247                 1             2             1
## 5249                 1             2             6
## 5250                 1             2             5
## 5251                 1             2             2
## 5252                 1             1             6
## 5253                 1             2             1
## 5254                 1             1             6
## 5255                 1             2             1
## 5256                 2             2             2
## 5257                 2             2             1
## 5258                 1             2             2
## 5259                 1             2             6
## 5260                 1             2             4
## 5261                 1             1             4
## 5262                 1             1             5
## 5264                 2             2             2
## 5265                 1             2             6
## 5266                 1             2             1
## 5267                 1             1             4
## 5268                 1             2             2
## 5269                 1             2             6
## 5270                 1             2             6
## 5271                 1             2             2
## 5272                 1             2             2
## 5273                 2             2             3
## 5274                 1             2             6
## 5275                 2             2             2
## 5277                 1             1             4
## 5278                 2             2             6
## 5279                 1             2             6
## 5280                 1             2             6
## 5281                 1             2             2
## 5282                 1             1             1
## 5283                 1             1             1
## 5284                 1             1             1
## 5285                 1             1             4
## 5286                 1             2             6
## 5287                 1             2             1
## 5288                 1             1             6
## 5289                 1             1             5
## 5290                 1             1             1
## 5291                 1             1             2
## 5292                 1             2             2
## 5293                 1             2             2
## 5294                 1             1             6
## 5295                 1             2             6
## 5296                 1             2             2
## 5297                 2             2             2
## 5298                 1             2             6
## 5300                 1             1             1
## 5301                 1             1             2
## 5302                 1             2             1
## 5303                 1             1             6
## 5304                 1             1             6
## 5305                 1             2             2
## 5306                 1             2             2
## 5307                 1             2             2
## 5308                 1             2             6
## 5309                 1             2             2
## 5310                 1             2             1
## 5311                 1             2             2
## 5312                 1             1             4
## 5314                 1             1             1
## 5315                 1             2             2
## 5316                 2             2             1
## 5317                 1             1             6
## 5318                 1             2             2
## 5319                 1             2             5
## 5320                 1             1             6
## 5321                 1             2             6
## 5322                 2             2             6
## 5323                 1             1             1
## 5324                 1             2             1
## 5325                 1             2             2
## 5326                 1             1             5
## 5327                 2             2             2
## 5328                 1             1             4
## 5329                 1             1             2
## 5330                 1             2             6
## 5331                 2             2             2
## 5332                 1             2             2
## 5333                 1             2             1
## 5334                 1             2             2
## 5335                 1             2             2
## 5336                 1             2             4
## 5337                 1             2             2
## 5338                 1             1             6
## 5339                 1             2             6
## 5340                 1             2             5
## 5341                 1             2             6
## 5342                 1             2             1
## 5343                 2             2             3
## 5344                 1             2             2
## 5345                 1             2             6
## 5346                 2             1             2
## 5347                 1             2             6
## 5348                 1             1             5
## 5349                 1             2             6
## 5350                 1             2             6
## 5352                 2             2             6
## 5353                 1             2             2
## 5354                 1             1             6
## 5355                 1             2             1
## 5357                 1             1             5
## 5358                 1             1             4
## 5359                 1             1             5
## 5360                 1             2             6
## 5361                 1             2             2
## 5362                 2             1             2
## 5363                 1             2             1
## 5364                 1             2             1
## 5365                 1             2             5
## 5366                 1             2             2
## 5367                 1             1             4
## 5368                 1             2             6
## 5369                 1             2             4
## 5370                 1             2             1
## 5371                 1             2             2
## 5372                 1             1             5
## 5373                 1             2             1
## 5374                 1             1             1
## 5376                 1             2             4
## 5377                 1             2             1
## 5378                 1             2             5
## 5379                 1             2             2
## 5380                 1             1             5
## 5381                 1             2             6
## 5382                 1             2             1
## 5383                 1             2             1
## 5384                 1             2             1
## 5385                 1             2             1
## 5386                 2             2             3
## 5387                 1             2             1
## 5388                 1             1             1
## 5389                 1             1             6
## 5390                 2             2             2
## 5391                 1             2             4
## 5392                 1             1             6
## 5393                 1             2             1
## 5394                 1             1             5
## 5395                 1             2             2
## 5396                 1             2             6
## 5398                 1             2             6
## 5399                 1             2             6
## 5400                 1             2             2
## 5401                 1             2             6
## 5402                 1             2             3
## 5403                 1             2             5
## 5404                 2             2             2
## 5405                 1             1             2
## 5406                 1             2             2
## 5407                 1             1             6
## 5408                 1             1             5
## 5409                 1             2             2
## 5410                 2             2             2
## 5411                 1             1             4
## 5412                 1             2             6
## 5413                 1             2             6
## 5414                 1             2             6
## 5415                 1             1             4
## 5416                 1             2             6
## 5417                 1             2             6
## 5419                 1             2             2
## 5420                 1             2             6
## 5421                 2             2             2
## 5422                 1             1             4
## 5423                 1             1             5
## 5424                 1             2             1
## 5425                 1             2             2
## 5426                 1             1             5
## 5427                 1             1             4
## 5428                 1             1             5
## 5429                 1             2             1
## 5430                 1             2             6
## 5431                 1             2             6
## 5432                 1             2             2
## 5434                 2             2             1
## 5435                 1             1             6
## 5436                 1             2             2
## 5437                 1             2             1
## 5438                 1             1             6
## 5439                 1             2             5
## 5440                 1             2             1
## 5441                 1             1             5
## 5442                 1             2             4
## 5443                 1             2             6
## 5444                 2             2             2
## 5445                 2             2             2
## 5446                 1             1             4
## 5447                 2             2             2
## 5448                 1             1             5
## 5449                 1             2             1
## 5451                 1             2             1
## 5452                 1             2             6
## 5453                 1             2             1
## 5455                 1             2             2
## 5456                 1             2             2
## 5457                 1             2             2
## 5458                 1             2             1
## 5459                 1             2             2
## 5460                 2             2             2
## 5461                 1             2             2
## 5462                 1             2             6
## 5464                 1             2             6
## 5465                 1             2             1
## 5466                 2             2             6
## 5467                 1             2             2
## 5468                 1             2             2
## 5469                 1             1             6
## 5470                 1             2             5
## 5471                 1             2             6
## 5472                 1             1             4
## 5473                 1             2             2
## 5474                 1             2             5
## 5475                 1             1             6
## 5476                 1             2             4
## 5477                 1             2             6
## 5478                 1             1             4
## 5479                 2             2             2
## 5480                 2             2             3
## 5481                 1             1             5
## 5482                 1             2             4
## 5483                 1             2             2
## 5484                 1             2             6
## 5485                 1             2             6
## 5486                 1             1             5
## 5487                 1             2             1
## 5488                 1             1             4
## 5489                 1             2             2
## 5490                 1             1             1
## 5491                 1             2             2
## 5492                 1             2             6
## 5493                 1             2             2
## 5494                 2             2             3
## 5495                 1             2             1
## 5496                 1             2             6
## 5497                 1             2             1
## 5498                 2             2             2
## 5499                 1             2             2
## 5500                 1             2             2
## 5501                 1             2             3
## 5502                 1             2             4
## 5503                 1             2             6
## 5504                 1             2             6
## 5505                 1             1             5
## 5506                 1             2             1
## 5507                 1             1             6
## 5508                 1             2             5
## 5509                 1             2             6
## 5510                 1             2             6
## 5511                 1             2             1
## 5512                 1             2             5
## 5513                 1             1             6
## 5514                 1             2             1
## 5515                 1             1             6
## 5516                 1             2             2
## 5517                 2             2             2
## 5518                 1             2             2
## 5519                 1             2             6
## 5520                 2             2             2
## 5521                 1             1             5
## 5522                 1             1             1
## 5523                 1             2             1
## 5524                 1             1             2
## 5525                 1             2             6
## 5526                 2             2             2
## 5527                 1             2             5
## 5528                 1             2             4
## 5529                 1             2             2
## 5530                 1             2             6
## 5531                 1             2             6
## 5532                 1             1             2
## 5533                 2             2             2
## 5534                 1             1             2
## 5535                 1             1             6
## 5536                 1             2             6
## 5538                 1             1             5
## 5539                 1             2             1
## 5540                 1             1             4
## 5541                 1             1             1
## 5542                 1             2             2
## 5543                 1             2             6
## 5544                 1             2             6
## 5545                 1             1             1
## 5546                 1             2             1
## 5547                 1             2             6
## 5548                 1             1             4
## 5549                 1             2             5
## 5550                 1             2             1
## 5551                 1             2             1
## 5552                 1             2             2
## 5553                 1             2             5
## 5555                 1             2             2
## 5557                 1             2             6
## 5558                 1             2             1
## 5559                 1             1             2
## 5560                 1             2             2
## 5561                 1             2             4
## 5562                 1             2             5
## 5563                 1             2             2
## 5564                 1             1             5
## 5565                 1             2             6
## 5566                 2             2             2
## 5567                 1             2             2
## 5568                 1             2             2
## 5569                 2             1             4
## 5570                 1             1             6
## 5571                 1             2             2
## 5572                 1             1             5
## 5573                 1             2             6
## 5574                 1             2             6
## 5575                 1             2             4
## 5577                 1             1             1
## 5578                 2             2             2
## 5579                 1             2             1
## 5580                 2             2             2
## 5581                 2             2             2
## 5582                 1             2             3
## 5583                 1             2             1
## 5584                 2             2             2
## 5585                 1             2             6
## 5586                 2             2             2
## 5587                 1             2             1
## 5589                 1             2             1
## 5590                 1             2             5
## 5591                 1             2             2
## 5593                 1             1             6
## 5594                 1             2             2
## 5595                 1             1             6
## 5596                 1             1             4
## 5597                 1             2             1
## 5598                 1             2             2
## 5599                 1             2             4
## 5600                 1             1             4
## 5601                 1             2             1
## 5602                 1             2             6
## 5603                 1             2             6
## 5604                 1             2             4
## 5605                 1             2             6
## 5607                 1             1             2
## 5608                 1             2             2
## 5609                 1             1             1
## 5610                 1             1             6
## 5611                 1             2             4
## 5612                 1             2             6
## 5613                 1             2             6
## 5614                 1             2             5
## 5615                 2             2             2
## 5616                 1             2             2
## 5617                 1             2             6
## 5618                 2             2             2
## 5619                 1             2             1
## 5620                 2             2             1
## 5621                 1             1             2
## 5622                 1             1             6
## 5623                 1             2             5
## 5624                 2             1             6
## 5625                 1             2             2
## 5626                 1             2             6
## 5627                 1             2             5
## 5628                 1             2             6
## 5629                 1             2             2
## 5630                 1             1             4
## 5631                 1             2             5
## 5632                 2             2             1
## 5633                 1             2             2
## 5634                 1             2             2
## 5635                 1             2             1
## 5636                 1             2             1
## 5637                 2             2             2
## 5638                 1             1             4
## 5640                 2             2             4
## 5641                 1             2             6
## 5642                 1             1             5
## 5643                 1             2             5
## 5644                 1             2             5
## 5645                 1             2             6
## 5646                 1             1             6
## 5647                 2             2             6
## 5649                 1             2             1
## 5650                 2             1             1
## 5651                 1             1             2
## 5652                 1             1             5
## 5653                 1             2             1
## 5654                 1             1             1
## 5655                 1             2             6
## 5656                 1             1             5
## 5657                 1             2             6
## 5658                 2             2             2
## 5659                 1             1             5
## 5660                 1             1             1
## 5661                 1             2             5
## 5662                 1             1             6
## 5663                 1             2             1
## 5664                 1             2             5
## 5665                 1             2             6
## 5666                 1             1             1
## 5667                 1             1             5
## 5668                 2             2             1
## 5669                 1             2             4
## 5670                 1             2             6
## 5671                 1             1             2
## 5672                 2             2             2
## 5673                 1             2             6
## 5674                 1             2             1
## 5675                 1             2             1
## 5676                 1             2             2
## 5677                 1             2             5
## 5678                 1             2             6
## 5679                 2             2             3
## 5680                 1             2             6
## 5681                 2             2             2
## 5682                 1             2             1
## 5683                 1             2             2
## 5684                 1             2             1
## 5685                 2             2             2
## 5686                 1             1             6
## 5687                 1             2             2
## 5688                 1             2             5
## 5689                 1             2             5
## 5690                 2             2             2
## 5691                 1             2             6
## 5692                 1             2             1
## 5693                 1             2             2
## 5694                 1             1             1
## 5695                 1             2             2
## 5696                 1             2             6
## 5697                 1             2             6
## 5698                 1             1             2
## 5699                 1             2             5
## 5700                 1             2             6
## 5701                 1             2             2
## 5702                 1             2             6
## 5703                 1             2             6
## 5705                 1             2             1
## 5706                 1             2             5
## 5707                 1             2             6
## 5708                 1             1             1
## 5709                 2             2             2
## 5710                 2             2             2
## 5711                 1             1             5
## 5712                 1             2             1
## 5713                 2             2             1
## 5714                 1             2             2
## 5715                 1             1             6
## 5716                 1             2             2
## 5717                 1             1             1
## 5718                 1             2             6
## 5719                 2             2             2
## 5720                 1             1             5
## 5721                 2             2             6
## 5722                 1             2             5
## 5723                 1             1             4
## 5724                 2             2             2
## 5725                 1             2             2
## 5726                 1             2             6
## 5727                 1             2             1
## 5728                 2             2             1
## 5729                 1             2             6
## 5730                 1             1             4
## 5731                 2             2             2
## 5732                 1             2             1
## 5733                 1             1             6
## 5734                 1             2             1
## 5735                 1             2             2
## 5736                 1             2             6
## 5737                 1             2             1
## 5738                 1             2             6
## 5739                 2             2             2
## 5740                 1             2             3
## 5742                 1             1             6
## 5743                 2             2             1
## 5744                 1             1             6
## 5746                 1             2             2
## 5747                 1             1             6
## 5748                 1             1             6
## 5749                 1             2             2
## 5750                 1             2             6
## 5751                 2             2             2
## 5753                 2             2             2
## 5754                 2             2             2
## 5756                 2             2             2
## 5757                 1             2             6
## 5758                 1             2             6
## 5759                 1             1             6
## 5760                 1             2             2
## 5761                 1             2             4
## 5762                 1             2             6
## 5763                 1             2             2
## 5764                 2             2             1
## 5766                 2             2             2
## 5767                 1             1             5
## 5768                 1             2             1
## 5769                 2             2             6
## 5770                 1             2             6
## 5771                 1             2             2
## 5772                 1             2             4
## 5773                 1             2             2
## 5776                 2             2             4
## 5777                 1             1             1
## 5778                 1             2             4
## 5779                 1             2             1
## 5780                 1             2             2
## 5781                 1             1             6
## 5782                 1             2             5
## 5783                 1             2             5
## 5784                 1             1             6
## 5785                 1             1             5
## 5786                 1             1             6
## 5787                 1             2             2
## 5788                 1             1             4
## 5789                 2             2             2
## 5790                 1             1             5
## 5791                 2             2             2
## 5792                 2             2             1
## 5793                 2             2             1
## 5794                 1             2             6
## 5795                 1             2             6
## 5796                 1             1             4
## 5797                 1             2             1
## 5798                 2             1             1
## 5799                 1             2             2
## 5800                 1             1             5
## 5801                 1             1             6
## 5802                 1             2             2
## 5803                 2             2             2
## 5804                 1             2             5
## 5805                 2             1             2
## 5806                 2             2             1
## 5807                 1             1             6
## 5808                 1             2             2
## 5809                 1             2             6
## 5810                 1             1             1
## 5811                 1             2             2
## 5812                 1             2             1
## 5813                 1             1             6
## 5814                 1             1             6
## 5815                 1             1             2
## 5816                 1             1             6
## 5817                 1             2             4
## 5818                 1             2             6
## 5819                 1             1             1
## 5820                 2             2             2
## 5821                 1             2             2
## 5822                 1             2             1
## 5823                 1             2             5
## 5824                 1             1             6
## 5826                 2             2             6
## 5827                 1             2             1
## 5828                 1             2             2
## 5829                 1             2             1
## 5830                 2             1             1
## 5831                 1             1             6
## 5832                 2             2             1
## 5833                 1             2             6
## 5835                 1             2             5
## 5836                 2             2             1
## 5837                 1             1             5
## 5838                 1             1             1
## 5839                 2             1             3
## 5840                 1             2             1
## 5841                 1             1             5
## 5842                 1             2             3
## 5843                 1             2             6
## 5844                 1             1             6
## 5845                 1             2             1
## 5846                 1             1             5
## 5847                 1             2             1
## 5848                 1             2             1
## 5849                 1             2             6
## 5850                 1             1             1
## 5851                 1             2             6
## 5852                 1             2             6
## 5853                 1             1             6
## 5854                 1             2             4
## 5855                 1             1             5
## 5856                 1             2             2
## 5857                 1             2             2
## 5858                 1             2             2
## 5859                 1             1             6
## 5860                 1             1             6
## 5861                 1             2             6
## 5862                 1             2             6
## 5863                 1             1             2
## 5864                 2             2             1
## 5865                 1             2             2
## 5866                 2             2             2
## 5867                 1             2             6
## 5868                 1             1             2
## 5869                 1             1             1
## 5870                 2             2             1
## 5871                 1             2             1
## 5872                 1             2             2
## 5873                 1             2             2
## 5874                 1             2             1
## 5875                 1             1             5
## 5876                 1             2             2
## 5877                 1             1             1
## 5878                 1             2             6
## 5879                 2             2             3
## 5880                 1             2             6
## 5881                 1             1             5
## 5883                 1             2             1
## 5884                 1             2             2
## 5885                 1             2             1
## 5886                 1             1             1
## 5887                 1             1             4
## 5889                 1             2             6
## 5890                 1             1             1
## 5891                 1             2             5
## 5892                 1             2             2
## 5894                 1             2             2
## 5895                 1             2             2
## 5896                 1             1             6
## 5897                 1             1             6
## 5898                 1             1             6
## 5899                 2             2             2
## 5900                 1             2             2
## 5901                 1             2             2
## 5902                 1             2             6
## 5903                 2             2             2
## 5904                 1             1             6
## 5905                 1             2             4
## 5906                 1             1             5
## 5907                 1             2             1
## 5908                 1             2             6
## 5909                 1             2             6
## 5910                 1             2             5
## 5911                 1             1             5
## 5913                 1             2             6
## 5914                 1             2             2
## 5915                 1             2             2
## 5916                 1             2             5
## 5917                 1             1             6
## 5918                 1             2             1
## 5919                 1             2             5
## 5920                 1             1             5
## 5921                 1             2             2
## 5923                 1             2             2
## 5924                 1             2             1
## 5925                 1             2             6
## 5926                 2             2             1
## 5928                 1             2             2
## 5929                 1             1             6
## 5930                 1             2             6
## 5931                 1             2             4
## 5932                 1             2             1
## 5933                 1             1             2
## 5934                 1             2             6
## 5935                 1             2             5
## 5936                 2             2             1
## 5937                 1             2             2
## 5939                 1             1             5
## 5940                 1             1             6
## 5941                 1             2             6
## 5942                 1             2             6
## 5943                 1             2             6
## 5944                 1             1             1
## 5945                 1             2             2
## 5946                 1             2             2
## 5947                 1             2             3
## 5948                 1             2             1
## 5949                 1             2             2
## 5950                 2             2             2
## 5951                 1             2             6
## 5953                 1             2             1
## 5954                 1             2             1
## 5955                 1             2             5
## 5956                 1             2             6
## 5957                 2             2             2
## 5958                 2             2             3
## 5959                 1             2             2
## 5960                 1             1             5
## 5961                 1             1             6
## 5962                 2             2             1
## 5963                 1             1             4
## 5964                 1             2             1
## 5966                 1             2             6
## 5967                 1             1             6
## 5968                 1             1             6
## 5969                 1             2             2
## 5970                 1             2             1
## 5972                 1             2             6
## 5973                 2             2             2
## 5974                 1             1             6
## 5975                 1             2             2
## 5976                 1             2             2
## 5977                 1             2             2
## 5978                 1             2             6
## 5979                 1             2             2
## 5980                 1             2             6
## 5982                 1             1             6
## 5983                 1             2             2
## 5984                 1             2             2
## 5985                 2             2             2
## 5986                 1             2             4
## 5987                 1             1             6
## 5988                 1             1             1
## 5989                 1             2             1
## 5990                 1             2             2
## 5991                 2             2             2
## 5992                 1             2             2
## 5993                 2             1             2
## 5994                 1             2             1
## 5996                 2             2             2
## 5997                 1             2             2
## 5998                 1             1             6
## 5999                 2             2             2
## 6000                 1             1             6
## 6001                 1             1             6
## 6002                 1             2             5
## 6003                 1             1             6
## 6004                 1             1             4
## 6005                 1             2             2
## 6006                 1             2             3
## 6007                 1             2             2
## 6008                 1             2             5
## 6009                 1             2             1
## 6010                 1             2             6
## 6011                 1             2             2
## 6012                 1             2             6
## 6013                 1             2             2
## 6014                 1             1             5
## 6015                 1             2             5
## 6016                 1             2             6
## 6017                 1             1             5
## 6018                 1             2             5
## 6019                 1             2             5
## 6020                 2             2             1
## 6021                 1             1             5
## 6022                 1             1             2
## 6023                 2             2             5
## 6024                 2             2             3
## 6025                 1             2             6
## 6026                 1             2             2
## 6027                 1             2             6
## 6028                 1             2             1
## 6029                 1             2             6
## 6030                 1             2             6
## 6031                 1             2             5
## 6032                 1             2             1
## 6033                 1             2             6
## 6034                 1             2             2
## 6035                 1             1             6
## 6036                 1             2             2
## 6037                 1             1             2
## 6038                 1             2             6
## 6039                 2             2             2
## 6040                 1             2             2
## 6041                 2             2             1
## 6042                 1             2             6
## 6043                 1             1             4
## 6044                 1             2             5
## 6045                 1             2             4
## 6046                 1             2             1
## 6047                 1             2             2
## 6048                 1             2             6
## 6049                 1             2             2
## 6050                 1             1             6
## 6051                 1             2             1
## 6052                 1             2             2
## 6053                 1             2             1
## 6054                 1             2             2
## 6055                 1             2             1
## 6056                 1             2             1
## 6057                 1             2             2
## 6059                 1             2             2
## 6060                 1             1             5
## 6061                 1             1             5
## 6062                 1             2             6
## 6063                 1             2             2
## 6064                 1             1             6
## 6065                 1             1             2
## 6066                 1             1             5
## 6067                 1             1             2
## 6068                 2             1             2
## 6069                 1             2             2
## 6070                 2             2             2
## 6071                 1             1             5
## 6072                 1             1             6
## 6073                 1             2             6
## 6074                 1             1             2
## 6075                 1             2             2
## 6076                 1             2             6
## 6077                 1             1             4
## 6078                 1             2             6
## 6079                 1             2             2
## 6080                 2             2             2
## 6081                 2             2             2
## 6082                 1             2             6
## 6083                 2             2             2
## 6084                 1             2             6
## 6085                 1             1             6
## 6086                 1             2             1
## 6087                 1             1             6
## 6088                 1             1             2
## 6089                 1             2             1
## 6090                 1             2             6
## 6091                 1             2             1
## 6092                 1             1             2
## 6093                 1             2             5
## 6094                 1             2             6
## 6095                 1             2             2
## 6096                 1             1             5
## 6097                 1             1             5
## 6098                 1             2             6
## 6099                 1             2             2
## 6100                 1             2             6
## 6101                 1             1             4
## 6102                 1             2             1
## 6103                 1             2             1
## 6104                 1             2             1
## 6105                 1             1             6
## 6106                 1             2             1
## 6107                 1             2             1
## 6108                 1             1             6
## 6109                 1             1             6
## 6110                 1             2             1
## 6111                 1             2             5
## 6112                 2             1             5
## 6113                 1             2             3
## 6114                 1             2             6
## 6115                 1             1             1
## 6116                 2             2             2
## 6117                 1             1             6
## 6118                 1             2             6
## 6119                 1             2             5
## 6120                 1             2             2
## 6121                 1             2             2
## 6122                 1             1             5
## 6123                 1             2             2
## 6124                 1             2             2
## 6125                 1             2             6
## 6126                 1             2             6
## 6127                 1             1             5
## 6128                 1             2             6
## 6129                 1             2             2
## 6130                 1             1             5
## 6132                 1             2             2
## 6133                 1             1             6
## 6134                 1             2             2
## 6135                 1             2             2
## 6136                 1             2             1
## 6137                 2             1             2
## 6138                 1             1             6
## 6139                 1             2             5
## 6140                 1             1             6
## 6141                 1             1             5
## 6142                 2             2             2
## 6143                 1             1             4
## 6144                 1             2             6
## 6145                 1             2             4
## 6146                 1             2             2
## 6147                 2             2             1
## 6148                 2             2             2
## 6149                 1             2             2
## 6150                 1             1             5
## 6151                 1             2             6
## 6153                 1             1             5
## 6154                 1             1             2
## 6155                 1             1             6
## 6156                 1             2             4
## 6157                 1             1             6
## 6158                 2             1             6
## 6159                 2             2             2
## 6160                 1             2             1
## 6161                 1             2             1
## 6162                 1             2             6
## 6163                 1             2             1
## 6165                 2             2             2
## 6166                 1             1             2
## 6167                 1             2             2
## 6168                 1             1             6
## 6169                 1             2             1
## 6170                 1             2             4
## 6171                 1             2             5
## 6172                 1             2             2
## 6173                 1             1             6
## 6174                 1             2             6
## 6175                 2             2             1
## 6176                 1             2             1
## 6177                 1             2             2
## 6178                 1             2             2
## 6179                 2             2             6
## 6180                 1             2             6
## 6181                 1             1             4
## 6182                 1             2             1
## 6183                 1             2             5
## 6184                 2             2             6
## 6185                 1             2             1
## 6186                 2             2             2
## 6187                 1             1             6
## 6188                 1             1             4
## 6189                 1             2             6
## 6190                 1             2             6
## 6191                 1             2             2
## 6192                 1             1             5
## 6193                 1             2             2
## 6194                 1             2             1
## 6195                 1             2             2
## 6197                 1             2             1
## 6198                 1             2             2
## 6199                 1             2             6
## 6200                 1             1             6
## 6201                 1             2             1
## 6202                 1             1             3
## 6203                 2             2             1
## 6204                 1             2             1
## 6205                 1             2             1
## 6206                 1             2             6
## 6207                 1             2             6
## 6208                 2             2             5
## 6209                 1             2             3
## 6210                 2             2             2
## 6211                 2             2             2
## 6212                 1             2             2
## 6213                 1             2             2
## 6214                 1             1             5
## 6215                 1             1             4
## 6216                 1             2             1
## 6217                 1             2             1
## 6218                 1             1             6
## 6219                 1             1             6
## 6220                 2             2             6
## 6221                 1             2             6
## 6222                 1             2             1
## 6223                 1             2             6
## 6224                 1             2             5
## 6225                 2             1             2
## 6226                 1             2             2
## 6227                 1             1             5
## 6228                 2             2             6
## 6229                 1             2             1
## 6230                 1             2             6
## 6231                 1             2             2
## 6232                 1             1             2
## 6233                 2             2             1
## 6234                 1             2             4
## 6235                 1             2             2
## 6236                 1             1             5
## 6237                 1             2             3
## 6238                 1             1             5
## 6239                 1             2             5
## 6240                 1             2             6
## 6241                 1             2             2
## 6242                 1             2             2
## 6244                 1             2             2
## 6245                 2             2             6
## 6246                 2             2             5
## 6247                 2             2             1
## 6248                 1             2             2
## 6249                 2             2             2
## 6250                 1             2             3
## 6251                 1             1             5
## 6252                 1             2             2
## 6253                 1             1             1
## 6254                 2             2             2
## 6255                 1             2             1
## 6256                 1             2             6
## 6257                 1             2             3
## 6258                 1             2             6
## 6259                 1             2             5
## 6260                 1             2             6
## 6261                 1             2             2
## 6262                 1             1             5
## 6263                 1             1             4
## 6264                 1             2             1
## 6265                 1             2             6
## 6266                 1             2             2
## 6267                 2             1             2
## 6268                 1             2             2
## 6269                 1             1             6
## 6270                 1             2             6
## 6271                 1             1             5
## 6272                 1             1             6
## 6273                 1             2             2
## 6274                 2             2             2
## 6275                 1             2             1
## 6277                 1             1             5
## 6278                 1             2             6
## 6279                 1             2             6
## 6280                 1             1             6
## 6281                 1             1             6
## 6282                 1             2             1
## 6284                 1             1             5
## 6286                 1             2             1
## 6287                 1             1             6
## 6288                 1             2             2
## 6289                 1             2             2
## 6290                 1             2             2
## 6291                 1             2             6
## 6292                 1             2             6
## 6293                 1             1             2
## 6294                 2             2             2
## 6295                 1             2             5
## 6296                 1             1             2
## 6297                 1             2             6
## 6298                 2             2             3
## 6299                 1             2             5
## 6300                 1             2             6
## 6301                 2             2             2
## 6302                 1             2             1
## 6303                 1             1             5
## 6305                 1             1             5
## 6306                 1             2             1
## 6307                 1             2             6
## 6308                 2             2             3
## 6309                 1             2             1
## 6310                 1             2             2
## 6311                 1             1             6
## 6312                 2             2             2
## 6314                 1             2             5
## 6315                 1             2             5
## 6316                 1             2             6
## 6317                 2             2             2
## 6318                 1             2             4
## 6319                 2             2             2
## 6320                 2             2             2
## 6321                 1             1             6
## 6322                 1             1             5
## 6323                 1             2             3
## 6324                 1             2             4
## 6325                 1             2             2
## 6326                 1             2             5
## 6328                 1             2             5
## 6329                 1             2             2
## 6330                 1             1             6
## 6331                 1             2             1
## 6332                 1             2             2
## 6333                 1             1             6
## 6334                 1             1             4
## 6335                 1             2             6
## 6336                 2             2             2
## 6337                 2             2             1
## 6338                 1             2             5
## 6339                 1             1             6
## 6340                 1             1             5
## 6341                 2             2             2
## 6342                 1             1             5
## 6343                 1             2             4
## 6344                 1             2             6
## 6345                 1             2             6
## 6346                 2             2             2
## 6347                 1             2             3
## 6348                 1             1             2
## 6350                 1             2             2
## 6351                 1             2             6
## 6354                 1             2             6
## 6355                 1             2             2
## 6356                 1             1             4
## 6357                 1             2             6
## 6358                 2             2             1
## 6359                 1             2             6
## 6360                 1             2             2
## 6361                 1             1             6
## 6362                 1             2             1
## 6363                 1             1             5
## 6364                 1             1             4
## 6365                 1             1             1
## 6366                 1             2             6
## 6367                 1             2             4
## 6368                 1             2             1
## 6369                 1             2             1
## 6370                 1             1             5
## 6371                 1             2             2
## 6372                 1             1             1
## 6374                 1             2             5
## 6375                 2             2             1
## 6376                 2             2             2
## 6377                 1             2             1
## 6378                 1             2             2
## 6379                 2             2             2
## 6380                 1             1             6
## 6381                 1             2             6
## 6382                 1             1             6
## 6383                 1             2             1
## 6384                 1             2             1
## 6386                 1             1             5
## 6387                 1             1             2
## 6388                 1             2             1
## 6389                 1             2             5
## 6390                 1             2             1
## 6391                 2             2             1
## 6392                 1             2             1
## 6394                 1             2             6
## 6395                 1             2             1
## 6396                 1             1             5
## 6397                 1             2             5
## 6398                 1             1             6
## 6399                 2             2             2
## 6400                 1             1             2
## 6402                 1             1             2
## 6403                 1             2             5
## 6404                 1             2             6
## 6405                 1             1             6
## 6406                 1             2             6
## 6407                 1             2             2
## 6408                 1             2             6
## 6409                 1             2             6
## 6410                 1             1             4
## 6411                 1             2             6
## 6412                 1             2             2
## 6413                 1             2             5
## 6414                 1             1             5
## 6415                 1             2             1
## 6416                 2             2             2
## 6417                 1             2             2
## 6418                 1             2             1
## 6419                 1             2             6
## 6420                 1             1             4
## 6422                 2             2             2
## 6423                 1             2             1
## 6424                 1             1             6
## 6425                 1             2             5
## 6426                 1             2             5
## 6427                 1             1             6
## 6429                 1             2             1
## 6430                 1             2             5
## 6431                 1             2             6
## 6432                 1             2             5
## 6433                 1             2             6
## 6434                 1             2             6
## 6435                 1             2             6
## 6436                 1             2             5
## 6437                 1             2             2
## 6438                 2             2             2
## 6439                 1             2             2
## 6440                 1             1             6
## 6441                 1             2             6
## 6443                 1             2             6
## 6444                 1             1             6
## 6445                 1             2             2
## 6446                 1             2             2
## 6447                 1             2             2
## 6448                 1             1             2
## 6449                 1             2             4
## 6450                 2             2             1
## 6451                 1             2             6
## 6452                 1             2             2
## 6453                 2             2             2
## 6454                 1             1             5
## 6455                 1             2             2
## 6456                 1             1             6
## 6457                 1             2             2
## 6458                 1             1             4
## 6459                 1             2             1
## 6462                 1             2             6
## 6463                 1             2             1
## 6464                 1             2             5
## 6465                 1             1             6
## 6466                 1             2             3
## 6467                 1             2             6
## 6468                 1             2             6
## 6469                 1             1             3
## 6470                 2             2             1
## 6471                 1             1             5
## 6472                 1             2             1
## 6473                 1             1             6
## 6474                 1             1             4
## 6475                 1             2             1
## 6476                 1             2             1
## 6477                 1             2             1
## 6478                 1             1             4
## 6479                 1             2             2
## 6480                 1             2             6
## 6481                 1             1             2
## 6482                 1             2             6
## 6483                 1             2             1
## 6484                 1             1             6
## 6485                 1             2             2
## 6486                 1             1             6
## 6487                 1             2             2
## 6488                 1             2             6
## 6489                 1             2             2
## 6491                 1             2             1
## 6492                 1             2             6
## 6494                 1             1             4
## 6495                 1             1             5
## 6496                 1             2             2
## 6497                 1             1             6
## 6498                 1             2             1
## 6499                 1             2             6
## 6500                 2             2             2
## 6501                 1             1             6
## 6502                 1             2             1
## 6503                 1             2             3
## 6504                 1             2             3
## 6505                 1             2             1
## 6506                 1             2             6
## 6507                 1             2             1
## 6508                 1             1             6
## 6509                 1             2             6
## 6510                 1             2             5
## 6511                 1             2             1
## 6512                 2             2             1
## 6513                 1             2             2
## 6514                 1             2             2
## 6515                 1             2             1
## 6516                 1             1             4
## 6517                 1             2             5
## 6518                 1             2             2
## 6519                 1             2             6
## 6520                 1             1             5
## 6521                 2             2             6
## 6522                 1             2             1
## 6523                 1             2             2
## 6525                 2             2             6
## 6526                 1             1             5
## 6527                 1             1             1
## 6528                 1             2             6
## 6529                 1             1             4
## 6530                 1             2             1
## 6532                 1             1             1
## 6533                 1             2             1
## 6534                 1             2             2
## 6535                 1             1             5
## 6537                 1             2             2
## 6538                 2             2             2
## 6540                 1             2             2
## 6542                 1             2             2
## 6543                 1             2             2
## 6544                 1             2             6
## 6545                 1             2             2
## 6547                 1             2             6
## 6548                 1             2             1
## 6549                 1             2             2
## 6550                 1             2             6
## 6551                 2             1             2
## 6552                 1             2             2
## 6553                 2             2             2
## 6554                 2             2             2
## 6555                 2             2             6
## 6556                 1             2             5
## 6557                 1             2             6
## 6558                 2             2             2
## 6559                 1             2             2
## 6560                 1             1             6
## 6561                 1             2             2
## 6562                 2             2             1
## 6563                 1             1             1
## 6564                 1             2             6
## 6565                 1             2             2
## 6566                 1             2             6
## 6567                 1             2             2
## 6568                 1             1             2
## 6569                 2             2             2
## 6570                 1             2             1
## 6571                 1             1             5
## 6573                 1             2             5
## 6574                 1             2             6
## 6575                 1             2             6
## 6576                 1             2             6
## 6578                 1             2             1
## 6579                 1             1             1
## 6580                 1             2             6
## 6581                 1             2             6
## 6582                 2             2             2
## 6584                 1             1             5
## 6585                 2             2             1
## 6586                 2             2             2
## 6587                 1             1             6
## 6588                 2             2             2
## 6589                 2             2             2
## 6590                 2             2             2
## 6591                 1             1             4
## 6592                 1             2             6
## 6593                 1             2             2
## 6595                 1             2             6
## 6596                 2             2             2
## 6599                 1             2             1
## 6600                 2             2             2
## 6601                 1             1             6
## 6602                 1             2             1
## 6603                 1             2             6
## 6604                 1             2             6
## 6605                 1             1             4
## 6606                 1             2             4
## 6607                 1             2             6
## 6608                 2             2             5
## 6609                 1             2             6
## 6610                 1             1             1
## 6611                 1             2             5
## 6612                 1             2             6
## 6613                 2             2             1
## 6615                 2             2             6
## 6616                 1             1             6
## 6617                 1             2             6
## 6618                 1             2             1
## 6619                 2             2             2
## 6620                 1             2             5
## 6621                 1             2             2
## 6622                 1             2             6
## 6623                 1             1             6
## 6624                 1             2             5
## 6625                 1             2             1
## 6626                 1             1             6
## 6627                 1             2             2
## 6628                 1             2             1
## 6629                 2             2             2
## 6630                 1             2             6
## 6631                 1             1             4
## 6632                 1             1             6
## 6633                 1             2             4
## 6634                 1             1             6
## 6635                 2             1             6
## 6636                 1             2             1
## 6637                 1             2             2
## 6638                 2             2             2
## 6639                 1             1             5
## 6640                 1             2             2
## 6641                 1             2             5
## 6642                 2             2             2
## 6643                 1             2             6
## 6644                 2             2             2
## 6645                 1             2             1
## 6646                 1             2             2
##  [ reached 'max' / getOption("max.print") -- omitted 11175 rows ]

Also the plot of proportions confirms that the target variable is slightly unbalanced.

library(ggplot2)
## Warning: package 'ggplot2' was built under R version 4.1.3
options(repr.plot.width=4, repr.plot.height=4)
ggplot(cat_data_Train, aes(x=cost_category))+geom_bar(fill="blue",alpha=0.5)+theme_bw()+labs(title="Distribution of Cost Category")

df_Train <- cbind(cat_data_Train,Train[c('total_female', 'total_male','night_mainland','night_zanzibar')])

df_Test <- cbind(cat_data_Test,Test[c('total_female', 'total_male','night_mainland','night_zanzibar')])

Now we have to check if the is any correlation between variables as machine learning algorithms assume that the predictor variables are independent from each others.

library(corrplot)
## Warning: package 'corrplot' was built under R version 4.1.3
## corrplot 0.92 loaded
options(repr.plot.width=4, repr.plot.height=4)
correlationMatrix <- cor(df_Train[,3:ncol(df_Train)])
corrplot(correlationMatrix, order = "hclust", tl.cex = 1, addrect = 8)

import os
import pandas as pd
from pandas import DataFrame,Series
from sklearn import tree
import matplotlib
import numpy as np
import matplotlib.pyplot as plt
from sklearn import svm
from sklearn.preprocessing import StandardScaler
import statsmodels.formula.api as smf
import statsmodels.api as sm
from mpl_toolkits.mplot3d import Axes3D
import seaborn as sns
from sklearn import neighbors
from sklearn import linear_model
X <- df_Train  #independent columns without the index column
y <- df_Train$cost_category    #target column i.e price range
X = r.X
y = r.y
Test = r.df_Test
Test['target'] = "Test"
X_test = Test.iloc[:,1:20]
y_test = Test['target']
Test.shape
## (5805, 20)
from sklearn.model_selection import train_test_split

X_train, X_validation, y_train, y_validation = train_test_split(X, y, train_size=0.75, random_state=42)
# GETTING Correllation matrix
corr_mat=X_train.corr(method='pearson')
plt.figure(figsize=(20,10))
sns.heatmap(corr_mat,vmax=1,square=True,annot=True,cmap='cubehelix')